@import url(https://fonts.googleapis.com/css?family=Nunito+Sans:300,300i,400,400i,600,600i,700,800);/*!
 * 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); }
.rangeslider,
.rangeslider__fill {
  display: block;
  -moz-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.rangeslider {
  background: #e6e6e6;
  position: relative;
}

.rangeslider--horizontal {
  height: 20px;
  width: 100%;
}

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
  height: 100%;
}

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.rangeslider__fill {
  background: #00ff00;
  position: absolute;
}
.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}
.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  background: white;
  border: 1px solid #ccc;
  cursor: pointer;
  display: inline-block;
  width: 40px;
  height: 40px;
  position: absolute;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, rgba(0, 0, 0, 0.1)));
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
  -moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.rangeslider__handle:after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEzIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.13)), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  background-image: linear-gradient(rgba(0, 0, 0, 0.13), rgba(255, 255, 255, 0));
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.rangeslider__handle:active, .rangeslider--active .rangeslider__handle {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xMiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0.1)), color-stop(100%, rgba(0, 0, 0, 0.12)));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.12));
}
.rangeslider--horizontal .rangeslider__handle {
  top: -10px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}
.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  -moz-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  -webkit-box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}
/* Wrappers */

/* Fonts */

/* Spacing */

/* Grid */

/* Nav */

/* Colors */

/** Import everything from autoload */

/*!
 * Bootstrap v4.1.2 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

:root {
  --blue: #1c8195;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #57C594;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #1c8195;
  --secondary: #6c757d;
  --success: #57C594;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #F8F9FE;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(15, 35, 63, 0);
}

@-ms-viewport {
  width: device-width;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #1C8195;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #1C8195;
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button,
.form .mktoButton {
  border-radius: 0;
}

button:focus,
.form .mktoButton:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
.form .mktoButton,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
.form .mktoButton,
input {
  overflow: visible;
}

button,
.form .mktoButton,
select {
  text-transform: none;
}

button,
.form .mktoButton,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
.form .mktoButton::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2rem;
}

h3,
.h3 {
  font-size: 1.75rem;
}

h4,
.h4 {
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(15, 35, 63, 0.1);
}

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

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled,
.comment-list {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014   \A0";
}

.img-fluid,
.wp-caption img {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}

.figure,
.wp-caption {
  display: inline-block;
}

.figure-img,
.wp-caption img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption,
.wp-caption-text {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.66667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333%;
}

.offset-5 {
  margin-left: 41.66667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333%;
}

.offset-8 {
  margin-left: 66.66667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333%;
}

.offset-11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.66667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333%;
  }

  .offset-md-5 {
    margin-left: 41.66667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333%;
  }

  .offset-md-8 {
    margin-left: 66.66667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333%;
  }

  .offset-md-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table .table {
  background-color: #fff;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(15, 35, 63, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(15, 35, 63, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #ced0f9;
}

.table-hover .table-primary:hover {
  background-color: #b7baf6;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #b7baf6;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #d0efe1;
}

.table-hover .table-success:hover {
  background-color: #bde9d5;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #bde9d5;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdff;
}

.table-hover .table-light:hover {
  background-color: #e4e4ff;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #e4e4ff;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(15, 35, 63, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(10, 24, 42, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(10, 24, 42, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #212529;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {

body  .question.d-flex.align-items-center.justify-content-center{
   width: auto;
}
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea,
.search-form .search-field {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .form-control,
  .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea,
  .search-form .search-field {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.form-control::-ms-expand,
.comment-form input[type="text"]::-ms-expand,
.comment-form input[type="email"]::-ms-expand,
.comment-form input[type="url"]::-ms-expand,
.comment-form textarea::-ms-expand,
.search-form .search-field::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus,
.search-form .search-field:focus {
  color: #495057;
  background-color: #fff;
  border-color: #c3c5f8;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
}

.form-control::-webkit-input-placeholder,
.comment-form input[type="text"]::-webkit-input-placeholder,
.comment-form input[type="email"]::-webkit-input-placeholder,
.comment-form input[type="url"]::-webkit-input-placeholder,
.comment-form textarea::-webkit-input-placeholder,
.search-form .search-field::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder,
.comment-form input[type="text"]:-ms-input-placeholder,
.comment-form input[type="email"]:-ms-input-placeholder,
.comment-form input[type="url"]:-ms-input-placeholder,
.comment-form textarea:-ms-input-placeholder,
.search-form .search-field:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder,
.comment-form input[type="text"]::-ms-input-placeholder,
.comment-form input[type="email"]::-ms-input-placeholder,
.comment-form input[type="url"]::-ms-input-placeholder,
.comment-form textarea::-ms-input-placeholder,
.search-form .search-field::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder,
.comment-form input[type="text"]::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="url"]::placeholder,
.comment-form textarea::placeholder,
.search-form .search-field::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.comment-form input[type="text"]:disabled,
.comment-form input[type="email"]:disabled,
.comment-form input[type="url"]:disabled,
.comment-form textarea:disabled,
.search-form .search-field:disabled,
.form-control[readonly],
.comment-form input[readonly][type="text"],
.comment-form input[readonly][type="email"],
.comment-form input[readonly][type="url"],
.comment-form textarea[readonly],
.search-form [readonly].search-field {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:not([size]):not([multiple]),
.search-form select.search-field:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px);
}

select.form-control:focus::-ms-value,
.search-form select.search-field:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.input-group-sm > .form-control-plaintext.form-control,
.comment-form .input-group-sm > input.form-control-plaintext[type="text"],
.comment-form .input-group-sm > input.form-control-plaintext[type="email"],
.comment-form .input-group-sm > input.form-control-plaintext[type="url"],
.comment-form .input-group-sm > textarea.form-control-plaintext,
.search-form .input-group-sm > .form-control-plaintext.search-field,
.input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-sm > .input-group-prepend > .form-control-plaintext.btn,
.comment-form
  .input-group-sm > .input-group-prepend > input.form-control-plaintext[type="submit"],
.search-form
  .input-group-sm > .input-group-prepend > .form-control-plaintext.search-submit,
.e-form-wrapper
  .input-group-sm > .input-group-prepend > .form-control-plaintext.mktoButton,
.email-form form
  .input-group-sm > .input-group-prepend > button.form-control-plaintext,
.email-form form .form
  .input-group-sm > .input-group-prepend > .form-control-plaintext.mktoButton,
.form .email-form form
  .input-group-sm > .input-group-prepend > .form-control-plaintext.mktoButton,
.input-group-sm > .input-group-append > .form-control-plaintext.btn,
.comment-form
  .input-group-sm > .input-group-append > input.form-control-plaintext[type="submit"],
.search-form
  .input-group-sm > .input-group-append > .form-control-plaintext.search-submit,
.e-form-wrapper
  .input-group-sm > .input-group-append > .form-control-plaintext.mktoButton,
.email-form form
  .input-group-sm > .input-group-append > button.form-control-plaintext,
.email-form form .form
  .input-group-sm > .input-group-append > .form-control-plaintext.mktoButton,
.form .email-form form
  .input-group-sm > .input-group-append > .form-control-plaintext.mktoButton,
.form-control-plaintext.form-control-lg,
.input-group-lg > .form-control-plaintext.form-control,
.comment-form .input-group-lg > input.form-control-plaintext[type="text"],
.comment-form .input-group-lg > input.form-control-plaintext[type="email"],
.comment-form .input-group-lg > input.form-control-plaintext[type="url"],
.comment-form .input-group-lg > textarea.form-control-plaintext,
.search-form .input-group-lg > .form-control-plaintext.search-field,
.input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-append > .form-control-plaintext.input-group-text,
.input-group-lg > .input-group-prepend > .form-control-plaintext.btn,
.comment-form
  .input-group-lg > .input-group-prepend > input.form-control-plaintext[type="submit"],
.search-form
  .input-group-lg > .input-group-prepend > .form-control-plaintext.search-submit,
.e-form-wrapper
  .input-group-lg > .input-group-prepend > .form-control-plaintext.mktoButton,
.email-form form
  .input-group-lg > .input-group-prepend > button.form-control-plaintext,
.email-form form .form
  .input-group-lg > .input-group-prepend > .form-control-plaintext.mktoButton,
.form .email-form form
  .input-group-lg > .input-group-prepend > .form-control-plaintext.mktoButton,
.input-group-lg > .input-group-append > .form-control-plaintext.btn,
.comment-form
  .input-group-lg > .input-group-append > input.form-control-plaintext[type="submit"],
.search-form
  .input-group-lg > .input-group-append > .form-control-plaintext.search-submit,
.e-form-wrapper
  .input-group-lg > .input-group-append > .form-control-plaintext.mktoButton,
.email-form form
  .input-group-lg > .input-group-append > button.form-control-plaintext,
.email-form form .form
  .input-group-lg > .input-group-append > .form-control-plaintext.mktoButton,
.form .email-form form
  .input-group-lg > .input-group-append > .form-control-plaintext.mktoButton {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm,
.input-group-sm > .form-control,
.comment-form .input-group-sm > input[type="text"],
.comment-form .input-group-sm > input[type="email"],
.comment-form .input-group-sm > input[type="url"],
.comment-form .input-group-sm > textarea,
.search-form .input-group-sm > .search-field,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.comment-form
.input-group-sm > .input-group-prepend > input[type="submit"],
.search-form
.input-group-sm > .input-group-prepend > .search-submit,
.e-form-wrapper
.input-group-sm > .input-group-prepend > .mktoButton,
.email-form form
.input-group-sm > .input-group-prepend > button,
.email-form form .form
.input-group-sm > .input-group-prepend > .mktoButton,
.form .email-form form
.input-group-sm > .input-group-prepend > .mktoButton,
.input-group-sm > .input-group-append > .btn,
.comment-form
.input-group-sm > .input-group-append > input[type="submit"],
.search-form
.input-group-sm > .input-group-append > .search-submit,
.e-form-wrapper
.input-group-sm > .input-group-append > .mktoButton,
.email-form form
.input-group-sm > .input-group-append > button,
.email-form form .form
.input-group-sm > .input-group-append > .mktoButton,
.form .email-form form
.input-group-sm > .input-group-append > .mktoButton {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

select.form-control-sm:not([size]):not([multiple]),
.input-group-sm > select.form-control:not([size]):not([multiple]),
.search-form .input-group-sm > select.search-field:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]),
.search-form
.input-group-sm > .input-group-prepend > select.search-submit:not([size]):not([multiple]),
.e-form-wrapper
.input-group-sm > .input-group-prepend > select.mktoButton:not([size]):not([multiple]),
.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]),
.search-form
.input-group-sm > .input-group-append > select.search-submit:not([size]):not([multiple]),
.e-form-wrapper
.input-group-sm > .input-group-append > select.mktoButton:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px);
}

.form-control-lg,
.input-group-lg > .form-control,
.comment-form .input-group-lg > input[type="text"],
.comment-form .input-group-lg > input[type="email"],
.comment-form .input-group-lg > input[type="url"],
.comment-form .input-group-lg > textarea,
.search-form .input-group-lg > .search-field,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.comment-form
.input-group-lg > .input-group-prepend > input[type="submit"],
.search-form
.input-group-lg > .input-group-prepend > .search-submit,
.e-form-wrapper
.input-group-lg > .input-group-prepend > .mktoButton,
.email-form form
.input-group-lg > .input-group-prepend > button,
.email-form form .form
.input-group-lg > .input-group-prepend > .mktoButton,
.form .email-form form
.input-group-lg > .input-group-prepend > .mktoButton,
.input-group-lg > .input-group-append > .btn,
.comment-form
.input-group-lg > .input-group-append > input[type="submit"],
.search-form
.input-group-lg > .input-group-append > .search-submit,
.e-form-wrapper
.input-group-lg > .input-group-append > .mktoButton,
.email-form form
.input-group-lg > .input-group-append > button,
.email-form form .form
.input-group-lg > .input-group-append > .mktoButton,
.form .email-form form
.input-group-lg > .input-group-append > .mktoButton {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control-lg:not([size]):not([multiple]),
.input-group-lg > select.form-control:not([size]):not([multiple]),
.search-form .input-group-lg > select.search-field:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]),
.input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]),
.search-form
.input-group-lg > .input-group-prepend > select.search-submit:not([size]):not([multiple]),
.e-form-wrapper
.input-group-lg > .input-group-prepend > select.mktoButton:not([size]):not([multiple]),
.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]),
.search-form
.input-group-lg > .input-group-append > select.search-submit:not([size]):not([multiple]),
.e-form-wrapper
.input-group-lg > .input-group-append > select.mktoButton:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px);
}

.form-group,
.comment-form p,
.search-form label {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #57C594;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(87, 197, 148, 0.8);
  border-radius: .2rem;
}

.was-validated .form-control:valid,
.was-validated .comment-form input[type="text"]:valid,
.comment-form .was-validated input[type="text"]:valid,
.was-validated
.comment-form input[type="email"]:valid,
.comment-form .was-validated input[type="email"]:valid,
.was-validated
.comment-form input[type="url"]:valid,
.comment-form .was-validated input[type="url"]:valid,
.was-validated
.comment-form textarea:valid,
.comment-form .was-validated textarea:valid,
.was-validated .search-form .search-field:valid,
.search-form .was-validated .search-field:valid,
.form-control.is-valid,
.comment-form input.is-valid[type="text"],
.comment-form input.is-valid[type="email"],
.comment-form input.is-valid[type="url"],
.comment-form textarea.is-valid,
.search-form .is-valid.search-field,
.was-validated
.custom-select:valid,
.custom-select.is-valid {
  border-color: #57C594;
}

.was-validated .form-control:valid:focus,
.was-validated .comment-form input[type="text"]:valid:focus,
.comment-form .was-validated input[type="text"]:valid:focus,
.was-validated
  .comment-form input[type="email"]:valid:focus,
.comment-form .was-validated input[type="email"]:valid:focus,
.was-validated
  .comment-form input[type="url"]:valid:focus,
.comment-form .was-validated input[type="url"]:valid:focus,
.was-validated
  .comment-form textarea:valid:focus,
.comment-form .was-validated textarea:valid:focus,
.was-validated .search-form .search-field:valid:focus,
.search-form .was-validated .search-field:valid:focus,
.form-control.is-valid:focus,
.comment-form input.is-valid[type="text"]:focus,
.comment-form input.is-valid[type="email"]:focus,
.comment-form input.is-valid[type="url"]:focus,
.comment-form textarea.is-valid:focus,
.search-form .is-valid.search-field:focus,
.was-validated
  .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #57C594;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.25);
}

.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .comment-form input[type="text"]:valid ~ .valid-feedback,
.comment-form .was-validated input[type="text"]:valid ~ .valid-feedback,
.was-validated
  .comment-form input[type="email"]:valid ~ .valid-feedback,
.comment-form .was-validated input[type="email"]:valid ~ .valid-feedback,
.was-validated
  .comment-form input[type="url"]:valid ~ .valid-feedback,
.comment-form .was-validated input[type="url"]:valid ~ .valid-feedback,
.was-validated
  .comment-form textarea:valid ~ .valid-feedback,
.comment-form .was-validated textarea:valid ~ .valid-feedback,
.was-validated .search-form .search-field:valid ~ .valid-feedback,
.search-form .was-validated .search-field:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip,
.was-validated .comment-form input[type="text"]:valid ~ .valid-tooltip,
.comment-form
  .was-validated input[type="text"]:valid ~ .valid-tooltip,
.was-validated
  .comment-form input[type="email"]:valid ~ .valid-tooltip,
.comment-form
  .was-validated input[type="email"]:valid ~ .valid-tooltip,
.was-validated
  .comment-form input[type="url"]:valid ~ .valid-tooltip,
.comment-form
  .was-validated input[type="url"]:valid ~ .valid-tooltip,
.was-validated
  .comment-form textarea:valid ~ .valid-tooltip,
.comment-form
  .was-validated textarea:valid ~ .valid-tooltip,
.was-validated .search-form .search-field:valid ~ .valid-tooltip,
.search-form
  .was-validated .search-field:valid ~ .valid-tooltip,
.form-control.is-valid ~ .valid-feedback,
.comment-form input.is-valid[type="text"] ~ .valid-feedback,
.comment-form input.is-valid[type="email"] ~ .valid-feedback,
.comment-form input.is-valid[type="url"] ~ .valid-feedback,
.comment-form textarea.is-valid ~ .valid-feedback,
.search-form .is-valid.search-field ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.comment-form input.is-valid[type="text"] ~ .valid-tooltip,
.comment-form input.is-valid[type="email"] ~ .valid-tooltip,
.comment-form input.is-valid[type="url"] ~ .valid-tooltip,
.comment-form textarea.is-valid ~ .valid-tooltip,
.search-form .is-valid.search-field ~ .valid-tooltip,
.was-validated
  .custom-select:valid ~ .valid-feedback,
.was-validated
  .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip,
.form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
  color: #57C594;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip,
.form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: #57C594;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before,
.custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #b6e6d0;
}

.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip,
.custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #7dd2ac;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
.custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(87, 197, 148, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(87, 197, 148, 0.25);
}

.was-validated .custom-file-input:valid ~ .custom-file-label,
.custom-file-input.is-valid ~ .custom-file-label {
  border-color: #57C594;
}

.was-validated .custom-file-input:valid ~ .custom-file-label::before,
.custom-file-input.is-valid ~ .custom-file-label::before {
  border-color: inherit;
}

.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip,
.custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label,
.custom-file-input.is-valid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: .2rem;
}

.was-validated .form-control:invalid,
.was-validated .comment-form input[type="text"]:invalid,
.comment-form .was-validated input[type="text"]:invalid,
.was-validated
.comment-form input[type="email"]:invalid,
.comment-form .was-validated input[type="email"]:invalid,
.was-validated
.comment-form input[type="url"]:invalid,
.comment-form .was-validated input[type="url"]:invalid,
.was-validated
.comment-form textarea:invalid,
.comment-form .was-validated textarea:invalid,
.was-validated .search-form .search-field:invalid,
.search-form .was-validated .search-field:invalid,
.form-control.is-invalid,
.comment-form input.is-invalid[type="text"],
.comment-form input.is-invalid[type="email"],
.comment-form input.is-invalid[type="url"],
.comment-form textarea.is-invalid,
.search-form .is-invalid.search-field,
.was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-control:invalid:focus,
.was-validated .comment-form input[type="text"]:invalid:focus,
.comment-form .was-validated input[type="text"]:invalid:focus,
.was-validated
  .comment-form input[type="email"]:invalid:focus,
.comment-form .was-validated input[type="email"]:invalid:focus,
.was-validated
  .comment-form input[type="url"]:invalid:focus,
.comment-form .was-validated input[type="url"]:invalid:focus,
.was-validated
  .comment-form textarea:invalid:focus,
.comment-form .was-validated textarea:invalid:focus,
.was-validated .search-form .search-field:invalid:focus,
.search-form .was-validated .search-field:invalid:focus,
.form-control.is-invalid:focus,
.comment-form input.is-invalid[type="text"]:focus,
.comment-form input.is-invalid[type="email"]:focus,
.comment-form input.is-invalid[type="url"]:focus,
.comment-form textarea.is-invalid:focus,
.search-form .is-invalid.search-field:focus,
.was-validated
  .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .comment-form input[type="text"]:invalid ~ .invalid-feedback,
.comment-form .was-validated input[type="text"]:invalid ~ .invalid-feedback,
.was-validated
  .comment-form input[type="email"]:invalid ~ .invalid-feedback,
.comment-form .was-validated input[type="email"]:invalid ~ .invalid-feedback,
.was-validated
  .comment-form input[type="url"]:invalid ~ .invalid-feedback,
.comment-form .was-validated input[type="url"]:invalid ~ .invalid-feedback,
.was-validated
  .comment-form textarea:invalid ~ .invalid-feedback,
.comment-form .was-validated textarea:invalid ~ .invalid-feedback,
.was-validated .search-form .search-field:invalid ~ .invalid-feedback,
.search-form .was-validated .search-field:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.was-validated .comment-form input[type="text"]:invalid ~ .invalid-tooltip,
.comment-form
  .was-validated input[type="text"]:invalid ~ .invalid-tooltip,
.was-validated
  .comment-form input[type="email"]:invalid ~ .invalid-tooltip,
.comment-form
  .was-validated input[type="email"]:invalid ~ .invalid-tooltip,
.was-validated
  .comment-form input[type="url"]:invalid ~ .invalid-tooltip,
.comment-form
  .was-validated input[type="url"]:invalid ~ .invalid-tooltip,
.was-validated
  .comment-form textarea:invalid ~ .invalid-tooltip,
.comment-form
  .was-validated textarea:invalid ~ .invalid-tooltip,
.was-validated .search-form .search-field:invalid ~ .invalid-tooltip,
.search-form
  .was-validated .search-field:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.comment-form input.is-invalid[type="text"] ~ .invalid-feedback,
.comment-form input.is-invalid[type="email"] ~ .invalid-feedback,
.comment-form input.is-invalid[type="url"] ~ .invalid-feedback,
.comment-form textarea.is-invalid ~ .invalid-feedback,
.search-form .is-invalid.search-field ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.comment-form input.is-invalid[type="text"] ~ .invalid-tooltip,
.comment-form input.is-invalid[type="email"] ~ .invalid-tooltip,
.comment-form input.is-invalid[type="url"] ~ .invalid-tooltip,
.comment-form textarea.is-invalid ~ .invalid-tooltip,
.search-form .is-invalid.search-field ~ .invalid-tooltip,
.was-validated
  .custom-select:invalid ~ .invalid-feedback,
.was-validated
  .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip,
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip,
.form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label,
.custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before,
.custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}

.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip,
.custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-file-input:invalid ~ .custom-file-label,
.custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label::before,
.custom-file-input.is-invalid ~ .custom-file-label::before {
  border-color: inherit;
}

.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip,
.custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
.custom-file-input.is-invalid:focus ~ .custom-file-label {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline,
.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-inline .form-check,
.search-form .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label,
  .search-form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group,
  .search-form .form-group,
  .form-inline .comment-form p,
  .comment-form .form-inline p,
  .search-form .comment-form p,
  .comment-form .search-form p,
  .form-inline .search-form label,
  .search-form .form-inline label,
  .search-form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control,
  .search-form .form-control,
  .form-inline .comment-form input[type="text"],
  .comment-form .form-inline input[type="text"],
  .search-form .comment-form input[type="text"],
  .comment-form .search-form input[type="text"],
  .form-inline
    .comment-form input[type="email"],
  .comment-form .form-inline input[type="email"],
  .search-form
    .comment-form input[type="email"],
  .comment-form .search-form input[type="email"],
  .form-inline
    .comment-form input[type="url"],
  .comment-form .form-inline input[type="url"],
  .search-form
    .comment-form input[type="url"],
  .comment-form .search-form input[type="url"],
  .form-inline
    .comment-form textarea,
  .comment-form .form-inline textarea,
  .search-form
    .comment-form textarea,
  .comment-form .search-form textarea,
  .search-form .search-field {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext,
  .search-form .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .search-form .input-group,
  .form-inline .custom-select,
  .search-form .custom-select {
    width: auto;
  }

  .form-inline .form-check,
  .search-form .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input,
  .search-form .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control,
  .search-form .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .form-inline .custom-control-label,
  .search-form .custom-control-label {
    margin-bottom: 0;
  }
}

.btn,
.comment-form input[type="submit"],
.search-form .search-submit,
.e-form-wrapper .mktoButton,
.email-form form button,
.email-form form .form .mktoButton,
.form .email-form form .mktoButton {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .btn,
  .comment-form input[type="submit"],
  .search-form .search-submit,
  .e-form-wrapper .mktoButton,
  .email-form form button,
  .email-form form .form .mktoButton,
  .form .email-form form .mktoButton {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.btn:hover,
.comment-form input[type="submit"]:hover,
.search-form .search-submit:hover,
.e-form-wrapper .mktoButton:hover,
.email-form form button:hover,
.email-form form .form .mktoButton:hover,
.form .email-form form .mktoButton:hover,
.btn:focus,
.comment-form input[type="submit"]:focus,
.search-form .search-submit:focus,
.e-form-wrapper .mktoButton:focus,
.email-form form button:focus,
.email-form form .form .mktoButton:focus,
.form .email-form form .mktoButton:focus {
  text-decoration: none;
}

.btn:focus,
.comment-form input[type="submit"]:focus,
.search-form .search-submit:focus,
.e-form-wrapper .mktoButton:focus,
.email-form form button:focus,
.email-form form .form .mktoButton:focus,
.form .email-form form .mktoButton:focus,
.btn.focus,
.comment-form input.focus[type="submit"],
.search-form .focus.search-submit,
.e-form-wrapper .focus.mktoButton,
.email-form form button.focus,
.email-form form .form .focus.mktoButton,
.form .email-form form .focus.mktoButton {
  outline: 0;
  -webkit-box-shadow: 0px 0px 0px 3px rgb(78 92 111 / 25%);
          box-shadow: 0px 0px 0px 3px rgb(78 92 111 / 25%);
}

.btn.disabled,
.comment-form input.disabled[type="submit"],
.search-form .disabled.search-submit,
.e-form-wrapper .disabled.mktoButton,
.email-form form button.disabled,
.email-form form .form .disabled.mktoButton,
.form .email-form form .disabled.mktoButton,
.btn:disabled,
.comment-form input[type="submit"]:disabled,
.search-form .search-submit:disabled,
.e-form-wrapper .mktoButton:disabled,
.email-form form button:disabled,
.email-form form .form .mktoButton:disabled,
.form .email-form form .mktoButton:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled),
.comment-form input[type="submit"]:not(:disabled):not(.disabled),
.search-form .search-submit:not(:disabled):not(.disabled),
.e-form-wrapper .mktoButton:not(:disabled):not(.disabled),
.email-form form button:not(:disabled):not(.disabled),
.email-form form .form .mktoButton:not(:disabled):not(.disabled),
.form .email-form form .mktoButton:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn:not(:disabled):not(.disabled):active,
.comment-form input[type="submit"]:not(:disabled):not(.disabled):active,
.search-form .search-submit:not(:disabled):not(.disabled):active,
.e-form-wrapper .mktoButton:not(:disabled):not(.disabled):active,
.email-form form button:not(:disabled):not(.disabled):active,
.email-form form .form .mktoButton:not(:disabled):not(.disabled):active,
.form .email-form form .mktoButton:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active,
.comment-form input[type="submit"]:not(:disabled):not(.disabled).active,
.search-form .search-submit:not(:disabled):not(.disabled).active,
.e-form-wrapper .mktoButton:not(:disabled):not(.disabled).active,
.email-form form button:not(:disabled):not(.disabled).active,
.email-form form .form .mktoButton:not(:disabled):not(.disabled).active,
.form .email-form form .mktoButton:not(:disabled):not(.disabled).active {
  background-image: none;
}

a.btn.disabled,
.search-form a.disabled.search-submit,
.e-form-wrapper a.disabled.mktoButton,
fieldset:disabled a.btn,
fieldset:disabled .search-form a.search-submit,
.search-form
fieldset:disabled a.search-submit,
fieldset:disabled .e-form-wrapper a.mktoButton,
.e-form-wrapper
fieldset:disabled a.mktoButton {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #1c8195;
  border-color: #1c8195;
}

.btn-primary:hover {
  color: #fff;
  background-color: #2f35e6;
  border-color: #232ae5;
}

.btn-primary:focus,
.btn-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #1c8195;
  border-color: #1c8195;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #232ae5;
  border-color: #1b22e0;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.5);
}

.btn-secondary,
.comment-form input[type="submit"],
.search-form .search-submit {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover,
.comment-form input[type="submit"]:hover,
.search-form .search-submit:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus,
.comment-form input[type="submit"]:focus,
.search-form .search-submit:focus,
.btn-secondary.focus,
.comment-form input.focus[type="submit"],
.search-form .focus.search-submit {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-secondary.disabled,
.comment-form input.disabled[type="submit"],
.search-form .disabled.search-submit,
.btn-secondary:disabled,
.comment-form input[type="submit"]:disabled,
.search-form .search-submit:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active,
.comment-form input[type="submit"]:not(:disabled):not(.disabled):active,
.search-form .search-submit:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active,
.comment-form input[type="submit"]:not(:disabled):not(.disabled).active,
.search-form .search-submit:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle,
.comment-form
  .show > input.dropdown-toggle[type="submit"],
.search-form
  .show > .dropdown-toggle.search-submit {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.comment-form input[type="submit"]:not(:disabled):not(.disabled):active:focus,
.search-form .search-submit:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus,
.comment-form input[type="submit"]:not(:disabled):not(.disabled).active:focus,
.search-form .search-submit:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus,
.comment-form
    .show > input.dropdown-toggle[type="submit"]:focus,
.search-form
    .show > .dropdown-toggle.search-submit:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-success {
  color: #212529;
  background-color: #57C594;
  border-color: #57C594;
}

.btn-success:hover {
  color: #fff;
  background-color: #3fb781;
  border-color: #3cad7b;
}

.btn-success:focus,
.btn-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #212529;
  background-color: #57C594;
  border-color: #57C594;
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #3cad7b;
  border-color: #39a474;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus,
.btn-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus,
.btn-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus,
.btn-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #F8F9FE;
  border-color: #F8F9FE;
}

.btn-light:hover {
  color: #212529;
  background-color: #d7dcf9;
  border-color: #cbd3f8;
}

.btn-light:focus,
.btn-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 254, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 254, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #212529;
  background-color: #F8F9FE;
  border-color: #F8F9FE;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #cbd3f8;
  border-color: #c0c9f6;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 254, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 254, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus,
.btn-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-primary {
  color: #1c8195;
  background-color: transparent;
  background-image: none;
  border-color: #1c8195;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #1c8195;
  border-color: #1c8195;
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #1c8195;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #1c8195;
  border-color: #1c8195;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus,
.btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #57C594;
  background-color: transparent;
  background-image: none;
  border-color: #57C594;
}

.btn-outline-success:hover {
  color: #212529;
  background-color: #57C594;
  border-color: #57C594;
}

.btn-outline-success:focus,
.btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #57C594;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #212529;
  background-color: #57C594;
  border-color: #57C594;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(87, 197, 148, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus,
.btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus,
.btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus,
.btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #F8F9FE;
  background-color: transparent;
  background-image: none;
  border-color: #F8F9FE;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #F8F9FE;
  border-color: #F8F9FE;
}

.btn-outline-light:focus,
.btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 254, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 254, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #F8F9FE;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #F8F9FE;
  border-color: #F8F9FE;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 254, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 254, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus,
.btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #1c8195;
  background-color: transparent;
}

.btn-link:hover {
  color: #1a20d5;
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn-link:focus,
.btn-link.focus {
  text-decoration: underline;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-link:disabled,
.btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg,
.btn-group-lg > .btn,
.comment-form .btn-group-lg > input[type="submit"],
.search-form .btn-group-lg > .search-submit,
.e-form-wrapper .btn-group-lg > .mktoButton,
.email-form form .btn-group-lg > button,
.email-form form .form .btn-group-lg > .mktoButton,
.form .email-form form .btn-group-lg > .mktoButton {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm,
.btn-group-sm > .btn,
.comment-form .btn-group-sm > input[type="submit"],
.search-form .btn-group-sm > .search-submit,
.e-form-wrapper .btn-group-sm > .mktoButton,
.email-form form .btn-group-sm > button,
.email-form form .form .btn-group-sm > .mktoButton,
.form .email-form form .btn-group-sm > .mktoButton {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(15, 35, 63, 0.15);
  border-radius: 0.25rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #1c8195;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}

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

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn,
.comment-form .btn-group > input[type="submit"],
.search-form .btn-group > .search-submit,
.e-form-wrapper .btn-group > .mktoButton,
.email-form form .btn-group > button,
.email-form form .form .btn-group > .mktoButton,
.form .email-form form .btn-group > .mktoButton,
.btn-group-vertical > .btn,
.comment-form
  .btn-group-vertical > input[type="submit"],
.search-form
  .btn-group-vertical > .search-submit,
.e-form-wrapper
  .btn-group-vertical > .mktoButton,
.email-form form
  .btn-group-vertical > button,
.email-form form .form
  .btn-group-vertical > .mktoButton,
.form .email-form form
  .btn-group-vertical > .mktoButton {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.btn-group > .btn:hover,
.comment-form .btn-group > input[type="submit"]:hover,
.search-form .btn-group > .search-submit:hover,
.e-form-wrapper .btn-group > .mktoButton:hover,
.email-form form .btn-group > button:hover,
.email-form form .form .btn-group > .mktoButton:hover,
.form .email-form form .btn-group > .mktoButton:hover,
.btn-group-vertical > .btn:hover,
.comment-form
    .btn-group-vertical > input[type="submit"]:hover,
.search-form
    .btn-group-vertical > .search-submit:hover,
.e-form-wrapper
    .btn-group-vertical > .mktoButton:hover,
.email-form form
    .btn-group-vertical > button:hover,
.email-form form .form
    .btn-group-vertical > .mktoButton:hover,
.form .email-form form
    .btn-group-vertical > .mktoButton:hover {
  z-index: 1;
}

.btn-group > .btn:focus,
.comment-form .btn-group > input[type="submit"]:focus,
.search-form .btn-group > .search-submit:focus,
.e-form-wrapper .btn-group > .mktoButton:focus,
.email-form form .btn-group > button:focus,
.email-form form .form .btn-group > .mktoButton:focus,
.form .email-form form .btn-group > .mktoButton:focus,
.btn-group > .btn:active,
.comment-form .btn-group > input[type="submit"]:active,
.search-form .btn-group > .search-submit:active,
.e-form-wrapper .btn-group > .mktoButton:active,
.email-form form .btn-group > button:active,
.email-form form .form .btn-group > .mktoButton:active,
.form .email-form form .btn-group > .mktoButton:active,
.btn-group > .btn.active,
.comment-form .btn-group > input.active[type="submit"],
.search-form .btn-group > .active.search-submit,
.e-form-wrapper .btn-group > .active.mktoButton,
.email-form form .btn-group > button.active,
.email-form form .form .btn-group > .active.mktoButton,
.form .email-form form .btn-group > .active.mktoButton,
.btn-group-vertical > .btn:focus,
.comment-form
    .btn-group-vertical > input[type="submit"]:focus,
.search-form
    .btn-group-vertical > .search-submit:focus,
.e-form-wrapper
    .btn-group-vertical > .mktoButton:focus,
.email-form form
    .btn-group-vertical > button:focus,
.email-form form .form
    .btn-group-vertical > .mktoButton:focus,
.form .email-form form
    .btn-group-vertical > .mktoButton:focus,
.btn-group-vertical > .btn:active,
.comment-form
    .btn-group-vertical > input[type="submit"]:active,
.search-form
    .btn-group-vertical > .search-submit:active,
.e-form-wrapper
    .btn-group-vertical > .mktoButton:active,
.email-form form
    .btn-group-vertical > button:active,
.email-form form .form
    .btn-group-vertical > .mktoButton:active,
.form .email-form form
    .btn-group-vertical > .mktoButton:active,
.btn-group-vertical > .btn.active,
.comment-form
    .btn-group-vertical > input.active[type="submit"],
.search-form
    .btn-group-vertical > .active.search-submit,
.e-form-wrapper
    .btn-group-vertical > .active.mktoButton,
.email-form form
    .btn-group-vertical > button.active,
.email-form form .form
    .btn-group-vertical > .active.mktoButton,
.form .email-form form
    .btn-group-vertical > .active.mktoButton {
  z-index: 1;
}

.btn-group .btn + .btn,
.btn-group .comment-form input[type="submit"] + .btn,
.comment-form .btn-group input[type="submit"] + .btn,
.btn-group .search-form .search-submit + .btn,
.search-form .btn-group .search-submit + .btn,
.btn-group .e-form-wrapper .mktoButton + .btn,
.e-form-wrapper .btn-group .mktoButton + .btn,
.btn-group .email-form form button + .btn,
.email-form form .btn-group button + .btn,
.btn-group .email-form form .form .mktoButton + .btn,
.email-form form .form .btn-group .mktoButton + .btn,
.btn-group .form .email-form form .mktoButton + .btn,
.form .email-form form .btn-group .mktoButton + .btn,
.btn-group .comment-form .btn + input[type="submit"],
.comment-form .btn-group .btn + input[type="submit"],
.btn-group .comment-form input[type="submit"] + input[type="submit"],
.comment-form .btn-group input[type="submit"] + input[type="submit"],
.btn-group .search-form .comment-form .search-submit + input[type="submit"],
.comment-form .btn-group .search-form .search-submit + input[type="submit"],
.search-form .btn-group .comment-form .search-submit + input[type="submit"],
.comment-form .search-form .btn-group .search-submit + input[type="submit"],
.btn-group .e-form-wrapper .comment-form .mktoButton + input[type="submit"],
.comment-form .btn-group .e-form-wrapper .mktoButton + input[type="submit"],
.e-form-wrapper .btn-group .comment-form .mktoButton + input[type="submit"],
.comment-form .e-form-wrapper .btn-group .mktoButton + input[type="submit"],
.btn-group .email-form form .comment-form button + input[type="submit"],
.comment-form .btn-group .email-form form button + input[type="submit"],
.email-form form .btn-group .comment-form button + input[type="submit"],
.comment-form .email-form form .btn-group button + input[type="submit"],
.btn-group .email-form form .form .comment-form .mktoButton + input[type="submit"],
.comment-form .btn-group .email-form form .form .mktoButton + input[type="submit"],
.email-form form .form .btn-group .comment-form .mktoButton + input[type="submit"],
.comment-form .email-form form .form .btn-group .mktoButton + input[type="submit"],
.btn-group .form .email-form form .comment-form .mktoButton + input[type="submit"],
.comment-form .btn-group .form .email-form form .mktoButton + input[type="submit"],
.form .email-form form .btn-group .comment-form .mktoButton + input[type="submit"],
.comment-form .form .email-form form .btn-group .mktoButton + input[type="submit"],
.btn-group .search-form .btn + .search-submit,
.search-form .btn-group .btn + .search-submit,
.btn-group .comment-form .search-form input[type="submit"] + .search-submit,
.search-form .btn-group .comment-form input[type="submit"] + .search-submit,
.comment-form .btn-group .search-form input[type="submit"] + .search-submit,
.search-form .comment-form .btn-group input[type="submit"] + .search-submit,
.btn-group .search-form .search-submit + .search-submit,
.search-form .btn-group .search-submit + .search-submit,
.btn-group .e-form-wrapper .search-form .mktoButton + .search-submit,
.search-form .btn-group .e-form-wrapper .mktoButton + .search-submit,
.e-form-wrapper .btn-group .search-form .mktoButton + .search-submit,
.search-form .e-form-wrapper .btn-group .mktoButton + .search-submit,
.btn-group .email-form form .search-form button + .search-submit,
.search-form .btn-group .email-form form button + .search-submit,
.email-form form .btn-group .search-form button + .search-submit,
.search-form .email-form form .btn-group button + .search-submit,
.btn-group .email-form form .form .search-form .mktoButton + .search-submit,
.search-form .btn-group .email-form form .form .mktoButton + .search-submit,
.email-form form .form .btn-group .search-form .mktoButton + .search-submit,
.search-form .email-form form .form .btn-group .mktoButton + .search-submit,
.btn-group .form .email-form form .search-form .mktoButton + .search-submit,
.search-form .btn-group .form .email-form form .mktoButton + .search-submit,
.form .email-form form .btn-group .search-form .mktoButton + .search-submit,
.search-form .form .email-form form .btn-group .mktoButton + .search-submit,
.btn-group .e-form-wrapper .btn + .mktoButton,
.e-form-wrapper .btn-group .btn + .mktoButton,
.btn-group .comment-form .e-form-wrapper input[type="submit"] + .mktoButton,
.e-form-wrapper .btn-group .comment-form input[type="submit"] + .mktoButton,
.comment-form .btn-group .e-form-wrapper input[type="submit"] + .mktoButton,
.e-form-wrapper .comment-form .btn-group input[type="submit"] + .mktoButton,
.btn-group .search-form .e-form-wrapper .search-submit + .mktoButton,
.e-form-wrapper .btn-group .search-form .search-submit + .mktoButton,
.search-form .btn-group .e-form-wrapper .search-submit + .mktoButton,
.e-form-wrapper .search-form .btn-group .search-submit + .mktoButton,
.btn-group .e-form-wrapper .mktoButton + .mktoButton,
.e-form-wrapper .btn-group .mktoButton + .mktoButton,
.btn-group .email-form form .e-form-wrapper button + .mktoButton,
.e-form-wrapper .btn-group .email-form form button + .mktoButton,
.email-form form .btn-group .e-form-wrapper button + .mktoButton,
.e-form-wrapper .email-form form .btn-group button + .mktoButton,
.btn-group .email-form form .btn + button,
.email-form form .btn-group .btn + button,
.btn-group .comment-form .email-form form input[type="submit"] + button,
.email-form form .btn-group .comment-form input[type="submit"] + button,
.comment-form .btn-group .email-form form input[type="submit"] + button,
.email-form form .comment-form .btn-group input[type="submit"] + button,
.btn-group .search-form .email-form form .search-submit + button,
.email-form form .btn-group .search-form .search-submit + button,
.search-form .btn-group .email-form form .search-submit + button,
.email-form form .search-form .btn-group .search-submit + button,
.btn-group .e-form-wrapper .email-form form .mktoButton + button,
.email-form form .btn-group .e-form-wrapper .mktoButton + button,
.e-form-wrapper .btn-group .email-form form .mktoButton + button,
.email-form form .e-form-wrapper .btn-group .mktoButton + button,
.btn-group .email-form form button + button,
.email-form form .btn-group button + button,
.btn-group .email-form form .form .mktoButton + button,
.email-form form .form .btn-group .mktoButton + button,
.btn-group .form .email-form form .mktoButton + button,
.form .email-form form .btn-group .mktoButton + button,
.btn-group .email-form form .form .btn + .mktoButton,
.email-form form .form .btn-group .btn + .mktoButton,
.btn-group .comment-form .email-form form .form input[type="submit"] + .mktoButton,
.email-form form .form .btn-group .comment-form input[type="submit"] + .mktoButton,
.comment-form .btn-group .email-form form .form input[type="submit"] + .mktoButton,
.email-form form .form .comment-form .btn-group input[type="submit"] + .mktoButton,
.btn-group .search-form .email-form form .form .search-submit + .mktoButton,
.email-form form .form .btn-group .search-form .search-submit + .mktoButton,
.search-form .btn-group .email-form form .form .search-submit + .mktoButton,
.email-form form .form .search-form .btn-group .search-submit + .mktoButton,
.btn-group .email-form form .form button + .mktoButton,
.email-form form .btn-group .form button + .mktoButton,
.email-form form .form .btn-group button + .mktoButton,
.btn-group .email-form form .form .mktoButton + .mktoButton,
.email-form form .form .btn-group .mktoButton + .mktoButton,
.form .email-form form .btn-group .form .mktoButton + .mktoButton,
.btn-group .form .email-form form .btn + .mktoButton,
.form .email-form form .btn-group .btn + .mktoButton,
.btn-group .comment-form .form .email-form form input[type="submit"] + .mktoButton,
.form .email-form form .btn-group .comment-form input[type="submit"] + .mktoButton,
.comment-form .btn-group .form .email-form form input[type="submit"] + .mktoButton,
.form .email-form form .comment-form .btn-group input[type="submit"] + .mktoButton,
.btn-group .search-form .form .email-form form .search-submit + .mktoButton,
.form .email-form form .btn-group .search-form .search-submit + .mktoButton,
.search-form .btn-group .form .email-form form .search-submit + .mktoButton,
.form .email-form form .search-form .btn-group .search-submit + .mktoButton,
.btn-group .form .email-form form button + .mktoButton,
.form .btn-group .email-form form button + .mktoButton,
.form .email-form form .btn-group button + .mktoButton,
.btn-group .form .email-form form .mktoButton + .mktoButton,
.form .email-form form .btn-group .mktoButton + .mktoButton,
.btn-group .btn + .btn-group,
.btn-group .comment-form input[type="submit"] + .btn-group,
.comment-form
  .btn-group input[type="submit"] + .btn-group,
.btn-group .search-form .search-submit + .btn-group,
.search-form
  .btn-group .search-submit + .btn-group,
.btn-group .e-form-wrapper .mktoButton + .btn-group,
.e-form-wrapper
  .btn-group .mktoButton + .btn-group,
.btn-group .email-form form button + .btn-group,
.email-form form
  .btn-group button + .btn-group,
.btn-group .email-form form .form .mktoButton + .btn-group,
.email-form form .form
  .btn-group .mktoButton + .btn-group,
.btn-group .form .email-form form .mktoButton + .btn-group,
.form .email-form form
  .btn-group .mktoButton + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .comment-form .btn-group + input[type="submit"],
.comment-form
  .btn-group .btn-group + input[type="submit"],
.btn-group .search-form .btn-group + .search-submit,
.search-form
  .btn-group .btn-group + .search-submit,
.btn-group .e-form-wrapper .btn-group + .mktoButton,
.e-form-wrapper
  .btn-group .btn-group + .mktoButton,
.btn-group .email-form form .btn-group + button,
.email-form form
  .btn-group .btn-group + button,
.btn-group .email-form form .form .btn-group + .mktoButton,
.email-form form .form
  .btn-group .btn-group + .mktoButton,
.btn-group .form .email-form form .btn-group + .mktoButton,
.form .email-form form
  .btn-group .btn-group + .mktoButton,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .comment-form input[type="submit"] + .btn,
.comment-form
  .btn-group-vertical input[type="submit"] + .btn,
.btn-group-vertical .search-form .search-submit + .btn,
.search-form
  .btn-group-vertical .search-submit + .btn,
.btn-group-vertical .e-form-wrapper .mktoButton + .btn,
.e-form-wrapper
  .btn-group-vertical .mktoButton + .btn,
.btn-group-vertical .email-form form button + .btn,
.email-form form
  .btn-group-vertical button + .btn,
.btn-group-vertical .email-form form .form .mktoButton + .btn,
.email-form form .form
  .btn-group-vertical .mktoButton + .btn,
.btn-group-vertical .form .email-form form .mktoButton + .btn,
.form .email-form form
  .btn-group-vertical .mktoButton + .btn,
.btn-group-vertical .comment-form .btn + input[type="submit"],
.comment-form
  .btn-group-vertical .btn + input[type="submit"],
.btn-group-vertical .comment-form input[type="submit"] + input[type="submit"],
.comment-form
  .btn-group-vertical input[type="submit"] + input[type="submit"],
.btn-group-vertical .search-form .comment-form .search-submit + input[type="submit"],
.comment-form
  .btn-group-vertical .search-form .search-submit + input[type="submit"],
.search-form
  .btn-group-vertical .comment-form .search-submit + input[type="submit"],
.comment-form .search-form
  .btn-group-vertical .search-submit + input[type="submit"],
.btn-group-vertical .e-form-wrapper .comment-form .mktoButton + input[type="submit"],
.comment-form
  .btn-group-vertical .e-form-wrapper .mktoButton + input[type="submit"],
.e-form-wrapper
  .btn-group-vertical .comment-form .mktoButton + input[type="submit"],
.comment-form .e-form-wrapper
  .btn-group-vertical .mktoButton + input[type="submit"],
.btn-group-vertical .email-form form .comment-form button + input[type="submit"],
.comment-form
  .btn-group-vertical .email-form form button + input[type="submit"],
.email-form form
  .btn-group-vertical .comment-form button + input[type="submit"],
.comment-form .email-form form
  .btn-group-vertical button + input[type="submit"],
.btn-group-vertical .email-form form .form .comment-form .mktoButton + input[type="submit"],
.comment-form
  .btn-group-vertical .email-form form .form .mktoButton + input[type="submit"],
.email-form form .form
  .btn-group-vertical .comment-form .mktoButton + input[type="submit"],
.comment-form .email-form form .form
  .btn-group-vertical .mktoButton + input[type="submit"],
.btn-group-vertical .form .email-form form .comment-form .mktoButton + input[type="submit"],
.comment-form
  .btn-group-vertical .form .email-form form .mktoButton + input[type="submit"],
.form .email-form form
  .btn-group-vertical .comment-form .mktoButton + input[type="submit"],
.comment-form .form .email-form form
  .btn-group-vertical .mktoButton + input[type="submit"],
.btn-group-vertical .search-form .btn + .search-submit,
.search-form
  .btn-group-vertical .btn + .search-submit,
.btn-group-vertical .comment-form .search-form input[type="submit"] + .search-submit,
.search-form
  .btn-group-vertical .comment-form input[type="submit"] + .search-submit,
.comment-form
  .btn-group-vertical .search-form input[type="submit"] + .search-submit,
.search-form .comment-form
  .btn-group-vertical input[type="submit"] + .search-submit,
.btn-group-vertical .search-form .search-submit + .search-submit,
.search-form
  .btn-group-vertical .search-submit + .search-submit,
.btn-group-vertical .e-form-wrapper .search-form .mktoButton + .search-submit,
.search-form
  .btn-group-vertical .e-form-wrapper .mktoButton + .search-submit,
.e-form-wrapper
  .btn-group-vertical .search-form .mktoButton + .search-submit,
.search-form .e-form-wrapper
  .btn-group-vertical .mktoButton + .search-submit,
.btn-group-vertical .email-form form .search-form button + .search-submit,
.search-form
  .btn-group-vertical .email-form form button + .search-submit,
.email-form form
  .btn-group-vertical .search-form button + .search-submit,
.search-form .email-form form
  .btn-group-vertical button + .search-submit,
.btn-group-vertical .email-form form .form .search-form .mktoButton + .search-submit,
.search-form
  .btn-group-vertical .email-form form .form .mktoButton + .search-submit,
.email-form form .form
  .btn-group-vertical .search-form .mktoButton + .search-submit,
.search-form .email-form form .form
  .btn-group-vertical .mktoButton + .search-submit,
.btn-group-vertical .form .email-form form .search-form .mktoButton + .search-submit,
.search-form
  .btn-group-vertical .form .email-form form .mktoButton + .search-submit,
.form .email-form form
  .btn-group-vertical .search-form .mktoButton + .search-submit,
.search-form .form .email-form form
  .btn-group-vertical .mktoButton + .search-submit,
.btn-group-vertical .e-form-wrapper .btn + .mktoButton,
.e-form-wrapper
  .btn-group-vertical .btn + .mktoButton,
.btn-group-vertical .comment-form .e-form-wrapper input[type="submit"] + .mktoButton,
.e-form-wrapper
  .btn-group-vertical .comment-form input[type="submit"] + .mktoButton,
.comment-form
  .btn-group-vertical .e-form-wrapper input[type="submit"] + .mktoButton,
.e-form-wrapper .comment-form
  .btn-group-vertical input[type="submit"] + .mktoButton,
.btn-group-vertical .search-form .e-form-wrapper .search-submit + .mktoButton,
.e-form-wrapper
  .btn-group-vertical .search-form .search-submit + .mktoButton,
.search-form
  .btn-group-vertical .e-form-wrapper .search-submit + .mktoButton,
.e-form-wrapper .search-form
  .btn-group-vertical .search-submit + .mktoButton,
.btn-group-vertical .e-form-wrapper .mktoButton + .mktoButton,
.e-form-wrapper
  .btn-group-vertical .mktoButton + .mktoButton,
.btn-group-vertical .email-form form .e-form-wrapper button + .mktoButton,
.e-form-wrapper
  .btn-group-vertical .email-form form button + .mktoButton,
.email-form form
  .btn-group-vertical .e-form-wrapper button + .mktoButton,
.e-form-wrapper .email-form form
  .btn-group-vertical button + .mktoButton,
.btn-group-vertical .email-form form .btn + button,
.email-form form
  .btn-group-vertical .btn + button,
.btn-group-vertical .comment-form .email-form form input[type="submit"] + button,
.email-form form
  .btn-group-vertical .comment-form input[type="submit"] + button,
.comment-form
  .btn-group-vertical .email-form form input[type="submit"] + button,
.email-form form .comment-form
  .btn-group-vertical input[type="submit"] + button,
.btn-group-vertical .search-form .email-form form .search-submit + button,
.email-form form
  .btn-group-vertical .search-form .search-submit + button,
.search-form
  .btn-group-vertical .email-form form .search-submit + button,
.email-form form .search-form
  .btn-group-vertical .search-submit + button,
.btn-group-vertical .e-form-wrapper .email-form form .mktoButton + button,
.email-form form
  .btn-group-vertical .e-form-wrapper .mktoButton + button,
.e-form-wrapper
  .btn-group-vertical .email-form form .mktoButton + button,
.email-form form .e-form-wrapper
  .btn-group-vertical .mktoButton + button,
.btn-group-vertical .email-form form button + button,
.email-form form
  .btn-group-vertical button + button,
.btn-group-vertical .email-form form .form .mktoButton + button,
.email-form form .form
  .btn-group-vertical .mktoButton + button,
.btn-group-vertical .form .email-form form .mktoButton + button,
.form .email-form form
  .btn-group-vertical .mktoButton + button,
.btn-group-vertical .email-form form .form .btn + .mktoButton,
.email-form form .form
  .btn-group-vertical .btn + .mktoButton,
.btn-group-vertical .comment-form .email-form form .form input[type="submit"] + .mktoButton,
.email-form form .form
  .btn-group-vertical .comment-form input[type="submit"] + .mktoButton,
.comment-form
  .btn-group-vertical .email-form form .form input[type="submit"] + .mktoButton,
.email-form form .form .comment-form
  .btn-group-vertical input[type="submit"] + .mktoButton,
.btn-group-vertical .search-form .email-form form .form .search-submit + .mktoButton,
.email-form form .form
  .btn-group-vertical .search-form .search-submit + .mktoButton,
.search-form
  .btn-group-vertical .email-form form .form .search-submit + .mktoButton,
.email-form form .form .search-form
  .btn-group-vertical .search-submit + .mktoButton,
.btn-group-vertical .email-form form .form button + .mktoButton,
.email-form form
  .btn-group-vertical .form button + .mktoButton,
.email-form form .form
  .btn-group-vertical button + .mktoButton,
.btn-group-vertical .email-form form .form .mktoButton + .mktoButton,
.email-form form .form
  .btn-group-vertical .mktoButton + .mktoButton,
.form .email-form form
  .btn-group-vertical .form .mktoButton + .mktoButton,
.btn-group-vertical .form .email-form form .btn + .mktoButton,
.form .email-form form
  .btn-group-vertical .btn + .mktoButton,
.btn-group-vertical .comment-form .form .email-form form input[type="submit"] + .mktoButton,
.form .email-form form
  .btn-group-vertical .comment-form input[type="submit"] + .mktoButton,
.comment-form
  .btn-group-vertical .form .email-form form input[type="submit"] + .mktoButton,
.form .email-form form .comment-form
  .btn-group-vertical input[type="submit"] + .mktoButton,
.btn-group-vertical .search-form .form .email-form form .search-submit + .mktoButton,
.form .email-form form
  .btn-group-vertical .search-form .search-submit + .mktoButton,
.search-form
  .btn-group-vertical .form .email-form form .search-submit + .mktoButton,
.form .email-form form .search-form
  .btn-group-vertical .search-submit + .mktoButton,
.btn-group-vertical .form .email-form form button + .mktoButton,
.form
  .btn-group-vertical .email-form form button + .mktoButton,
.form .email-form form
  .btn-group-vertical button + .mktoButton,
.btn-group-vertical .form .email-form form .mktoButton + .mktoButton,
.form .email-form form
  .btn-group-vertical .mktoButton + .mktoButton,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .comment-form input[type="submit"] + .btn-group,
.comment-form
  .btn-group-vertical input[type="submit"] + .btn-group,
.btn-group-vertical .search-form .search-submit + .btn-group,
.search-form
  .btn-group-vertical .search-submit + .btn-group,
.btn-group-vertical .e-form-wrapper .mktoButton + .btn-group,
.e-form-wrapper
  .btn-group-vertical .mktoButton + .btn-group,
.btn-group-vertical .email-form form button + .btn-group,
.email-form form
  .btn-group-vertical button + .btn-group,
.btn-group-vertical .email-form form .form .mktoButton + .btn-group,
.email-form form .form
  .btn-group-vertical .mktoButton + .btn-group,
.btn-group-vertical .form .email-form form .mktoButton + .btn-group,
.form .email-form form
  .btn-group-vertical .mktoButton + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .comment-form .btn-group + input[type="submit"],
.comment-form
  .btn-group-vertical .btn-group + input[type="submit"],
.btn-group-vertical .search-form .btn-group + .search-submit,
.search-form
  .btn-group-vertical .btn-group + .search-submit,
.btn-group-vertical .e-form-wrapper .btn-group + .mktoButton,
.e-form-wrapper
  .btn-group-vertical .btn-group + .mktoButton,
.btn-group-vertical .email-form form .btn-group + button,
.email-form form
  .btn-group-vertical .btn-group + button,
.btn-group-vertical .email-form form .form .btn-group + .mktoButton,
.email-form form .form
  .btn-group-vertical .btn-group + .mktoButton,
.btn-group-vertical .form .email-form form .btn-group + .mktoButton,
.form .email-form form
  .btn-group-vertical .btn-group + .mktoButton,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:first-child,
.comment-form .btn-group > input[type="submit"]:first-child,
.search-form .btn-group > .search-submit:first-child,
.e-form-wrapper .btn-group > .mktoButton:first-child,
.email-form form .btn-group > button:first-child,
.email-form form .form .btn-group > .mktoButton:first-child,
.form .email-form form .btn-group > .mktoButton:first-child {
  margin-left: 0;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.comment-form .btn-group > input[type="submit"]:not(:last-child):not(.dropdown-toggle),
.search-form .btn-group > .search-submit:not(:last-child):not(.dropdown-toggle),
.e-form-wrapper .btn-group > .mktoButton:not(:last-child):not(.dropdown-toggle),
.email-form form .btn-group > button:not(:last-child):not(.dropdown-toggle),
.email-form form .form .btn-group > .mktoButton:not(:last-child):not(.dropdown-toggle),
.form .email-form form .btn-group > .mktoButton:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.comment-form
.btn-group > .btn-group:not(:last-child) > input[type="submit"],
.search-form
.btn-group > .btn-group:not(:last-child) > .search-submit,
.e-form-wrapper
.btn-group > .btn-group:not(:last-child) > .mktoButton,
.email-form form
.btn-group > .btn-group:not(:last-child) > button,
.email-form form .form
.btn-group > .btn-group:not(:last-child) > .mktoButton,
.form .email-form form
.btn-group > .btn-group:not(:last-child) > .mktoButton {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child),
.comment-form .btn-group > input[type="submit"]:not(:first-child),
.search-form .btn-group > .search-submit:not(:first-child),
.e-form-wrapper .btn-group > .mktoButton:not(:first-child),
.email-form form .btn-group > button:not(:first-child),
.email-form form .form .btn-group > .mktoButton:not(:first-child),
.form .email-form form .btn-group > .mktoButton:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.comment-form
.btn-group > .btn-group:not(:first-child) > input[type="submit"],
.search-form
.btn-group > .btn-group:not(:first-child) > .search-submit,
.e-form-wrapper
.btn-group > .btn-group:not(:first-child) > .mktoButton,
.email-form form
.btn-group > .btn-group:not(:first-child) > button,
.email-form form .form
.btn-group > .btn-group:not(:first-child) > .mktoButton,
.form .email-form form
.btn-group > .btn-group:not(:first-child) > .mktoButton {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split,
.comment-form .btn-group-sm > input[type="submit"] + .dropdown-toggle-split,
.search-form .btn-group-sm > .search-submit + .dropdown-toggle-split,
.e-form-wrapper .btn-group-sm > .mktoButton + .dropdown-toggle-split,
.email-form form .btn-group-sm > button + .dropdown-toggle-split,
.email-form form .form .btn-group-sm > .mktoButton + .dropdown-toggle-split,
.form .email-form form .btn-group-sm > .mktoButton + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split,
.comment-form .btn-group-lg > input[type="submit"] + .dropdown-toggle-split,
.search-form .btn-group-lg > .search-submit + .dropdown-toggle-split,
.e-form-wrapper .btn-group-lg > .mktoButton + .dropdown-toggle-split,
.email-form form .btn-group-lg > button + .dropdown-toggle-split,
.email-form form .form .btn-group-lg > .mktoButton + .dropdown-toggle-split,
.form .email-form form .btn-group-lg > .mktoButton + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-group-vertical .btn,
.btn-group-vertical .comment-form input[type="submit"],
.comment-form .btn-group-vertical input[type="submit"],
.btn-group-vertical .search-form .search-submit,
.search-form .btn-group-vertical .search-submit,
.btn-group-vertical .e-form-wrapper .mktoButton,
.e-form-wrapper .btn-group-vertical .mktoButton,
.btn-group-vertical .email-form form button,
.email-form form .btn-group-vertical button,
.btn-group-vertical .email-form form .form .mktoButton,
.email-form form .form .btn-group-vertical .mktoButton,
.btn-group-vertical .form .email-form form .mktoButton,
.form .email-form form .btn-group-vertical .mktoButton,
.btn-group-vertical .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn + .btn,
.comment-form .btn-group-vertical > input[type="submit"] + .btn,
.search-form .btn-group-vertical > .search-submit + .btn,
.e-form-wrapper .btn-group-vertical > .mktoButton + .btn,
.email-form form .btn-group-vertical > button + .btn,
.email-form form .form .btn-group-vertical > .mktoButton + .btn,
.form .email-form form .btn-group-vertical > .mktoButton + .btn,
.comment-form .btn-group-vertical > .btn + input[type="submit"],
.comment-form .btn-group-vertical > input[type="submit"] + input[type="submit"],
.search-form .comment-form .btn-group-vertical > .search-submit + input[type="submit"],
.comment-form .search-form .btn-group-vertical > .search-submit + input[type="submit"],
.e-form-wrapper .comment-form .btn-group-vertical > .mktoButton + input[type="submit"],
.comment-form .e-form-wrapper .btn-group-vertical > .mktoButton + input[type="submit"],
.email-form form .comment-form .btn-group-vertical > button + input[type="submit"],
.comment-form .email-form form .btn-group-vertical > button + input[type="submit"],
.email-form form .form .comment-form .btn-group-vertical > .mktoButton + input[type="submit"],
.comment-form .email-form form .form .btn-group-vertical > .mktoButton + input[type="submit"],
.form .email-form form .comment-form .btn-group-vertical > .mktoButton + input[type="submit"],
.comment-form .form .email-form form .btn-group-vertical > .mktoButton + input[type="submit"],
.search-form .btn-group-vertical > .btn + .search-submit,
.comment-form .search-form .btn-group-vertical > input[type="submit"] + .search-submit,
.search-form .comment-form .btn-group-vertical > input[type="submit"] + .search-submit,
.search-form .btn-group-vertical > .search-submit + .search-submit,
.e-form-wrapper .search-form .btn-group-vertical > .mktoButton + .search-submit,
.search-form .e-form-wrapper .btn-group-vertical > .mktoButton + .search-submit,
.email-form form .search-form .btn-group-vertical > button + .search-submit,
.search-form .email-form form .btn-group-vertical > button + .search-submit,
.email-form form .form .search-form .btn-group-vertical > .mktoButton + .search-submit,
.search-form .email-form form .form .btn-group-vertical > .mktoButton + .search-submit,
.form .email-form form .search-form .btn-group-vertical > .mktoButton + .search-submit,
.search-form .form .email-form form .btn-group-vertical > .mktoButton + .search-submit,
.e-form-wrapper .btn-group-vertical > .btn + .mktoButton,
.comment-form .e-form-wrapper .btn-group-vertical > input[type="submit"] + .mktoButton,
.e-form-wrapper .comment-form .btn-group-vertical > input[type="submit"] + .mktoButton,
.search-form .e-form-wrapper .btn-group-vertical > .search-submit + .mktoButton,
.e-form-wrapper .search-form .btn-group-vertical > .search-submit + .mktoButton,
.e-form-wrapper .btn-group-vertical > .mktoButton + .mktoButton,
.email-form form .e-form-wrapper .btn-group-vertical > button + .mktoButton,
.e-form-wrapper .email-form form .btn-group-vertical > button + .mktoButton,
.email-form form .btn-group-vertical > .btn + button,
.comment-form .email-form form .btn-group-vertical > input[type="submit"] + button,
.email-form form .comment-form .btn-group-vertical > input[type="submit"] + button,
.search-form .email-form form .btn-group-vertical > .search-submit + button,
.email-form form .search-form .btn-group-vertical > .search-submit + button,
.e-form-wrapper .email-form form .btn-group-vertical > .mktoButton + button,
.email-form form .e-form-wrapper .btn-group-vertical > .mktoButton + button,
.email-form form .btn-group-vertical > button + button,
.email-form form .form .btn-group-vertical > .mktoButton + button,
.form .email-form form .btn-group-vertical > .mktoButton + button,
.email-form form .form .btn-group-vertical > .btn + .mktoButton,
.comment-form .email-form form .form .btn-group-vertical > input[type="submit"] + .mktoButton,
.email-form form .form .comment-form .btn-group-vertical > input[type="submit"] + .mktoButton,
.search-form .email-form form .form .btn-group-vertical > .search-submit + .mktoButton,
.email-form form .form .search-form .btn-group-vertical > .search-submit + .mktoButton,
.email-form form .form .btn-group-vertical > button + .mktoButton,
.email-form form .form .btn-group-vertical > .mktoButton + .mktoButton,
.form .email-form form .btn-group-vertical > .btn + .mktoButton,
.comment-form .form .email-form form .btn-group-vertical > input[type="submit"] + .mktoButton,
.form .email-form form .comment-form .btn-group-vertical > input[type="submit"] + .mktoButton,
.search-form .form .email-form form .btn-group-vertical > .search-submit + .mktoButton,
.form .email-form form .search-form .btn-group-vertical > .search-submit + .mktoButton,
.form .email-form form .btn-group-vertical > button + .mktoButton,
.form .email-form form .btn-group-vertical > .mktoButton + .mktoButton,
.btn-group-vertical > .btn + .btn-group,
.comment-form
  .btn-group-vertical > input[type="submit"] + .btn-group,
.search-form
  .btn-group-vertical > .search-submit + .btn-group,
.e-form-wrapper
  .btn-group-vertical > .mktoButton + .btn-group,
.email-form form
  .btn-group-vertical > button + .btn-group,
.email-form form .form
  .btn-group-vertical > .mktoButton + .btn-group,
.form .email-form form
  .btn-group-vertical > .mktoButton + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.comment-form
  .btn-group-vertical > .btn-group + input[type="submit"],
.search-form
  .btn-group-vertical > .btn-group + .search-submit,
.e-form-wrapper
  .btn-group-vertical > .btn-group + .mktoButton,
.email-form form
  .btn-group-vertical > .btn-group + button,
.email-form form .form
  .btn-group-vertical > .btn-group + .mktoButton,
.form .email-form form
  .btn-group-vertical > .btn-group + .mktoButton,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.comment-form .btn-group-vertical > input[type="submit"]:not(:last-child):not(.dropdown-toggle),
.search-form .btn-group-vertical > .search-submit:not(:last-child):not(.dropdown-toggle),
.e-form-wrapper .btn-group-vertical > .mktoButton:not(:last-child):not(.dropdown-toggle),
.email-form form .btn-group-vertical > button:not(:last-child):not(.dropdown-toggle),
.email-form form .form .btn-group-vertical > .mktoButton:not(:last-child):not(.dropdown-toggle),
.form .email-form form .btn-group-vertical > .mktoButton:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.comment-form
  .btn-group-vertical > .btn-group:not(:last-child) > input[type="submit"],
.search-form
  .btn-group-vertical > .btn-group:not(:last-child) > .search-submit,
.e-form-wrapper
  .btn-group-vertical > .btn-group:not(:last-child) > .mktoButton,
.email-form form
  .btn-group-vertical > .btn-group:not(:last-child) > button,
.email-form form .form
  .btn-group-vertical > .btn-group:not(:last-child) > .mktoButton,
.form .email-form form
  .btn-group-vertical > .btn-group:not(:last-child) > .mktoButton {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child),
.comment-form .btn-group-vertical > input[type="submit"]:not(:first-child),
.search-form .btn-group-vertical > .search-submit:not(:first-child),
.e-form-wrapper .btn-group-vertical > .mktoButton:not(:first-child),
.email-form form .btn-group-vertical > button:not(:first-child),
.email-form form .form .btn-group-vertical > .mktoButton:not(:first-child),
.form .email-form form .btn-group-vertical > .mktoButton:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.comment-form
  .btn-group-vertical > .btn-group:not(:first-child) > input[type="submit"],
.search-form
  .btn-group-vertical > .btn-group:not(:first-child) > .search-submit,
.e-form-wrapper
  .btn-group-vertical > .btn-group:not(:first-child) > .mktoButton,
.email-form form
  .btn-group-vertical > .btn-group:not(:first-child) > button,
.email-form form .form
  .btn-group-vertical > .btn-group:not(:first-child) > .mktoButton,
.form .email-form form
  .btn-group-vertical > .btn-group:not(:first-child) > .mktoButton {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.comment-form .btn-group-toggle > input[type="submit"],
.search-form .btn-group-toggle > .search-submit,
.e-form-wrapper .btn-group-toggle > .mktoButton,
.email-form form .btn-group-toggle > button,
.email-form form .form .btn-group-toggle > .mktoButton,
.form .email-form form .btn-group-toggle > .mktoButton,
.btn-group-toggle > .btn-group > .btn,
.comment-form
.btn-group-toggle > .btn-group > input[type="submit"],
.search-form
.btn-group-toggle > .btn-group > .search-submit,
.e-form-wrapper
.btn-group-toggle > .btn-group > .mktoButton,
.email-form form
.btn-group-toggle > .btn-group > button,
.email-form form .form
.btn-group-toggle > .btn-group > .mktoButton,
.form .email-form form
.btn-group-toggle > .btn-group > .mktoButton {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"],
.comment-form .btn-group-toggle > input[type="submit"] input[type="radio"],
.search-form .btn-group-toggle > .search-submit input[type="radio"],
.e-form-wrapper .btn-group-toggle > .mktoButton input[type="radio"],
.email-form form .btn-group-toggle > button input[type="radio"],
.email-form form .form .btn-group-toggle > .mktoButton input[type="radio"],
.form .email-form form .btn-group-toggle > .mktoButton input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.comment-form
  .btn-group-toggle > input[type="submit"] input[type="checkbox"],
.search-form
  .btn-group-toggle > .search-submit input[type="checkbox"],
.e-form-wrapper
  .btn-group-toggle > .mktoButton input[type="checkbox"],
.email-form form
  .btn-group-toggle > button input[type="checkbox"],
.email-form form .form
  .btn-group-toggle > .mktoButton input[type="checkbox"],
.form .email-form form
  .btn-group-toggle > .mktoButton input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.comment-form
  .btn-group-toggle > .btn-group > input[type="submit"] input[type="radio"],
.search-form
  .btn-group-toggle > .btn-group > .search-submit input[type="radio"],
.e-form-wrapper
  .btn-group-toggle > .btn-group > .mktoButton input[type="radio"],
.email-form form
  .btn-group-toggle > .btn-group > button input[type="radio"],
.email-form form .form
  .btn-group-toggle > .btn-group > .mktoButton input[type="radio"],
.form .email-form form
  .btn-group-toggle > .btn-group > .mktoButton input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.comment-form
  .btn-group-toggle > .btn-group > input[type="submit"] input[type="checkbox"],
.search-form
  .btn-group-toggle > .btn-group > .search-submit input[type="checkbox"],
.e-form-wrapper
  .btn-group-toggle > .btn-group > .mktoButton input[type="checkbox"],
.email-form form
  .btn-group-toggle > .btn-group > button input[type="checkbox"],
.email-form form .form
  .btn-group-toggle > .btn-group > .mktoButton input[type="checkbox"],
.form .email-form form
  .btn-group-toggle > .btn-group > .mktoButton input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.input-group > .form-control,
.comment-form .input-group > input[type="text"],
.comment-form .input-group > input[type="email"],
.comment-form .input-group > input[type="url"],
.comment-form .input-group > textarea,
.search-form .input-group > .search-field,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control,
.comment-form .input-group > input[type="text"] + .form-control,
.comment-form .input-group > input[type="email"] + .form-control,
.comment-form .input-group > input[type="url"] + .form-control,
.comment-form .input-group > textarea + .form-control,
.search-form .input-group > .search-field + .form-control,
.comment-form .input-group > .form-control + input[type="text"],
.comment-form .input-group > input[type="text"] + input[type="text"],
.comment-form .input-group > input[type="email"] + input[type="text"],
.comment-form .input-group > input[type="url"] + input[type="text"],
.comment-form .input-group > textarea + input[type="text"],
.search-form .comment-form .input-group > .search-field + input[type="text"],
.comment-form .search-form .input-group > .search-field + input[type="text"],
.comment-form .input-group > .form-control + input[type="email"],
.comment-form .input-group > input[type="text"] + input[type="email"],
.comment-form .input-group > input[type="email"] + input[type="email"],
.comment-form .input-group > input[type="url"] + input[type="email"],
.comment-form .input-group > textarea + input[type="email"],
.search-form
    .comment-form .input-group > .search-field + input[type="email"],
.comment-form .search-form .input-group > .search-field + input[type="email"],
.comment-form .input-group > .form-control + input[type="url"],
.comment-form .input-group > input[type="text"] + input[type="url"],
.comment-form .input-group > input[type="email"] + input[type="url"],
.comment-form .input-group > input[type="url"] + input[type="url"],
.comment-form .input-group > textarea + input[type="url"],
.search-form
    .comment-form .input-group > .search-field + input[type="url"],
.comment-form .search-form .input-group > .search-field + input[type="url"],
.comment-form .input-group > .form-control + textarea,
.comment-form .input-group > input[type="text"] + textarea,
.comment-form .input-group > input[type="email"] + textarea,
.comment-form .input-group > input[type="url"] + textarea,
.comment-form .input-group > textarea + textarea,
.search-form
    .comment-form .input-group > .search-field + textarea,
.comment-form .search-form .input-group > .search-field + textarea,
.search-form .input-group > .form-control + .search-field,
.comment-form .search-form .input-group > input[type="text"] + .search-field,
.search-form .comment-form .input-group > input[type="text"] + .search-field,
.comment-form .search-form .input-group > input[type="email"] + .search-field,
.search-form
    .comment-form .input-group > input[type="email"] + .search-field,
.comment-form .search-form .input-group > input[type="url"] + .search-field,
.search-form
    .comment-form .input-group > input[type="url"] + .search-field,
.comment-form .search-form .input-group > textarea + .search-field,
.search-form
    .comment-form .input-group > textarea + .search-field,
.search-form .input-group > .search-field + .search-field,
.input-group > .form-control + .custom-select,
.comment-form
    .input-group > input[type="text"] + .custom-select,
.comment-form
    .input-group > input[type="email"] + .custom-select,
.comment-form
    .input-group > input[type="url"] + .custom-select,
.comment-form
    .input-group > textarea + .custom-select,
.search-form
    .input-group > .search-field + .custom-select,
.input-group > .form-control + .custom-file,
.comment-form
    .input-group > input[type="text"] + .custom-file,
.comment-form
    .input-group > input[type="email"] + .custom-file,
.comment-form
    .input-group > input[type="url"] + .custom-file,
.comment-form
    .input-group > textarea + .custom-file,
.search-form
    .input-group > .search-field + .custom-file,
.input-group > .custom-select + .form-control,
.comment-form
    .input-group > .custom-select + input[type="text"],
.comment-form
    .input-group > .custom-select + input[type="email"],
.comment-form
    .input-group > .custom-select + input[type="url"],
.comment-form
    .input-group > .custom-select + textarea,
.search-form
    .input-group > .custom-select + .search-field,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.comment-form
    .input-group > .custom-file + input[type="text"],
.comment-form
    .input-group > .custom-file + input[type="email"],
.comment-form
    .input-group > .custom-file + input[type="url"],
.comment-form
    .input-group > .custom-file + textarea,
.search-form
    .input-group > .custom-file + .search-field,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus,
.comment-form .input-group > input[type="text"]:focus,
.comment-form .input-group > input[type="email"]:focus,
.comment-form .input-group > input[type="url"]:focus,
.comment-form .input-group > textarea:focus,
.search-form .input-group > .search-field:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .form-control:not(:last-child),
.comment-form .input-group > input[type="text"]:not(:last-child),
.comment-form .input-group > input[type="email"]:not(:last-child),
.comment-form .input-group > input[type="url"]:not(:last-child),
.comment-form .input-group > textarea:not(:last-child),
.search-form .input-group > .search-field:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .form-control:not(:first-child),
.comment-form .input-group > input[type="text"]:not(:first-child),
.comment-form .input-group > input[type="email"]:not(:first-child),
.comment-form .input-group > input[type="url"]:not(:first-child),
.comment-form .input-group > textarea:not(:first-child),
.search-form .input-group > .search-field:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn,
.input-group-prepend .comment-form input[type="submit"],
.comment-form .input-group-prepend input[type="submit"],
.input-group-prepend .search-form .search-submit,
.search-form .input-group-prepend .search-submit,
.input-group-prepend .e-form-wrapper .mktoButton,
.e-form-wrapper .input-group-prepend .mktoButton,
.input-group-prepend .email-form form button,
.email-form form .input-group-prepend button,
.input-group-prepend .email-form form .form .mktoButton,
.email-form form .form .input-group-prepend .mktoButton,
.input-group-prepend .form .email-form form .mktoButton,
.form .email-form form .input-group-prepend .mktoButton,
.input-group-append .btn,
.input-group-append .comment-form input[type="submit"],
.comment-form
  .input-group-append input[type="submit"],
.input-group-append .search-form .search-submit,
.search-form
  .input-group-append .search-submit,
.input-group-append .e-form-wrapper .mktoButton,
.e-form-wrapper
  .input-group-append .mktoButton,
.input-group-append .email-form form button,
.email-form form
  .input-group-append button,
.input-group-append .email-form form .form .mktoButton,
.email-form form .form
  .input-group-append .mktoButton,
.input-group-append .form .email-form form .mktoButton,
.form .email-form form
  .input-group-append .mktoButton {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn + .btn,
.input-group-prepend .comment-form input[type="submit"] + .btn,
.comment-form .input-group-prepend input[type="submit"] + .btn,
.input-group-prepend .search-form .search-submit + .btn,
.search-form .input-group-prepend .search-submit + .btn,
.input-group-prepend .e-form-wrapper .mktoButton + .btn,
.e-form-wrapper .input-group-prepend .mktoButton + .btn,
.input-group-prepend .email-form form button + .btn,
.email-form form .input-group-prepend button + .btn,
.input-group-prepend .email-form form .form .mktoButton + .btn,
.email-form form .form .input-group-prepend .mktoButton + .btn,
.input-group-prepend .form .email-form form .mktoButton + .btn,
.form .email-form form .input-group-prepend .mktoButton + .btn,
.input-group-prepend .comment-form .btn + input[type="submit"],
.comment-form .input-group-prepend .btn + input[type="submit"],
.input-group-prepend .comment-form input[type="submit"] + input[type="submit"],
.comment-form .input-group-prepend input[type="submit"] + input[type="submit"],
.input-group-prepend .search-form .comment-form .search-submit + input[type="submit"],
.comment-form .input-group-prepend .search-form .search-submit + input[type="submit"],
.search-form .input-group-prepend .comment-form .search-submit + input[type="submit"],
.comment-form .search-form .input-group-prepend .search-submit + input[type="submit"],
.input-group-prepend .e-form-wrapper .comment-form .mktoButton + input[type="submit"],
.comment-form .input-group-prepend .e-form-wrapper .mktoButton + input[type="submit"],
.e-form-wrapper .input-group-prepend .comment-form .mktoButton + input[type="submit"],
.comment-form .e-form-wrapper .input-group-prepend .mktoButton + input[type="submit"],
.input-group-prepend .email-form form .comment-form button + input[type="submit"],
.comment-form .input-group-prepend .email-form form button + input[type="submit"],
.email-form form .input-group-prepend .comment-form button + input[type="submit"],
.comment-form .email-form form .input-group-prepend button + input[type="submit"],
.input-group-prepend .email-form form .form .comment-form .mktoButton + input[type="submit"],
.comment-form .input-group-prepend .email-form form .form .mktoButton + input[type="submit"],
.email-form form .form .input-group-prepend .comment-form .mktoButton + input[type="submit"],
.comment-form .email-form form .form .input-group-prepend .mktoButton + input[type="submit"],
.input-group-prepend .form .email-form form .comment-form .mktoButton + input[type="submit"],
.comment-form .input-group-prepend .form .email-form form .mktoButton + input[type="submit"],
.form .email-form form .input-group-prepend .comment-form .mktoButton + input[type="submit"],
.comment-form .form .email-form form .input-group-prepend .mktoButton + input[type="submit"],
.input-group-prepend .search-form .btn + .search-submit,
.search-form .input-group-prepend .btn + .search-submit,
.input-group-prepend .comment-form .search-form input[type="submit"] + .search-submit,
.search-form .input-group-prepend .comment-form input[type="submit"] + .search-submit,
.comment-form .input-group-prepend .search-form input[type="submit"] + .search-submit,
.search-form .comment-form .input-group-prepend input[type="submit"] + .search-submit,
.input-group-prepend .search-form .search-submit + .search-submit,
.search-form .input-group-prepend .search-submit + .search-submit,
.input-group-prepend .e-form-wrapper .search-form .mktoButton + .search-submit,
.search-form .input-group-prepend .e-form-wrapper .mktoButton + .search-submit,
.e-form-wrapper .input-group-prepend .search-form .mktoButton + .search-submit,
.search-form .e-form-wrapper .input-group-prepend .mktoButton + .search-submit,
.input-group-prepend .email-form form .search-form button + .search-submit,
.search-form .input-group-prepend .email-form form button + .search-submit,
.email-form form .input-group-prepend .search-form button + .search-submit,
.search-form .email-form form .input-group-prepend button + .search-submit,
.input-group-prepend .email-form form .form .search-form .mktoButton + .search-submit,
.search-form .input-group-prepend .email-form form .form .mktoButton + .search-submit,
.email-form form .form .input-group-prepend .search-form .mktoButton + .search-submit,
.search-form .email-form form .form .input-group-prepend .mktoButton + .search-submit,
.input-group-prepend .form .email-form form .search-form .mktoButton + .search-submit,
.search-form .input-group-prepend .form .email-form form .mktoButton + .search-submit,
.form .email-form form .input-group-prepend .search-form .mktoButton + .search-submit,
.search-form .form .email-form form .input-group-prepend .mktoButton + .search-submit,
.input-group-prepend .e-form-wrapper .btn + .mktoButton,
.e-form-wrapper .input-group-prepend .btn + .mktoButton,
.input-group-prepend .comment-form .e-form-wrapper input[type="submit"] + .mktoButton,
.e-form-wrapper .input-group-prepend .comment-form input[type="submit"] + .mktoButton,
.comment-form .input-group-prepend .e-form-wrapper input[type="submit"] + .mktoButton,
.e-form-wrapper .comment-form .input-group-prepend input[type="submit"] + .mktoButton,
.input-group-prepend .search-form .e-form-wrapper .search-submit + .mktoButton,
.e-form-wrapper .input-group-prepend .search-form .search-submit + .mktoButton,
.search-form .input-group-prepend .e-form-wrapper .search-submit + .mktoButton,
.e-form-wrapper .search-form .input-group-prepend .search-submit + .mktoButton,
.input-group-prepend .e-form-wrapper .mktoButton + .mktoButton,
.e-form-wrapper .input-group-prepend .mktoButton + .mktoButton,
.input-group-prepend .email-form form .e-form-wrapper button + .mktoButton,
.e-form-wrapper .input-group-prepend .email-form form button + .mktoButton,
.email-form form .input-group-prepend .e-form-wrapper button + .mktoButton,
.e-form-wrapper .email-form form .input-group-prepend button + .mktoButton,
.input-group-prepend .email-form form .btn + button,
.email-form form .input-group-prepend .btn + button,
.input-group-prepend .comment-form .email-form form input[type="submit"] + button,
.email-form form .input-group-prepend .comment-form input[type="submit"] + button,
.comment-form .input-group-prepend .email-form form input[type="submit"] + button,
.email-form form .comment-form .input-group-prepend input[type="submit"] + button,
.input-group-prepend .search-form .email-form form .search-submit + button,
.email-form form .input-group-prepend .search-form .search-submit + button,
.search-form .input-group-prepend .email-form form .search-submit + button,
.email-form form .search-form .input-group-prepend .search-submit + button,
.input-group-prepend .e-form-wrapper .email-form form .mktoButton + button,
.email-form form .input-group-prepend .e-form-wrapper .mktoButton + button,
.e-form-wrapper .input-group-prepend .email-form form .mktoButton + button,
.email-form form .e-form-wrapper .input-group-prepend .mktoButton + button,
.input-group-prepend .email-form form button + button,
.email-form form .input-group-prepend button + button,
.input-group-prepend .email-form form .form .mktoButton + button,
.email-form form .form .input-group-prepend .mktoButton + button,
.input-group-prepend .form .email-form form .mktoButton + button,
.form .email-form form .input-group-prepend .mktoButton + button,
.input-group-prepend .email-form form .form .btn + .mktoButton,
.email-form form .form .input-group-prepend .btn + .mktoButton,
.input-group-prepend .comment-form .email-form form .form input[type="submit"] + .mktoButton,
.email-form form .form .input-group-prepend .comment-form input[type="submit"] + .mktoButton,
.comment-form .input-group-prepend .email-form form .form input[type="submit"] + .mktoButton,
.email-form form .form .comment-form .input-group-prepend input[type="submit"] + .mktoButton,
.input-group-prepend .search-form .email-form form .form .search-submit + .mktoButton,
.email-form form .form .input-group-prepend .search-form .search-submit + .mktoButton,
.search-form .input-group-prepend .email-form form .form .search-submit + .mktoButton,
.email-form form .form .search-form .input-group-prepend .search-submit + .mktoButton,
.input-group-prepend .email-form form .form button + .mktoButton,
.email-form form .input-group-prepend .form button + .mktoButton,
.email-form form .form .input-group-prepend button + .mktoButton,
.input-group-prepend .email-form form .form .mktoButton + .mktoButton,
.email-form form .form .input-group-prepend .mktoButton + .mktoButton,
.form .email-form form .input-group-prepend .form .mktoButton + .mktoButton,
.input-group-prepend .form .email-form form .btn + .mktoButton,
.form .email-form form .input-group-prepend .btn + .mktoButton,
.input-group-prepend .comment-form .form .email-form form input[type="submit"] + .mktoButton,
.form .email-form form .input-group-prepend .comment-form input[type="submit"] + .mktoButton,
.comment-form .input-group-prepend .form .email-form form input[type="submit"] + .mktoButton,
.form .email-form form .comment-form .input-group-prepend input[type="submit"] + .mktoButton,
.input-group-prepend .search-form .form .email-form form .search-submit + .mktoButton,
.form .email-form form .input-group-prepend .search-form .search-submit + .mktoButton,
.search-form .input-group-prepend .form .email-form form .search-submit + .mktoButton,
.form .email-form form .search-form .input-group-prepend .search-submit + .mktoButton,
.input-group-prepend .form .email-form form button + .mktoButton,
.form .input-group-prepend .email-form form button + .mktoButton,
.form .email-form form .input-group-prepend button + .mktoButton,
.input-group-prepend .form .email-form form .mktoButton + .mktoButton,
.form .email-form form .input-group-prepend .mktoButton + .mktoButton,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .comment-form input[type="submit"] + .input-group-text,
.comment-form
  .input-group-prepend input[type="submit"] + .input-group-text,
.input-group-prepend .search-form .search-submit + .input-group-text,
.search-form
  .input-group-prepend .search-submit + .input-group-text,
.input-group-prepend .e-form-wrapper .mktoButton + .input-group-text,
.e-form-wrapper
  .input-group-prepend .mktoButton + .input-group-text,
.input-group-prepend .email-form form button + .input-group-text,
.email-form form
  .input-group-prepend button + .input-group-text,
.input-group-prepend .email-form form .form .mktoButton + .input-group-text,
.email-form form .form
  .input-group-prepend .mktoButton + .input-group-text,
.input-group-prepend .form .email-form form .mktoButton + .input-group-text,
.form .email-form form
  .input-group-prepend .mktoButton + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .comment-form .input-group-text + input[type="submit"],
.comment-form
  .input-group-prepend .input-group-text + input[type="submit"],
.input-group-prepend .search-form .input-group-text + .search-submit,
.search-form
  .input-group-prepend .input-group-text + .search-submit,
.input-group-prepend .e-form-wrapper .input-group-text + .mktoButton,
.e-form-wrapper
  .input-group-prepend .input-group-text + .mktoButton,
.input-group-prepend .email-form form .input-group-text + button,
.email-form form
  .input-group-prepend .input-group-text + button,
.input-group-prepend .email-form form .form .input-group-text + .mktoButton,
.email-form form .form
  .input-group-prepend .input-group-text + .mktoButton,
.input-group-prepend .form .email-form form .input-group-text + .mktoButton,
.form .email-form form
  .input-group-prepend .input-group-text + .mktoButton,
.input-group-append .btn + .btn,
.input-group-append .comment-form input[type="submit"] + .btn,
.comment-form
  .input-group-append input[type="submit"] + .btn,
.input-group-append .search-form .search-submit + .btn,
.search-form
  .input-group-append .search-submit + .btn,
.input-group-append .e-form-wrapper .mktoButton + .btn,
.e-form-wrapper
  .input-group-append .mktoButton + .btn,
.input-group-append .email-form form button + .btn,
.email-form form
  .input-group-append button + .btn,
.input-group-append .email-form form .form .mktoButton + .btn,
.email-form form .form
  .input-group-append .mktoButton + .btn,
.input-group-append .form .email-form form .mktoButton + .btn,
.form .email-form form
  .input-group-append .mktoButton + .btn,
.input-group-append .comment-form .btn + input[type="submit"],
.comment-form
  .input-group-append .btn + input[type="submit"],
.input-group-append .comment-form input[type="submit"] + input[type="submit"],
.comment-form
  .input-group-append input[type="submit"] + input[type="submit"],
.input-group-append .search-form .comment-form .search-submit + input[type="submit"],
.comment-form
  .input-group-append .search-form .search-submit + input[type="submit"],
.search-form
  .input-group-append .comment-form .search-submit + input[type="submit"],
.comment-form .search-form
  .input-group-append .search-submit + input[type="submit"],
.input-group-append .e-form-wrapper .comment-form .mktoButton + input[type="submit"],
.comment-form
  .input-group-append .e-form-wrapper .mktoButton + input[type="submit"],
.e-form-wrapper
  .input-group-append .comment-form .mktoButton + input[type="submit"],
.comment-form .e-form-wrapper
  .input-group-append .mktoButton + input[type="submit"],
.input-group-append .email-form form .comment-form button + input[type="submit"],
.comment-form
  .input-group-append .email-form form button + input[type="submit"],
.email-form form
  .input-group-append .comment-form button + input[type="submit"],
.comment-form .email-form form
  .input-group-append button + input[type="submit"],
.input-group-append .email-form form .form .comment-form .mktoButton + input[type="submit"],
.comment-form
  .input-group-append .email-form form .form .mktoButton + input[type="submit"],
.email-form form .form
  .input-group-append .comment-form .mktoButton + input[type="submit"],
.comment-form .email-form form .form
  .input-group-append .mktoButton + input[type="submit"],
.input-group-append .form .email-form form .comment-form .mktoButton + input[type="submit"],
.comment-form
  .input-group-append .form .email-form form .mktoButton + input[type="submit"],
.form .email-form form
  .input-group-append .comment-form .mktoButton + input[type="submit"],
.comment-form .form .email-form form
  .input-group-append .mktoButton + input[type="submit"],
.input-group-append .search-form .btn + .search-submit,
.search-form
  .input-group-append .btn + .search-submit,
.input-group-append .comment-form .search-form input[type="submit"] + .search-submit,
.search-form
  .input-group-append .comment-form input[type="submit"] + .search-submit,
.comment-form
  .input-group-append .search-form input[type="submit"] + .search-submit,
.search-form .comment-form
  .input-group-append input[type="submit"] + .search-submit,
.input-group-append .search-form .search-submit + .search-submit,
.search-form
  .input-group-append .search-submit + .search-submit,
.input-group-append .e-form-wrapper .search-form .mktoButton + .search-submit,
.search-form
  .input-group-append .e-form-wrapper .mktoButton + .search-submit,
.e-form-wrapper
  .input-group-append .search-form .mktoButton + .search-submit,
.search-form .e-form-wrapper
  .input-group-append .mktoButton + .search-submit,
.input-group-append .email-form form .search-form button + .search-submit,
.search-form
  .input-group-append .email-form form button + .search-submit,
.email-form form
  .input-group-append .search-form button + .search-submit,
.search-form .email-form form
  .input-group-append button + .search-submit,
.input-group-append .email-form form .form .search-form .mktoButton + .search-submit,
.search-form
  .input-group-append .email-form form .form .mktoButton + .search-submit,
.email-form form .form
  .input-group-append .search-form .mktoButton + .search-submit,
.search-form .email-form form .form
  .input-group-append .mktoButton + .search-submit,
.input-group-append .form .email-form form .search-form .mktoButton + .search-submit,
.search-form
  .input-group-append .form .email-form form .mktoButton + .search-submit,
.form .email-form form
  .input-group-append .search-form .mktoButton + .search-submit,
.search-form .form .email-form form
  .input-group-append .mktoButton + .search-submit,
.input-group-append .e-form-wrapper .btn + .mktoButton,
.e-form-wrapper
  .input-group-append .btn + .mktoButton,
.input-group-append .comment-form .e-form-wrapper input[type="submit"] + .mktoButton,
.e-form-wrapper
  .input-group-append .comment-form input[type="submit"] + .mktoButton,
.comment-form
  .input-group-append .e-form-wrapper input[type="submit"] + .mktoButton,
.e-form-wrapper .comment-form
  .input-group-append input[type="submit"] + .mktoButton,
.input-group-append .search-form .e-form-wrapper .search-submit + .mktoButton,
.e-form-wrapper
  .input-group-append .search-form .search-submit + .mktoButton,
.search-form
  .input-group-append .e-form-wrapper .search-submit + .mktoButton,
.e-form-wrapper .search-form
  .input-group-append .search-submit + .mktoButton,
.input-group-append .e-form-wrapper .mktoButton + .mktoButton,
.e-form-wrapper
  .input-group-append .mktoButton + .mktoButton,
.input-group-append .email-form form .e-form-wrapper button + .mktoButton,
.e-form-wrapper
  .input-group-append .email-form form button + .mktoButton,
.email-form form
  .input-group-append .e-form-wrapper button + .mktoButton,
.e-form-wrapper .email-form form
  .input-group-append button + .mktoButton,
.input-group-append .email-form form .btn + button,
.email-form form
  .input-group-append .btn + button,
.input-group-append .comment-form .email-form form input[type="submit"] + button,
.email-form form
  .input-group-append .comment-form input[type="submit"] + button,
.comment-form
  .input-group-append .email-form form input[type="submit"] + button,
.email-form form .comment-form
  .input-group-append input[type="submit"] + button,
.input-group-append .search-form .email-form form .search-submit + button,
.email-form form
  .input-group-append .search-form .search-submit + button,
.search-form
  .input-group-append .email-form form .search-submit + button,
.email-form form .search-form
  .input-group-append .search-submit + button,
.input-group-append .e-form-wrapper .email-form form .mktoButton + button,
.email-form form
  .input-group-append .e-form-wrapper .mktoButton + button,
.e-form-wrapper
  .input-group-append .email-form form .mktoButton + button,
.email-form form .e-form-wrapper
  .input-group-append .mktoButton + button,
.input-group-append .email-form form button + button,
.email-form form
  .input-group-append button + button,
.input-group-append .email-form form .form .mktoButton + button,
.email-form form .form
  .input-group-append .mktoButton + button,
.input-group-append .form .email-form form .mktoButton + button,
.form .email-form form
  .input-group-append .mktoButton + button,
.input-group-append .email-form form .form .btn + .mktoButton,
.email-form form .form
  .input-group-append .btn + .mktoButton,
.input-group-append .comment-form .email-form form .form input[type="submit"] + .mktoButton,
.email-form form .form
  .input-group-append .comment-form input[type="submit"] + .mktoButton,
.comment-form
  .input-group-append .email-form form .form input[type="submit"] + .mktoButton,
.email-form form .form .comment-form
  .input-group-append input[type="submit"] + .mktoButton,
.input-group-append .search-form .email-form form .form .search-submit + .mktoButton,
.email-form form .form
  .input-group-append .search-form .search-submit + .mktoButton,
.search-form
  .input-group-append .email-form form .form .search-submit + .mktoButton,
.email-form form .form .search-form
  .input-group-append .search-submit + .mktoButton,
.input-group-append .email-form form .form button + .mktoButton,
.email-form form
  .input-group-append .form button + .mktoButton,
.email-form form .form
  .input-group-append button + .mktoButton,
.input-group-append .email-form form .form .mktoButton + .mktoButton,
.email-form form .form
  .input-group-append .mktoButton + .mktoButton,
.form .email-form form
  .input-group-append .form .mktoButton + .mktoButton,
.input-group-append .form .email-form form .btn + .mktoButton,
.form .email-form form
  .input-group-append .btn + .mktoButton,
.input-group-append .comment-form .form .email-form form input[type="submit"] + .mktoButton,
.form .email-form form
  .input-group-append .comment-form input[type="submit"] + .mktoButton,
.comment-form
  .input-group-append .form .email-form form input[type="submit"] + .mktoButton,
.form .email-form form .comment-form
  .input-group-append input[type="submit"] + .mktoButton,
.input-group-append .search-form .form .email-form form .search-submit + .mktoButton,
.form .email-form form
  .input-group-append .search-form .search-submit + .mktoButton,
.search-form
  .input-group-append .form .email-form form .search-submit + .mktoButton,
.form .email-form form .search-form
  .input-group-append .search-submit + .mktoButton,
.input-group-append .form .email-form form button + .mktoButton,
.form
  .input-group-append .email-form form button + .mktoButton,
.form .email-form form
  .input-group-append button + .mktoButton,
.input-group-append .form .email-form form .mktoButton + .mktoButton,
.form .email-form form
  .input-group-append .mktoButton + .mktoButton,
.input-group-append .btn + .input-group-text,
.input-group-append .comment-form input[type="submit"] + .input-group-text,
.comment-form
  .input-group-append input[type="submit"] + .input-group-text,
.input-group-append .search-form .search-submit + .input-group-text,
.search-form
  .input-group-append .search-submit + .input-group-text,
.input-group-append .e-form-wrapper .mktoButton + .input-group-text,
.e-form-wrapper
  .input-group-append .mktoButton + .input-group-text,
.input-group-append .email-form form button + .input-group-text,
.email-form form
  .input-group-append button + .input-group-text,
.input-group-append .email-form form .form .mktoButton + .input-group-text,
.email-form form .form
  .input-group-append .mktoButton + .input-group-text,
.input-group-append .form .email-form form .mktoButton + .input-group-text,
.form .email-form form
  .input-group-append .mktoButton + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .comment-form .input-group-text + input[type="submit"],
.comment-form
  .input-group-append .input-group-text + input[type="submit"],
.input-group-append .search-form .input-group-text + .search-submit,
.search-form
  .input-group-append .input-group-text + .search-submit,
.input-group-append .e-form-wrapper .input-group-text + .mktoButton,
.e-form-wrapper
  .input-group-append .input-group-text + .mktoButton,
.input-group-append .email-form form .input-group-text + button,
.email-form form
  .input-group-append .input-group-text + button,
.input-group-append .email-form form .form .input-group-text + .mktoButton,
.email-form form .form
  .input-group-append .input-group-text + .mktoButton,
.input-group-append .form .email-form form .input-group-text + .mktoButton,
.form .email-form form
  .input-group-append .input-group-text + .mktoButton {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group > .input-group-prepend > .btn,
.comment-form .input-group > .input-group-prepend > input[type="submit"],
.search-form .input-group > .input-group-prepend > .search-submit,
.e-form-wrapper .input-group > .input-group-prepend > .mktoButton,
.email-form form .input-group > .input-group-prepend > button,
.email-form form .form .input-group > .input-group-prepend > .mktoButton,
.form .email-form form .input-group > .input-group-prepend > .mktoButton,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.comment-form
.input-group > .input-group-append:not(:last-child) > input[type="submit"],
.search-form
.input-group > .input-group-append:not(:last-child) > .search-submit,
.e-form-wrapper
.input-group > .input-group-append:not(:last-child) > .mktoButton,
.email-form form
.input-group > .input-group-append:not(:last-child) > button,
.email-form form .form
.input-group > .input-group-append:not(:last-child) > .mktoButton,
.form .email-form form
.input-group > .input-group-append:not(:last-child) > .mktoButton,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.comment-form
.input-group > .input-group-append:last-child > input[type="submit"]:not(:last-child):not(.dropdown-toggle),
.search-form
.input-group > .input-group-append:last-child > .search-submit:not(:last-child):not(.dropdown-toggle),
.e-form-wrapper
.input-group > .input-group-append:last-child > .mktoButton:not(:last-child):not(.dropdown-toggle),
.email-form form
.input-group > .input-group-append:last-child > button:not(:last-child):not(.dropdown-toggle),
.email-form form .form
.input-group > .input-group-append:last-child > .mktoButton:not(:last-child):not(.dropdown-toggle),
.form .email-form form
.input-group > .input-group-append:last-child > .mktoButton:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.comment-form .input-group > .input-group-append > input[type="submit"],
.search-form .input-group > .input-group-append > .search-submit,
.e-form-wrapper .input-group > .input-group-append > .mktoButton,
.email-form form .input-group > .input-group-append > button,
.email-form form .form .input-group > .input-group-append > .mktoButton,
.form .email-form form .input-group > .input-group-append > .mktoButton,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.comment-form
.input-group > .input-group-prepend:not(:first-child) > input[type="submit"],
.search-form
.input-group > .input-group-prepend:not(:first-child) > .search-submit,
.e-form-wrapper
.input-group > .input-group-prepend:not(:first-child) > .mktoButton,
.email-form form
.input-group > .input-group-prepend:not(:first-child) > button,
.email-form form .form
.input-group > .input-group-prepend:not(:first-child) > .mktoButton,
.form .email-form form
.input-group > .input-group-prepend:not(:first-child) > .mktoButton,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.comment-form
.input-group > .input-group-prepend:first-child > input[type="submit"]:not(:first-child),
.search-form
.input-group > .input-group-prepend:first-child > .search-submit:not(:first-child),
.e-form-wrapper
.input-group > .input-group-prepend:first-child > .mktoButton:not(:first-child),
.email-form form
.input-group > .input-group-prepend:first-child > button:not(:first-child),
.email-form form .form
.input-group > .input-group-prepend:first-child > .mktoButton:not(:first-child),
.form .email-form form
.input-group > .input-group-prepend:first-child > .mktoButton:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #1c8195;
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
}

.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #f0f1fd;
}

.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
}

.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #dee2e6;
}

.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #1c8195;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #1c8195;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(81, 86, 234, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(81, 86, 234, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #1c8195;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(81, 86, 234, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #c3c5f8;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(195, 197, 248, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(195, 197, 248, 0.5);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple],
.custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  opacity: 0;
}

.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}

.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #c3c5f8;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
}

.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #c3c5f8;
}

.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: none;
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #1c8195;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #f0f1fd;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #1c8195;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:focus {
  outline: none;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
}

.custom-range::-moz-range-thumb:active {
  background-color: #f0f1fd;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #1c8195;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:focus {
  outline: none;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
}

.custom-range::-ms-thumb:active {
  background-color: #f0f1fd;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media screen and (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link,
.banner .nav a {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.banner .nav a:hover,
.nav-link:focus,
.banner .nav a:focus {
  text-decoration: none;
}

.nav-link.disabled,
.banner .nav a.disabled {
  color: #6c757d;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-item,
.nav-tabs .banner .nav li,
.banner .nav .nav-tabs li {
  margin-bottom: -1px;
}

.nav-tabs .nav-link,
.nav-tabs .banner .nav a,
.banner .nav .nav-tabs a {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.nav-tabs .nav-link:hover,
.nav-tabs .banner .nav a:hover,
.banner .nav .nav-tabs a:hover,
.nav-tabs .nav-link:focus,
.nav-tabs .banner .nav a:focus,
.banner .nav .nav-tabs a:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled,
.nav-tabs .banner .nav a.disabled,
.banner .nav .nav-tabs a.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .banner .nav a.active,
.banner .nav .nav-tabs a.active,
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .banner .nav li.show .nav-link,
.banner .nav
  .nav-tabs li.show .nav-link,
.nav-tabs .nav-item.show .banner .nav a,
.banner .nav
  .nav-tabs .nav-item.show a,
.nav-tabs .banner .nav li.show a,
.banner .nav
  .nav-tabs li.show a {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link,
.nav-pills .banner .nav a,
.banner .nav .nav-pills a {
  border-radius: 0.25rem;
}

.nav-pills .nav-link.active,
.nav-pills .banner .nav a.active,
.banner .nav .nav-pills a.active,
.nav-pills .show > .nav-link,
.nav-pills .banner .nav .show > a,
.banner .nav
.nav-pills .show > a {
  color: #fff;
  background-color: #1c8195;
}

.nav-fill .nav-item,
.nav-fill .banner .nav li,
.banner .nav .nav-fill li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item,
.nav-justified .banner .nav li,
.banner .nav .nav-justified li {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover,
.navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link,
.navbar-nav .banner .nav a,
.banner .nav .navbar-nav a {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link,
  .navbar-expand-sm .navbar-nav .banner .nav a,
  .banner .nav .navbar-expand-sm .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link,
  .navbar-expand-md .navbar-nav .banner .nav a,
  .banner .nav .navbar-expand-md .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link,
  .navbar-expand-lg .navbar-nav .banner .nav a,
  .banner .nav .navbar-expand-lg .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link,
  .navbar-expand-xl .navbar-nav .banner .nav a,
  .banner .nav .navbar-expand-xl .navbar-nav a {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }

  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link,
.navbar-expand .navbar-nav .banner .nav a,
.banner .nav .navbar-expand .navbar-nav a {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(15, 35, 63, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
  color: rgba(15, 35, 63, 0.9);
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .banner .nav a,
.banner .nav .navbar-light .navbar-nav a {
  color: rgba(15, 35, 63, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .banner .nav a:hover,
.banner .nav .navbar-light .navbar-nav a:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .banner .nav a:focus,
.banner .nav .navbar-light .navbar-nav a:focus {
  color: rgba(15, 35, 63, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled,
.navbar-light .navbar-nav .banner .nav a.disabled,
.banner .nav .navbar-light .navbar-nav a.disabled {
  color: rgba(15, 35, 63, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .banner .nav .show > a,
.banner .nav .navbar-light .navbar-nav .show > a,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .banner .nav .active > a,
.banner .nav
.navbar-light .navbar-nav .active > a,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .banner .nav a.show,
.banner .nav
.navbar-light .navbar-nav a.show,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .banner .nav a.active,
.banner .nav
.navbar-light .navbar-nav a.active {
  color: rgba(15, 35, 63, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(15, 35, 63, 0.5);
  border-color: rgba(15, 35, 63, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(15, 35, 63, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-light .navbar-text {
  color: rgba(15, 35, 63, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(15, 35, 63, 0.9);
}

.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(15, 35, 63, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .banner .nav a,
.banner .nav .navbar-dark .navbar-nav a {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .banner .nav a:hover,
.banner .nav .navbar-dark .navbar-nav a:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .banner .nav a:focus,
.banner .nav .navbar-dark .navbar-nav a:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled,
.navbar-dark .navbar-nav .banner .nav a.disabled,
.banner .nav .navbar-dark .navbar-nav a.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .banner .nav .show > a,
.banner .nav .navbar-dark .navbar-nav .show > a,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .banner .nav .active > a,
.banner .nav
.navbar-dark .navbar-nav .active > a,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .banner .nav a.show,
.banner .nav
.navbar-dark .navbar-nav a.show,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .banner .nav a.active,
.banner .nav
.navbar-dark .navbar-nav a.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(15, 35, 63, 0.125);
  border-radius: 0.25rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(15, 35, 63, 0.03);
  border-bottom: 1px solid rgba(15, 35, 63, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(15, 35, 63, 0.03);
  border-top: 1px solid rgba(15, 35, 63, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }

  .card-deck .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }

  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }

  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }

  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }

  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }

  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }

  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }

  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }

  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }

  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #1c8195;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #1a20d5;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(81, 86, 234, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #1c8195;
  border-color: #1c8195;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge:empty {
  display: none;
}

.btn .badge,
.comment-form input[type="submit"] .badge,
.search-form .search-submit .badge,
.e-form-wrapper .mktoButton .badge,
.email-form form button .badge,
.email-form form .form .mktoButton .badge,
.form .email-form form .mktoButton .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #1c8195;
}

.badge-primary[href]:hover,
.badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #232ae5;
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.badge-secondary[href]:hover,
.badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}

.badge-success {
  color: #212529;
  background-color: #57C594;
}

.badge-success[href]:hover,
.badge-success[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #3cad7b;
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.badge-info[href]:hover,
.badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.badge-warning[href]:hover,
.badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.badge-danger[href]:hover,
.badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}

.badge-light {
  color: #212529;
  background-color: #F8F9FE;
}

.badge-light[href]:hover,
.badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #cbd3f8;
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

.badge-dark[href]:hover,
.badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #313e98;
  background-color: #dcddfb;
  border-color: #ced0f9;
}

.alert-primary hr {
  border-top-color: #b7baf6;
}

.alert-primary .alert-link {
  color: #252e71;
}

.alert-secondary {
  color: #3f4e5f;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #2b3540;
}

.alert-success {
  color: #34776b;
  background-color: #ddf3ea;
  border-color: #d0efe1;
}

.alert-success hr {
  border-top-color: #bde9d5;
}

.alert-success .alert-link {
  color: #24544b;
}

.alert-info {
  color: #13657e;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #0c4152;
}

.alert-warning {
  color: #8c7522;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #635318;
}

.alert-danger {
  color: #7a2c42;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #551e2e;
}

.alert-light {
  color: #8892a2;
  background-color: #fefeff;
  border-color: #fdfdff;
}

.alert-light hr {
  border-top-color: #e4e4ff;
}

.alert-light .alert-link {
  color: #6c788b;
}

.alert-dark {
  color: #222f40;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #10171f;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }

  to {
    background-position: 0 0;
  }
}

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #1c8195;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
       -o-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(15, 35, 63, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.list-group-item:hover,
.list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #1c8195;
  border-color: #1c8195;
}

.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}

.list-group-item-primary {
  color: #313e98;
  background-color: #ced0f9;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  color: #313e98;
  background-color: #b7baf6;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #313e98;
  border-color: #313e98;
}

.list-group-item-secondary {
  color: #3f4e5f;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
  color: #3f4e5f;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #3f4e5f;
  border-color: #3f4e5f;
}

.list-group-item-success {
  color: #34776b;
  background-color: #d0efe1;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
  color: #34776b;
  background-color: #bde9d5;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #34776b;
  border-color: #34776b;
}

.list-group-item-info {
  color: #13657e;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
  color: #13657e;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #13657e;
  border-color: #13657e;
}

.list-group-item-warning {
  color: #8c7522;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
  color: #8c7522;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #8c7522;
  border-color: #8c7522;
}

.list-group-item-danger {
  color: #7a2c42;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
  color: #7a2c42;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #7a2c42;
  border-color: #7a2c42;
}

.list-group-item-light {
  color: #8892a2;
  background-color: #fdfdff;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
  color: #8892a2;
  background-color: #e4e4ff;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #8892a2;
  border-color: #8892a2;
}

.list-group-item-dark {
  color: #222f40;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
  color: #222f40;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #222f40;
  border-color: #222f40;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #0F233F;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  color: #0F233F;
  text-decoration: none;
  opacity: .75;
}

button.close,
.form .close.mktoButton {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(15, 35, 63, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #0F233F;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow,
.bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before,
.bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #0F233F;
}

.bs-tooltip-right,
.bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow,
.bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before,
.bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #0F233F;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow,
.bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #0F233F;
}

.bs-tooltip-left,
.bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow,
.bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before,
.bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #0F233F;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #0F233F;
  border-radius: 0.25rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(15, 35, 63, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before,
.popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top,
.bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top .arrow,
.bs-popover-auto[x-placement^="top"] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}

.bs-popover-top .arrow::before,
.bs-popover-auto[x-placement^="top"] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}

.bs-popover-top .arrow::before,
.bs-popover-auto[x-placement^="top"] .arrow::before {
  bottom: 0;
  border-top-color: rgba(15, 35, 63, 0.25);
}

.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^="top"] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}

.bs-popover-right,
.bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right .arrow,
.bs-popover-auto[x-placement^="right"] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right .arrow::before,
.bs-popover-auto[x-placement^="right"] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}

.bs-popover-right .arrow::before,
.bs-popover-auto[x-placement^="right"] .arrow::before {
  left: 0;
  border-right-color: rgba(15, 35, 63, 0.25);
}

.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^="right"] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}

.bs-popover-bottom,
.bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom .arrow,
.bs-popover-auto[x-placement^="bottom"] .arrow {
  top: calc((0.5rem + 1px) * -1);
}

.bs-popover-bottom .arrow::before,
.bs-popover-auto[x-placement^="bottom"] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}

.bs-popover-bottom .arrow::before,
.bs-popover-auto[x-placement^="bottom"] .arrow::before {
  top: 0;
  border-bottom-color: rgba(15, 35, 63, 0.25);
}

.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^="bottom"] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left,
.bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left .arrow,
.bs-popover-auto[x-placement^="left"] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left .arrow::before,
.bs-popover-auto[x-placement^="left"] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}

.bs-popover-left .arrow::before,
.bs-popover-auto[x-placement^="left"] .arrow::before {
  right: 0;
  border-left-color: rgba(15, 35, 63, 0.25);
}

.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^="left"] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  -o-transition: -o-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease, -o-transform 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.carousel-item-next,
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-next,
  .active.carousel-item-right {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
}

.carousel-item-prev,
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-item-prev,
  .active.carousel-item-left {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-duration: .6s;
       -o-transition-duration: .6s;
          transition-duration: .6s;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  -webkit-transform: translateX(0);
       -o-transform: translateX(0);
          transform: translateX(0);
}

@supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) {
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}

.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.carousel-indicators .active {
  background-color: #fff;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #1c8195 !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
.form .bg-primary.mktoButton:hover,
button.bg-primary:focus,
.form .bg-primary.mktoButton:focus {
  background-color: #232ae5 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover,
a.bg-secondary:focus,
button.bg-secondary:hover,
.form .bg-secondary.mktoButton:hover,
button.bg-secondary:focus,
.form .bg-secondary.mktoButton:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #57C594 !important;
}

a.bg-success:hover,
a.bg-success:focus,
button.bg-success:hover,
.form .bg-success.mktoButton:hover,
button.bg-success:focus,
.form .bg-success.mktoButton:focus {
  background-color: #3cad7b !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover,
a.bg-info:focus,
button.bg-info:hover,
.form .bg-info.mktoButton:hover,
button.bg-info:focus,
.form .bg-info.mktoButton:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover,
a.bg-warning:focus,
button.bg-warning:hover,
.form .bg-warning.mktoButton:hover,
button.bg-warning:focus,
.form .bg-warning.mktoButton:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover,
a.bg-danger:focus,
button.bg-danger:hover,
.form .bg-danger.mktoButton:hover,
button.bg-danger:focus,
.form .bg-danger.mktoButton:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #F8F9FE !important;
}

a.bg-light:hover,
a.bg-light:focus,
button.bg-light:hover,
.form .bg-light.mktoButton:hover,
button.bg-light:focus,
.form .bg-light.mktoButton:focus {
  background-color: #cbd3f8 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover,
a.bg-dark:focus,
button.bg-dark:hover,
.form .bg-dark.mktoButton:hover,
button.bg-dark:focus,
.form .bg-dark.mktoButton:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #1c8195 !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #57C594 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #F8F9FE !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active,
.screen-reader-text:active,
.sr-only-focusable:focus,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(15, 35, 63, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(15, 35, 63, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(15, 35, 63, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(15, 35, 63, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(15, 35, 63, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(15, 35, 63, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #1c8195 !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #232ae5 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #545b62 !important;
}

.text-success {
  color: #57C594 !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #3cad7b !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #bd2130 !important;
}

.text-light {
  color: #F8F9FE !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #cbd3f8 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #1d2124 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(15, 35, 63, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }

  a:not(.btn):not(.comment-form input[type="submit"]):not(.search-form .search-submit):not(.e-form-wrapper .mktoButton):not(.email-form form button):not(.email-form form .form .mktoButton):not(.form .email-form form .mktoButton) {
    text-decoration: underline;
  }

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

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

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

  thead {
    display: table-header-group;
  }

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

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

  h2,
  h3 {
    page-break-after: avoid;
  }

@page {
    size: a3;
}

  body {
    min-width: 992px !important;
  }

  .container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #0F233F;
  }

  .table {
    border-collapse: collapse !important;
  }

  .table td,
  .table th {
    background-color: #fff !important;
  }

  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }

  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */

.cocoen {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  line-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.cocoen * {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.cocoen ::after,
.cocoen ::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.cocoen img,
.cocoen picture > img {
  max-width: none;
}

.cocoen > img,
.cocoen > picture > img {
  display: block;
  width: 100%;
}

.cocoen > div:first-child,
picture .cocoen > div {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 50%;
}

.cocoen-drag {
  background: #fff;
  bottom: 0;
  cursor: ew-resize;
  left: 50%;
  margin-left: -1px;
  position: absolute;
  top: 0;
  width: 2px;
}

.cocoen-drag::before {
  border: 3px solid #fff;
  content: '';
  height: 30px;
  left: 50%;
  margin-left: -7px;
  margin-top: -18px;
  position: absolute;
  top: 50%;
  width: 14px;
}

/** Import theme styles */

/**:focus {
  outline: none;
}*/

body,
html {
  text-rendering: optimizelegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: #fff;
  max-width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  color: #8691A0;
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 27px;
  font-size: 17px;
  margin-bottom: 35px;
}

@media (max-width: 1500px) {
  body,
  html {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  body,
  html {
    line-height: 22px;
    font-size: 12px;
    margin-bottom: 30px;
  }
}

.stuck {
  position: fixed !important;
  top: 0 !important;
  margin-top: 0 !important;
}

img {
  max-width: 100%;
  height: auto !important;
}

img.no-max {
  max-width: initial;
}

button:focus,
.form .mktoButton:focus {
  outline: none !important;
}

.relative {
  position: relative;
}

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

.align-right {
  text-align: right;
}

@media (max-width: 992px) {
  .align-right {
    text-align: left;
  }
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
  -ms-flex-preferred-size: 0 !important;
      flex-basis: 0 !important;
}

.block {
  padding-top: 200px;
}

@media (max-width: 1500px) {
  .block {
    padding-top: 100px !important;
  }
}

@media (max-width: 992px) {
  .block {
    padding-top: 65px  !important;
  }
}

@media (max-width: 768px) {
  .block {
    padding-top: 65px  !important;
  }
}

.block.block-150 {
  padding-top: 150px !important;
}

@media (max-width: 1500px) {
  .block.block-150 {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  .block.block-150 {
    padding-top: 55px;
  }
}

.block-marg {
  margin-top: 200px;
}

@media (max-width: 1500px) {
  .block-marg {
    margin-top: 150px !important;
  }
}

@media (max-width: 992px) {
  .block-marg {
    margin-top: 100px  !important;
  }
}

@media (max-width: 768px) {
  .block-marg {
    margin-top: 65px  !important;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Nunito Sans", sans-serif;
  color: #13294B;
}

h1.light,
h2.light,
h3.light,
h4.light {
  font-weight: 300;
}

h3 {
  font-style: normal;
  font-weight: 300;
  line-height: 45px;
  font-size: 35px;
}

@media (max-width: 1500px) {
  h3 {
    line-height: 42px;
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  h3 {
    line-height: 26px;
    font-size: 20px;
  }
}

h3.headline {
  margin-bottom: 20px;
}

h3.marg-30 {
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  h3.marg-30 {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  h3.marg-30 {
    margin-bottom: 15px;
  }
}

.bg-cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.no-pad {
  padding: 0 !important;
}

@media (max-width: 992px) {
  .no-pad {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

.caps {
  text-transform: uppercase;
}

a[href^=tel] {
  text-decoration: inherit;
  color: inherit;
}

.bg-white {
  background: #fff;
}

a {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

a.underline {
  text-decoration: underline;
}

a.headline-link:hover {
  text-decoration: none;
  color: #1c8195;
}

a.headline-link:hover h3,
a.headline-link:hover h2 {
  color: #1c8195 !important;
}

a.learn-more {
  font-weight: 700;
  line-height: normal;
  font-size: 15px;
}

@media (max-width: 1500px) {
  a.learn-more {
    font-size: 14px;
  }
}

a.learn-more svg {
  margin-right: 8px;
}

.btn,
.comment-form input[type="submit"],
.search-form .search-submit,
.e-form-wrapper .mktoButton,
.email-form form button,
.email-form form .form .mktoButton,
.form .email-form form .mktoButton,
button,
.form .mktoButton {
  text-transform: uppercase;
  padding: 19px 31px;
  line-height: 15px;
  font-size: 14px;
  border-radius: 0;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

@media (max-width: 1500px) {
  .btn,
  .comment-form input[type="submit"],
  .search-form .search-submit,
  .e-form-wrapper .mktoButton,
  .email-form form button,
  .email-form form .form .mktoButton,
  .form .email-form form .mktoButton,
  button,
  .form .mktoButton {
    padding: 13px 19px;
  }
}

.btn.inline-b,
.comment-form input.inline-b[type="submit"],
.search-form .inline-b.search-submit,
.e-form-wrapper .inline-b.mktoButton,
.email-form form button.inline-b,
.email-form form .form .inline-b.mktoButton,
.form .email-form form .inline-b.mktoButton,
button.inline-b,
.form .inline-b.mktoButton {
  width: auto;
  display: inline-block;
}

.btn.btn-green,
.comment-form input.btn-green[type="submit"],
.comment-form .form input[type="submit"].mktoButton,
.form .comment-form input[type="submit"].mktoButton,
.search-form .btn-green.search-submit,
.search-form .form .search-submit.mktoButton,
.form .search-form .search-submit.mktoButton,
.search-form .email-form form button.search-submit,
.email-form form .search-form button.search-submit,
.form .btn.mktoButton,
.form .e-form-wrapper .mktoButton,
.e-form-wrapper .form .mktoButton,
.email-form form .form .mktoButton,
.form .email-form form .mktoButton,
.e-form-wrapper .btn-green.mktoButton,
.e-form-wrapper .email-form form button.mktoButton,
.email-form form .e-form-wrapper button.mktoButton,
.email-form form button,
button.btn-green,
.form .mktoButton,
.email-form form button {
  color: #FFF;
  background: #57C594;
}

.btn.btn-green:hover,
.comment-form input.btn-green[type="submit"]:hover,
.comment-form .form input[type="submit"].mktoButton:hover,
.form .comment-form input[type="submit"].mktoButton:hover,
.search-form .btn-green.search-submit:hover,
.search-form .form .search-submit.mktoButton:hover,
.form .search-form .search-submit.mktoButton:hover,
.form .btn.mktoButton:hover,
.form .e-form-wrapper .mktoButton:hover,
.e-form-wrapper .form .mktoButton:hover,
.email-form form .form .mktoButton:hover,
.form .email-form form .mktoButton:hover,
.e-form-wrapper .btn-green.mktoButton:hover,
.email-form form button:hover,
button.btn-green:hover,
.form .mktoButton:hover,
.email-form form button:hover {
  background: rgba(87, 197, 148, 0.8);
}

.btn.btn-green-trans,
.comment-form input.btn-green-trans[type="submit"],
.search-form .btn-green-trans.search-submit,
.e-form-wrapper .btn-green-trans.mktoButton,
.email-form form button.btn-green-trans,
.email-form form .form .btn-green-trans.mktoButton,
.form .email-form form .btn-green-trans.mktoButton,
button.btn-green-trans,
.form .btn-green-trans.mktoButton {
  background: transparent;
  border: 2px solid #57C594;
  color: #57C594;
  text-decoration: none;
}

.btn.btn-green-trans:hover,
.comment-form input.btn-green-trans[type="submit"]:hover,
.search-form .btn-green-trans.search-submit:hover,
.e-form-wrapper .btn-green-trans.mktoButton:hover,
.email-form form button.btn-green-trans:hover,
.email-form form .form .btn-green-trans.mktoButton:hover,
.form .email-form form .btn-green-trans.mktoButton:hover,
button.btn-green-trans:hover,
.form .btn-green-trans.mktoButton:hover {
  background: #57C594;
}

.btn.btn-white,
.comment-form input.btn-white[type="submit"],
.search-form .btn-white.search-submit,
.e-form-wrapper .btn-white.mktoButton,
.email-form form button.btn-white,
.email-form form .form .btn-white.mktoButton,
.form .email-form form .btn-white.mktoButton,
button.btn-white,
.form .btn-white.mktoButton {
  background: #fff;
  color: #1c8195;
}

.btn.btn-white:hover,
.comment-form input.btn-white[type="submit"]:hover,
.search-form .btn-white.search-submit:hover,
.e-form-wrapper .btn-white.mktoButton:hover,
.email-form form button.btn-white:hover,
.email-form form .form .btn-white.mktoButton:hover,
.form .email-form form .btn-white.mktoButton:hover,
button.btn-white:hover,
.form .btn-white.mktoButton:hover {
  background: #1c8195;
  color: #fff;
}

.btn.btn-blue,
.comment-form input.btn-blue[type="submit"],
.search-form .btn-blue.search-submit,
.e-form-wrapper .btn-blue.mktoButton,
.email-form form button.btn-blue,
.email-form form .form .btn-blue.mktoButton,
.form .email-form form .btn-blue.mktoButton,
button.btn-blue,
.form .btn-blue.mktoButton {
  background: #3A3DAE;
}

.btn.btn-blue:hover,
.comment-form input.btn-blue[type="submit"]:hover,
.search-form .btn-blue.search-submit:hover,
.e-form-wrapper .btn-blue.mktoButton:hover,
.email-form form button.btn-blue:hover,
.email-form form .form .btn-blue.mktoButton:hover,
.form .email-form form .btn-blue.mktoButton:hover,
button.btn-blue:hover,
.form .btn-blue.mktoButton:hover {
  background: rgba(58, 61, 174, 0.8);
}

.btn.btn-blue-trans,
.comment-form input.btn-blue-trans[type="submit"],
.search-form .btn-blue-trans.search-submit,
.e-form-wrapper .btn-blue-trans.mktoButton,
.email-form form button.btn-blue-trans,
.email-form form .form .btn-blue-trans.mktoButton,
.form .email-form form .btn-blue-trans.mktoButton,
button.btn-blue-trans,
.form .btn-blue-trans.mktoButton {
  background: transparent;
  border: 2px solid #1c8195;
  color: #1c8195;
  text-decoration: none;
}

.btn.btn-blue-trans:hover,
.comment-form input.btn-blue-trans[type="submit"]:hover,
.search-form .btn-blue-trans.search-submit:hover,
.e-form-wrapper .btn-blue-trans.mktoButton:hover,
.email-form form button.btn-blue-trans:hover,
.email-form form .form .btn-blue-trans.mktoButton:hover,
.form .email-form form .btn-blue-trans.mktoButton:hover,
button.btn-blue-trans:hover,
.form .btn-blue-trans.mktoButton:hover {
  background: #1c8195;
  color: #fff;
}

.btn.btn-white-trans,
.comment-form input.btn-white-trans[type="submit"],
.search-form .btn-white-trans.search-submit,
.e-form-wrapper .btn-white-trans.mktoButton,
.email-form form button.btn-white-trans,
.email-form form .form .btn-white-trans.mktoButton,
.form .email-form form .btn-white-trans.mktoButton,
button.btn-white-trans,
.form .btn-white-trans.mktoButton {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
}

.btn.btn-white-trans:hover,
.comment-form input.btn-white-trans[type="submit"]:hover,
.search-form .btn-white-trans.search-submit:hover,
.e-form-wrapper .btn-white-trans.mktoButton:hover,
.email-form form button.btn-white-trans:hover,
.email-form form .form .btn-white-trans.mktoButton:hover,
.form .email-form form .btn-white-trans.mktoButton:hover,
button.btn-white-trans:hover,
.form .btn-white-trans.mktoButton:hover {
  background: #1c8195;
  color: #fff;
}

@media (max-width: 768px) {
  section br {
    display: none;
  }
}

.icon-wrap {
  min-width: 40px;
}

@media (max-width: 992px) {
  .sec-img-wrap {
    padding-top: 30px;
  }

  .sec-img-wrap.no-pad {
    padding-top: 30px !important;
  }

  .sec-img-wrap img.no-max {
    max-width: 100%;
  }
}

.pagination {
  margin-top: 150px;
}

.pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-left: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagination ul li {
  list-style: none;
  margin-left: 10px;
  margin-right: 10px;
  font-weight: 400;
  line-height: normal;
  font-size: 15px;
}

.pagination ul li.active {
  font-weight: 700;
}

.pagination ul a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagination ul a .next {
  margin-left: 5px;
}

.pagination ul a .prev {
  margin-right: 5px;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pagination ul .prev-page {
  margin-right: 25px;
  font-weight: 700;
  font-size: 12px;
}

.pagination ul .next-page {
  margin-left: 25px;
  font-weight: 700;
  font-size: 12px;
}

.container {
  max-width: 1440px;
}

@media (max-width: 1556px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1500px) {
  .container {
    padding-left: 120px;
    padding-right: 120px;
  }
}

@media (max-width: 1100px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.container.cont-sm {
  max-width: 1399px;
}

.container.cont-800 {
  max-width: 800px;
}

@media (max-width: 1500px) {
  .container.cont-800 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1100px) {
  .container.cont-800 {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 768px) {
  .container.cont-800 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.container.cont-1120 {
  max-width: 1120px;
}

.container.cont-1108 {
  max-width: 1108px;
}

.container.cont-1153 {
  max-width: 1153px;
}

.container.cont-about {
  max-width: 1337px;
}

.container.cont-1200 {
  max-width: 1200px;
}

.container.cont-1218 {
  max-width: 1218px;
}

.container.cont-1269 {
  max-width: 1269px;
}

.container.cont-937 {
  max-width: 937px;
}

.container.cont-1386 {
  max-width: 1386px;
}

.container.cont-1048 {
  max-width: 1048px;
}

.container.cont-1446 {
  max-width: 1446px;
}

.short-desc {
  color: #8691A0;
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 27px;
  font-size: 17px;
  margin-bottom: 35px;
  margin-bottom: 63px;
}

@media (max-width: 1500px) {
  .short-desc {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .short-desc {
    line-height: 22px;
    font-size: 12px;
    margin-bottom: 30px;
  }
}

@media (max-width: 1500px) {
  .short-desc {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .short-desc {
    margin-bottom: 30px;
    max-width: 80%;
  }
}

.short-desc.marg-53 {
  margin-bottom: 53px;
}

@media (max-width: 1500px) {
  .short-desc.marg-53 {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .short-desc.marg-53 {
    margin-bottom: 30px;
  }
}

.highlight-desc .short-desc {
  margin-bottom: 45px;
}

.no-marg-bottom {
  margin-bottom: 0 !important;
}

.highlights .icon-wrap {
  margin-right: 32px;
  min-width: 40px;
}

@media (max-width: 1500px) {
  .highlights .icon-wrap {
    min-width: 30px;
  }
}

.highlights ul {
  padding-left: 0;
}

.highlights ul li {
  list-style: none;
}

.highlights ul li .title {
  line-height: 34px;
  font-size: 18px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .highlights ul li .title {
    line-height: 32px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .highlights ul li .title {
    line-height: 22px;
    font-size: 12px;
  }
}

.highlights ul li .short-desc {
  margin-bottom: 50px;
  max-width: 100%;
  line-height: 25px;
  font-size: 15px;
  color: #8691A0;
}

@media (max-width: 1500px) {
  .highlights ul li .short-desc {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .highlights ul li .short-desc {
    line-height: 22px;
    font-size: 12px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .highlights ul li .short-desc {
    width: 100%;
  }
}

.highlights .sm-highlights li .icon-wrap {
  width: 100%;
  margin-bottom: 33px;
}

.highlights .sm-highlights li .short-desc {
  width: 250px;
  margin: auto;
  line-height: 25px;
  font-size: 15px;
  color: #8691A0;
}

@media (max-width: 1500px) {
  .highlights .sm-highlights li .short-desc {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .highlights .sm-highlights li .short-desc {
    line-height: 22px;
    font-size: 12px;
    margin-bottom: 30px;
  }
}

.cta.margin-top {
  margin-top: 100px;
}

@media (max-width: 768px) {
  .cta.margin-top {
    margin-top: 65px;
  }
}

.cta a {
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-size: 15px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

@media (max-width: 1500px) {
  .cta a {
    font-size: 14px;
  }
}

.cta a svg {
  margin-right: 10px;
}

.center-vert {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.price-disclaimer {
  line-height: 20px;
  font-size: 12px;
  position: absolute;
  width: 589px;
  bottom: 80px;
  right: 0;
  max-width: 100%;
}

.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-short-desc {
  margin-bottom: 60px;
}

.marg-137 {
  margin-top: 137px;
}

@media (max-width: 1500px) {
  .marg-137 {
    margin-top: 100px  !important;
  }
}

@media (max-width: 992px) {
  .marg-137 {
    margin-top: 65px  !important;
  }
}

section.how-it-works {
  margin-top: 0 !important;
}

header.sec-header.marg-btm-50 {
  margin-bottom: 50px;
}

.sec-150 {
  padding-top: 150px;
}

@media (max-width: 992px) {
  .sec-150 {
    padding-top: 100px  !important;
  }
}

@media (max-width: 768px) {
  .sec-150 {
    padding-top: 65px  !important;
  }
}

.sm-logo {
  max-width: 150px;
}

@media (max-width: 992px) {
  .box-slider {
    margin-top: 75px;
  }
}

.before-after {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAkIAAAJiCAYAAAArC602AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAA7dSURBVHgB7d29b5xHfgfwmedZcld8E83lS0hLgJucAbepgjQCCEs5IEjH6s6E7cJ/1MGQA8GFAXZuEp9CII1wVbrAgIUAF0AUab6ZJilSfNlnn+xQx0ChJYrycnd51OdT7MzuDCGVX8z8ZiYEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoihkt2Z25tKOTFeP9gdSg0imr6rdkX9xuN4+eV/urWv/9hbDsAAFwBlxaE5ubK/p9ubHyQxzB83rxmLI6W96Z++H4hHgUAgB66lCD093PljaHB9Q9jGfNYVBrN/sb6n1d+3vzvf/3bwzT+d//0dGB0bPhGXjamQ1ZUy1gWP/UfP/7PP7y/HwAAeqTtIJRWgn4eXP8ohaAsVjaH90afLCzE4jVz8+2h5ZnQ7J9MYejp3sT3VoYAgF6phDZtDa5+mJV5HrJs7d++eu/JeXP/EpCe/OOnK3mzrNSnW1tp34fwOAAA9EAW2nDn0z+PtkJQf2jmhzefjS1f9O+G9/7mSXlcFqme6B/+eX04AAD0QFtBqBZqo6ktYmXlddthr5LmZkNxNfX7Bhr1AADQA20FoUbRdyO1Y8+H37roeWRrfDO1lVq0IgQA9ERbQSjLyoHUtlZ4noe3tPCXIumTrTUAgB5oKwgBAPw1aysI9VXyk3uCPpor33pVJ909lNpmM7pLCADoibaCUPk87qb2dnXjrQueB248PdlWa+THb72tBgBwGdoKQtu1xk+pbVbKqXRZ4kX/Ls2NWWXmxbfazwEAoAfaCkKP7k/sFmXYTbdKrw/+ePuif/es/6fp0/uH/uNf3hOEAICeaPtm6bHn4//zc9/6R/19lfrdz54WN5/NLJ/3xMbeyM+3Go3GeHqT7MnhqFulAYCeuZRHV9OjqmMjfb+JfTFPr8uXzcby/vNy/08Lt0/qfz6a+6/+29WpetpCO32YdacVgv70K47dAwBclksJQkl6fHW7tvWb9Lr8efPSVtpKaxXJY6sAQK9dWhA6defTrdFaOBhNt06fXrgYKvnh0d7hs+OBymaqKwoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK9x6Y+uAgC8ydxcme9UNyYbWRjOYxhOvzX74n55dLC2+ODWZugSQQgA6KpWCOrfGlz9MCvz/leNN2NxtLw39cP3C/EodFgWAAC66LwQlKSxmdactGoUOkwQAgC6ZnZ+qX5eCDqV5qSts9BhghAA0DWxrF043KT6odBhghAA0DVZVg5cdO5pEXUnCUIABHhXCUIAQNcUZdi96NxmM+6HDhOEAICuqdQuHoTK2L8WOkwQAgC6ZmRrfC0088M3TmzNWXww0vGLFQUhAKBrFhZicfPgvcfnhqHW2FKa0wVulgYAemJ2fqcey6PJ05NkqX4oq4Rno7vjqykwBQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN5WPG/w3u/Xp5uVcupkYjze/ONX7z8JAADXxGuD0G9/t3mrqDSn/t/kIix/9/XESgAAuAay1w00ymL87G+nq0MAANdBFgAA3lGvDULZUFw9+1uM+WYAALgmzi2WvvvZ09vxeGAs9Zv9jfWH9yeWAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABcghg66M7c2lB+I85kWTkQy5gXZdgN4XBz8cGtzQAA0GMdC0L3vlifLg/DzKvGYhGWv/t6YiUAAPRQR4LQ7PxSPY/VD1K/zMPK6O74aupv157VQ3ZwO/X3tsLjR99O7AYAgB6phI6o1tNn0ddcWvxyavWlgbXWSlGeVopqo2G69V0QAgB6JgsdkMcwnNqx7cmNs2MjW+NrJ/9wVg4EAIAe6kgQKo/L4k1zUvF0AADooY4EoWYl7qd2p7oxeXZsu7b6YtustC0GAPRWR2qEDiphZbAIw2UeZu5+8mNx82Dq5Lh8CkZldnqSrOoIPQDQUx07Pv/x5+szsTgpiP6F8jCsPPxmYjkAAPRQRy9UnJ3faW2DHdZT8XQsKo1G1nieVose3XdsHgAAAAAAAAAAAADorI4WSwMA/Fp35taG8htxJr1GkS5ifnEH4eHm4oNbl3YFjyAEAFw5975Yn05vk75qLBZh+buvJ1bCJRCEAIArZXZ+qZ7H6gepX+ZhZXR3/OQB9+3as3rIDm6n/t5WePzo2/av4+nQ6/MAAL9W9cVzXH3NpcUvp1ZfGlhrrRTlaaWoNnpyaXPbQagjb40BAPxa6SLm1I5tT26cHRvZGl9LbaobCpdAEAIArpTyuCzeNCcVT4dLIAgBAFdKsxL3U5seaz87tl1bfbFtVoZLea5LjRAAcKWkd0kHizBc5mHm7ic/FjcPpk6Oy6dgVGanJ8mql3KE3qkxAODK+fjz9ZlYnBRE/0J5GFYefjOxHC6BIAQAXEmz8zutbbDDeiqejkWl0cgaz9Nq0aP7E5eyLQYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcN3EAADwDrj3+/XpZqWcSv0Yjzf/+NX7TwQhAODa++3vNm8VlebUy7/FIixnAQDgmmuUxfjZ39LqkCAEALyzBCEA4NrLhuLq2d9izDfVCAEA74S7nz29HY8HxlK/2d9Yf3h/YjkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALxJPO3MzZX5TnVjspGF4TyG4fRbsy/ul0cHa4sPbm0GAIBr5iQItUJQ/9bg6odZmfe/alIzFkfLe1M/fL8QjwIAwDWRpY/zQtDJpNbYTGtOWjUKAADXRDY7v1Q/LwT938TWnLR1FgAArokslrULh5tUPxQAAK6JLMvKgYtOPi2iBgC4DrIAAPCOyooy7F50crMZ9wMAwDWRVWoXD0Jl7F8LAADXRDayNb4WmvnhG2e25iw+GHGxIgBwbWQLC7G4efDe43PDUGtsKc0BALhG4stfZud36rE8mjw9SZbqh7JKeDa6O76aAlMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2hMDAMAluDO3NpTfiDNZVg7EMuZFGXZDONxcfHBrM1xRghAA0LZ7X6xPl4dh5lVjsQjL3309sRKuIEEIAGjL7PxSPY/VD1K/zMPK6O74aupv157VQ3ZwO/X3tsLjR99O7IYrphIAANpSrafPoq+5tPjl1OpLA2utlaI8rRTVRsN06/uVC0JZAABoQx7DcGrHtic3zo6NbI2vpTbVDYUrSBACANpSHpfFm+ak4ulwBQlCAEBbmpW4n9qd6sbk2bHt2uqLbbPy6m2LJWqEAIC2HFTCymARhss8zNz95Mfi5sHUyXH5FIzK7PQkWfVKHqF3agwAaNvHn6/PxOKkIPoXysOw8vCbieVwBQlCAMClmJ3faW2DHdZT8XQsKo1G1nieVose3b96x+YBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgCsshi67M7c2lN+IM1lWDsQy5kUZdkM43Fx8cGszAAB0UVeD0L0v1qfLwzDzqrFYhOXvvp5YCQAAXdK1IDQ7v1TPY/WD1C/zsDK6O76a+tu1Z/WQHdxO/b2t8PjRtxO7AQCgCyqha6r19Fn0NZcWv5xafWlgrbVSlKeVotpomG59F4QAgK7IQpfkMQyndmx7cuPs2MjW+NrJfyYrBwIAQJd0LQiVx2XxpjmpeDoAAHRJ14JQsxL3U7tT3Zg8O7ZdW32xbVbaFgMAuqdrNUIHlbAyWIThMg8zdz/5sbh5MHVyXD4FozI7PUlWdYQeAOiarh6f//jz9ZlYnBRE/0J5GFYefjOxHAAAuqTrFyrOzu+0tsEO66l4OhaVRiNrPE+rRY/uOzYPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdNH/AgC1WAMbHqN6AAAAAElFTkSuQmCC) no-repeat center center;
  background-size: 100%;
  max-width: 100%;
  width: 578px;
  text-align: center;
  margin-top: -50px;
  margin-left: 5%;
  position: relative;
}

@media (max-width: 1500px) {
  .before-after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .before-after {
    max-width: 250px;
  }
}

.before-after .box-shadow {
  position: absolute;
  margin: auto;
  max-width: 440px;
  /* padding-bottom: 50px; */
  height: 545px;
  background: #fff;
  top: 50px;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%);
       -o-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-box-shadow: 0px 12px 80px rgba(71, 94, 237, 0.15);
          box-shadow: 0px 12px 80px rgba(71, 94, 237, 0.15);
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .before-after .box-shadow {
    height: 91%;
  }
}

@media (max-width: 992px) {
  .before-after .box-shadow {
    height: 86%;
  }
}

.before-after .before-after-container {
  margin: auto;
  max-width: 440px;
  padding-bottom: 50px;
}

.before-after .twentytwenty-handle {
  top: 20px !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: transparent;
}

.before-after .twentytwenty-handle .twentytwenty-left-arrow {
  border-right: 6px solid #1c8195;
  margin-left: -20px;
}

.before-after .twentytwenty-handle .twentytwenty-right-arrow {
  border-left: 6px solid #1c8195;
  margin-right: -20px;
}

.before-after .twentytwenty-horizontal .twentytwenty-handle:before,
.before-after .twentytwenty-vertical .twentytwenty-handle:before {
  margin-bottom: -29px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  background: #D6D9E0 !important;
}

.before-after .twentytwenty-horizontal .twentytwenty-handle:after,
.before-after .twentytwenty-vertical .twentytwenty-handle:after {
  background: #D6D9E0 !important;
  -webkit-box-shadow: 5px 20px 19px #475eed !important;
          box-shadow: 5px 20px 19px #475eed !important;
  margin-top: 7px;
}

@media (max-width: 992px) {
  .desktop-view {
    display: none !important;
  }
}

.mobile-view {
  display: none;
}

@media (max-width: 992px) {
  .mobile-view {
    display: block !important;
  }
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
  content: " ";
  display: block;
  background: white;
  position: absolute;
  z-index: 30;
}

.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-horizontal .twentytwenty-handle:after {
  width: 1px;
  height: 9999px;
  left: 50%;
  margin-left: -0.5px;
}

.twentytwenty-vertical .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after {
  width: 1px;
  height: 9999px;
  left: 50%;
  margin-left: -0.5px;
}

.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.twentytwenty-before-label,
.twentytwenty-after-label,
.twentytwenty-overlay {
  -webkit-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
     transition-duration: 0.5s;
}

.twentytwenty-before-label,
.twentytwenty-after-label {
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
  color: white;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.twentytwenty-before-label:before,
.twentytwenty-after-label:before {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-before-label:before,
.twentytwenty-horizontal .twentytwenty-after-label:before {
  top: 50%;
  margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-before-label:before,
.twentytwenty-vertical .twentytwenty-after-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow,
.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.twentytwenty-up-arrow,
.twentytwenty-down-arrow {
  left: 50%;
  margin-left: -6px;
}

.twentytwenty-container {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  z-index: 0;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 50px;
  display: block;
}

.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active :hover.twentytwenty-overlay {
  background: transparent;
}

.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-container * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.twentytwenty-before-label {
  opacity: 0;
}

.twentytwenty-before-label:before {
  content: attr(data-content);
}

.twentytwenty-after-label {
  opacity: 0;
}

.twentytwenty-after-label:before {
  content: attr(data-content);
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}

.twentytwenty-overlay {
  -webkit-transition-property: background;
  -o-transition-property: background;
  transition-property: background;
  background: transparent;
  z-index: 25;
}

.twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label {
  opacity: 1;
}

.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}

.twentytwenty-before {
  z-index: 20;
}

.twentytwenty-after {
  z-index: 10;
}

.twentytwenty-handle {
  height: 38px;
  width: 38px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border: 3px solid white;
  border-radius: 1000px;
  -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
  z-index: 40;
  cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 0;
  -webkit-box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 0;
  -webkit-box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 -3px 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

.twentytwenty-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

.twentytwenty-up-arrow {
  border-bottom: 6px solid white;
  top: 50%;
  margin-top: -17px;
}

.twentytwenty-down-arrow {
  border-top: 6px solid white;
  bottom: 50%;
  margin-bottom: -17px;
}

.faq-wrapper .container {
  width: 985px;
  max-width: 100%;
}

@media (max-width: 1500px) {
  .faq-wrapper .container {
    width: 900px;
  }
}

.tmpl-consumer .faq-wrapper.block {
  padding-top: 50px;
}

.cat-wrap {
  position: relative;
}

.cat-wrap svg {
  display: none;
  position: absolute;
  right: 30px;
  top: 43%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media (max-width: 992px) {
  .cat-wrap ul {
    max-width: 81%;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    overflow: scroll;
  }

  .cat-wrap ul::-webkit-scrollbar {
    display: none;
  }

  .cat-wrap svg {
    display: block;
  }
}

@media (max-width: 1500px) {
  .faq-wrap {
    margin-bottom: 70px;
  }
}

@media (max-width: 992px) {
  .faq-wrap {
    margin-bottom: 43px;
  }
}

.faq-wrap .card {
  border: none;
  border-radius: 0;
}

.faq-wrap .open-close {
  display: inline-block;
  margin-right: 36px;
  background: #57C594;
  color: #FFF;
  border-radius: 3px;
  position: relative;
  line-height: 0;
  font-size: 18px;
  vertical-align: middle;
  padding: 5px;
  margin-top: -3px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 28px;
  text-align: center;
}

.faq-wrap .open-close .icon:before {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.faq-wrap .open-close.open {
  background: #1c8195;
}

.faq-wrap .open-close.open .icon:before {
  content: "\F368";
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq-wrap .card-header {
  background: none;
  border: none;
  padding: 0;
}

.faq-wrap .card-header button,
.faq-wrap .card-header .form .mktoButton,
.form .faq-wrap .card-header .mktoButton {
  padding-left: 0;
  font-weight: 300;
  line-height: 42px;
  font-size: 22px;
  color: #0F233F;
  width: 100%;
  text-align: left;
  text-transform: initial;
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 768px) {
  .faq-wrap .card-header button,
  .faq-wrap .card-header .form .mktoButton,
  .form .faq-wrap .card-header .mktoButton {
    font-size: 15px;
    line-height: 22px;
  }

  .faq-wrap .card-header button ion-icon,
  .faq-wrap .card-header .form .mktoButton ion-icon,
  .form .faq-wrap .card-header .mktoButton ion-icon {
    font-size: 15px;
  }
}

.faq-wrap .card-header button span,
.faq-wrap .card-header .form .mktoButton span,
.form .faq-wrap .card-header .mktoButton span {
  white-space: pre-wrap;
}

.faq-wrap .card-header button:hover,
.faq-wrap .card-header .form .mktoButton:hover,
.form .faq-wrap .card-header .mktoButton:hover,
.faq-wrap .card-header button:focus,
.faq-wrap .card-header .form .mktoButton:focus,
.form .faq-wrap .card-header .mktoButton:focus {
  text-decoration: none;
}

.faq-wrap .card-body {
  padding-left: 66px;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-wrap .border-line {
  height: 1px;
  width: 100%;
  background: #E7F0EF;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .faq-wrap .border-line {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.faq-wrap .border-line:last-of-type {
  display: none;
}

.cta-faq {
  margin-top: 100px;
}

.img-block .left-img {
  max-width: 550px;
}

.img-block .left-img img {
  width: 100%;
}

.img-block .left-img .l-img {
  height: 100%;
}

.img-block .bg-50 {
  height: 50%;
  width: 100%;
  background-size: cover;
  background-position: center center;
}

.img-block .right-side {
  padding-left: 10px !important;
}

.img-block .right-side .f-img {
  margin-bottom: 10px;
}

.cat-item {
  padding: 30px;
}

section.cta-sec {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2.95%, rgba(237, 239, 253, 0)), color-stop(98.76%, #F8F9FE));
  background: -webkit-linear-gradient(top, rgba(237, 239, 253, 0) 2.95%, #F8F9FE 98.76%);
  background: -o-linear-gradient(top, rgba(237, 239, 253, 0) 2.95%, #F8F9FE 98.76%);
  background: linear-gradient(180deg, rgba(237, 239, 253, 0) 2.95%, #F8F9FE 98.76%);
  padding-bottom: 150px;
}

section.cta-sec .container {
  max-width: 1564px;
  padding: 0;
}

@media (max-width: 1500px) {
  section.cta-sec .container {
    padding-left: 70px;
    padding-right: 70px;
  }
}

@media (max-width: 768px) {
  section.cta-sec .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 1200px) {
  section.cta-sec .e-block {
    margin-bottom: 65px;
  }
}

section.cta-sec .eblog-wrap {
  background: #fff;
  -webkit-box-shadow: 0px 10px 35px rgba(71, 94, 237, 0.12);
          box-shadow: 0px 10px 35px rgba(71, 94, 237, 0.12);
  height: 100%;
}

section.cta-sec .eblog {
  padding: 45px;
}

section.cta-sec .eblog.from-blog h4.sm-title {
  font-weight: 600;
  line-height: 35px;
  font-size: 27px;
  margin-bottom: 12px;
}

@media (max-width: 1500px) {
  section.cta-sec .eblog.from-blog h4.sm-title {
    line-height: 31px;
    font-size: 23px;
  }
}

@media (max-width: 768px) {
  section.cta-sec .eblog.from-blog h4.sm-title {
    line-height: 27px;
    font-size: 19px;
  }
}

section.cta-sec .eblog.from-blog .short-desc {
  line-height: 27px;
  font-size: 14px;
}

section.cta-sec div.sm-title {
  line-height: 21px;
  font-size: 11px;
  font-weight: 700;
  color: #0F233F;
  margin-bottom: 14px;
}

section.cta-sec h4.sm-title {
  line-height: 36px;
  font-size: 19px;
  font-weight: 700;
  color: #0F233F;
  margin: 0;
}

@media (max-width: 1500px) {
  section.cta-sec h4.sm-title {
    line-height: 34px;
    font-size: 17px;
  }
}

section.cta-sec .short-desc {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 26px;
}

.cta-block {
  background: #1c8195;
  padding-top: 120px;
  padding-bottom: 120px;
  text-align: center;
  position: relative;
  color: #fff;
}

@media (max-width: 1500px) {
  .cta-block {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
}

@media (max-width: 992px) {
  .cta-block {
    padding-top: 100px  !important;
    padding-bottom: 100px  !important;
  }
}

@media (max-width: 768px) {
  .cta-block {
    padding-top: 88px  !important;
    padding-bottom: 88px  !important;
  }
}

.cta-block .dots {
  background-image: url(/wp-content/themes/bread/dist/images/cta/cta-dots.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.cta-block .gcta-wrap {
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .cta-block .gcta-wrap br {
    display: none;
  }
}

.cta-block h3 {
  line-height: 42px;
  font-size: 35px;
  margin-bottom: 35px;
  color: #fff;
  font-weight: 500;
}

@media (max-width: 1500px) {
  .cta-block h3 {
    line-height: 35px;
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .cta-block h3 {
    line-height: 28px;
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.cta-block .short-desc {
  line-height: 31px;
  font-size: 19px;
  color: #fff;
  margin-bottom: 35px;
}

@media (max-width: 1500px) {
  .cta-block .short-desc {
    line-height: 24px;
    font-size: 14px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .cta-block .short-desc {
    line-height: 22px;
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
  }
}

.cta-block .button-block a.btn,
.cta-block .button-block .search-form a.search-submit,
.search-form .cta-block .button-block a.search-submit,
.cta-block .button-block .e-form-wrapper a.mktoButton,
.e-form-wrapper .cta-block .button-block a.mktoButton {
  margin-left: 10px;
  margin-right: 10px;
}

.footer-dots,
.contact-dots {
  background-image: url(/wp-content/themes/bread/dist/images/cta/footer-dots.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 768px) {
  .footer-dots,
  .contact-dots {
    display: none;
  }
}

.contact-dots {
  background-image: url(/wp-content/themes/bread/dist/images/contact/contact-dots.png);
}

.comment-list ol {
  list-style: none;
}

/** Search form */

.search-form label {
  font-weight: normal;
}

input {
  border: 2px solid #EDEFFD;
  font-weight: normal;
  line-height: initial;
  font-size: 12px;
  padding: 18px !important;
}

.form-wrap {
  -webkit-box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
          box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
}

.form .mktoForm {
  width: 100% !important;
}

.form .mktoGutter {
  display: none !important;
}

.form .mktoFormRow {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 15px;
}

.form .mktoFormCol {
  width: 50% !important;
  padding-right: 20px;
  padding-left: 20px;
}

@media (max-width: 992px) {
  .form .mktoFormCol {
    width: 100% !important;
  }
}

.form label {
  font-weight: normal;
  line-height: 32px;
  font-size: 17px;
  display: block !important;
  float: none !important;
  font-family: "Nunito Sans", sans-serif !important;
  color: #0F233F;
  font-weight: 400 !important;
  width: 100% !important;
  margin-bottom: 15px !important;
}

@media (max-width: 1500px) {
  .form label {
    line-height: 27px;
    font-size: 14px;
    margin-bottom: 10px;
  }
}

@media (max-width: 992px) {
  .form label {
    line-height: 23px;
    font-size: 12px;
    margin-bottom: 7px;
  }
}

.form label .mktoAsterix {
  display: none !important;
}

.form input,
.form select {
  line-height: 32px;
  font-size: 17px;
  color: #8691A0;
}

@media (max-width: 992px) {
  .form input,
  .form select {
    font-size: 14px !important;
  }
}

.form select {
  width: 100% !important;
  background: none;
  border: 2px solid #EDEFFD;
  border-radius: 0 !important;
  padding: 21px;
  height: 64px;
}

.form input {
  padding: 18px;
}

@media (max-width: 1500px) {
  .form input {
    padding: 16px;
  }
}

@media (max-width: 992px) {
  .form input {
    padding: 14px;
  }
}

.form input::-webkit-input-placeholder {
  /* WebKit browsers */
  color: transparent !important;
}

.form input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: transparent;
}

.form input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: transparent;
}

.form input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: transparent;
}

.form input,
.form .mktoFieldWrap {
  width: 100% !important;
}

.form .mktoButtonRow {
  width: 100% !important;
  text-align: right;
  margin-top: 40px;
}

.signup-box label {
  display: none;
}

.signup-box .input {
  margin-right: 0 !important;
}

.signup-box .hbspt-form .hs-submit input.hs-button {
  border: 2px solid #57C594 !important;
}

.signup-box .hs-error-msgs {
  position: absolute;
}

.signup-box fieldset,
.signup-box .actions {
  padding: 0 !important;
}

.signup-box .actions {
  margin-top: 0;
}

.hs-error-msgs li {
  padding-left: 0;
}

.hs-error-msgs label {
  font-size: 11px;
  color: red;
  display: block;
  line-height: 13px;
}

.submitted-message p {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: unset;
  color: #57C594;
}

.hbspt-form fieldset {
  max-width: 100% !important;
}

.form-columns-1 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

@media (max-width: 992px) {
  .form-columns-1 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .form-columns-1 .field {
    margin-top: 0 !important;
  }
}

.actions {
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 20px;
}

.form-columns-2 {
  margin-left: -20px;
  margin-right: -20px;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */

/** Media alignment */

.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0.5rem auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 0.5rem;
  height: auto;
}

@media (min-width: 576px) {
  .alignleft {
    float: left;
    margin-right: 0.5rem;
  }

  .alignright {
    float: right;
    margin-left: 0.5rem;
  }
}

/** Captions */

/** Text meant only for screen readers */

@media (max-width: 992px) {
  .desk-nav {
    display: none !important;
  }
}

.mobile-menu-wrap {
  display: none;
}

.mobile-menu-wrap.go {
  display: block;
}

.mobile-menu-wrap.go .mobile-menu {
  opacity: 1;
  padding-bottom: 72px;
}

.mobile-menu {
  position: fixed;
  z-index: 10000;
  top: 0;
  background: #fff;
  height: 100vh;
  overflow: scroll;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  -webkit-overflow-scrolling: touch;
}

.mobile-menu header {
      background: #1C8195;
    padding: 0px 20px;
    color: #fff;
    height: 64px;
    display: flex;
    align-items: center;
}
.mobile-menu header > .d-flex {
      width: 100%;
}
.mobile-menu header .close-mobile-menu {
      padding: 0;
}

.mobile-menu header li {
  list-style: none;
  padding: 0 15px;
}

.mobile-menu header li.login {
  border-right: 1px solid #0F233F;
}

.mobile-menu header li:last-of-type {
  padding-right: 0;
}

.mobile-menu header a {
  color: #fff;
  font-weight: 800;
  line-height: 23px;
  font-size: 12px;
  text-transform: uppercase;
}

.mobile-menu header a:hover {
  text-decoration: none;
}

.mobile-menu header img {
  width: 94px;
}

.mobile-menu #accordion .card-header {
  /*background: #F8F9FE;*/
  border-radius: 0;
  /*border-bottom: 1px solid rgba(81, 86, 234, 0.12);*/
  padding: 21px 40px;
  position: relative;
      border-bottom: 1px solid #CFD8DC;
      background-color: #FFFFFF;
}

.mobile-menu #accordion .card-header .toggle-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.mobile-menu #accordion .card-header .toggle-arrow svg {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
      width: 11px;
}
.mobile-menu #accordion .card-header .toggle-arrow svg path {
    fill: #1C8195;
}

.mobile-menu #accordion .card-header .toggle-arrow.open svg {
      -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}
.mobile-menu #accordion .card-header .toggle-arrow svg {
  -webkit-transform: rotate(-180deg);
       -o-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

/*.mobile-menu #accordion button,
.mobile-menu #accordion .form .mktoButton,
.form .mobile-menu #accordion .mktoButton {
  width: 100%;
  display: block;
  font-weight: 800;
  line-height: 21px;
  font-size: 11px;
  color: #0F233F !important;
  text-align: left;
  letter-spacing: 0.1em;
  text-decoration: none !important;
  padding: 0 !important;
}*/

.mobile-menu #accordion button,
.mobile-menu #accordion .form .mktoButton,
.form .mobile-menu #accordion .mktoButton {
  width: 100%;
  display: block;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  color: #0F2233 !important;
  text-align: left;
  /*letter-spacing: 0.1em;*/
  text-decoration: none !important;
  padding: 0 !important;
  text-transform: capitalize;
}

.mobile-menu #accordion button:hover,
.mobile-menu #accordion .form .mktoButton:hover,
.form .mobile-menu #accordion .mktoButton:hover {
  text-decoration: none;
}

.mobile-menu #accordion .card {
  border-radius: 0;
  border-bottom: 1px solid rgba(81, 86, 234, 0.12);
  border: 0px;
}

.mobile-menu #accordion .card-body {
  padding: 25px 32px 26px 32px;
  background-color: #FAFAFA;
  border-top: 3px solid #1C8195;
}

.mobile-menu #accordion .card-body .btn-row {
  margin-top: 30px;
  margin-left: -10px;
  margin-right: -10px;
}

.mobile-menu #accordion .card-body .btn-row .btn,
.mobile-menu #accordion .card-body .btn-row .comment-form input[type="submit"],
.comment-form .mobile-menu #accordion .card-body .btn-row input[type="submit"],
.mobile-menu #accordion .card-body .btn-row .search-form .search-submit,
.search-form .mobile-menu #accordion .card-body .btn-row .search-submit,
.mobile-menu #accordion .card-body .btn-row .e-form-wrapper .mktoButton,
.e-form-wrapper .mobile-menu #accordion .card-body .btn-row .mktoButton,
.mobile-menu #accordion .card-body .btn-row .email-form form button,
.email-form form .mobile-menu #accordion .card-body .btn-row button,
.mobile-menu #accordion .card-body .btn-row .email-form form .form .mktoButton,
.email-form form .form .mobile-menu #accordion .card-body .btn-row .mktoButton,
.mobile-menu #accordion .card-body .btn-row .form .email-form form .mktoButton,
.form .email-form form .mobile-menu #accordion .card-body .btn-row .mktoButton {
  margin: 0 10px;
  line-height: 19px;
  font-size: 11px;
  font-weight: 800;
}

.mobile-menu #accordion .card-body .btn-row .btn-green-trans {
  color: #57C594 !important;
}

.mobile-menu #accordion ul.nav-list {
  padding: 0;
  margin: 0;
}

.mobile-menu #accordion ul.nav-list li {
  list-style: none;
  margin-bottom: 20px;
  text-align: left;
}

.mobile-menu #accordion ul.nav-list li:last-of-type {
  margin-bottom: 0;
}

/*.mobile-menu #accordion ul.nav-list li a {
  font-weight: normal;
  line-height: 20px;
  font-size: 14px;
  color: #0F233F;
}*/
.mobile-menu #accordion ul.nav-list li a {
      font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: #0F2233;
    margin-bottom: 25px;
}

.mobile-menu #accordion ul.nav-list li a:hover {
  text-decoration: none;
  color: #1C8195;
}

.mob-nav {
  display: none !important;
}

@media (max-width: 992px) {
  .mob-nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.mob-nav .ham-lines {
  padding-left: 25px;
  cursor: pointer;
}

/*.mob-nav .ham-lines .ham-line {
  width: 17px;
  height: 3px;
  background: #0F233F;
  display: block;
  margin: 2px auto;
}*/
.mob-nav .ham-lines .ham-line {
    width: 22px;
    height: 3px;
    background: #1c8195;
    display: block;
    margin: 7px auto;
}

.mob-nav li.login {
  border-right: 1px solid #0F233F;
}

.mob-nav .hamburger {
  padding: 0 0 0 25px;
}

.mob-nav .hamburger-inner::after {
  height: 0;
  display: none;
}

.mob-nav .hamburger-inner::before,
.mob-nav .hamburger-inner {
  height: 3px;
  width: 20px;
}

.mob-nav .hamburger-inner::before {
  top: 1px;
}

.nav-wrapper {
  /*padding: 45px 50px;*/
  z-index: 10;
  position: relative;
}

@media (max-width: 1500px) {
  .nav-wrapper {
    padding: 32px 50px;
  }
}

@media (max-width: 768px) {
  .nav-wrapper {
    padding: 17px 0;
  }
}

.nav-wrapper .brand img {
  width: 145px;
  margin-right: 58px;
}

/*@media (max-width: 1500px) {
  .nav-wrapper .brand img {
    width: 124px;
  }
}*/

/*@media (max-width: 768px) {
  .nav-wrapper .brand img {
    width: 89px;
  }
}*/

.nav-wrapper .btn,
.nav-wrapper .comment-form input[type="submit"],
.comment-form .nav-wrapper input[type="submit"],
.nav-wrapper .search-form .search-submit,
.search-form .nav-wrapper .search-submit,
.nav-wrapper .e-form-wrapper .mktoButton,
.e-form-wrapper .nav-wrapper .mktoButton,
.nav-wrapper .email-form form button,
.email-form form .nav-wrapper button,
.nav-wrapper .email-form form .form .mktoButton,
.email-form form .form .nav-wrapper .mktoButton,
.nav-wrapper .form .email-form form .mktoButton,
.form .email-form form .nav-wrapper .mktoButton {
  padding: 19px 31px !important;
  color: #fff !important;
}

@media (max-width: 1500px) {
  .nav-wrapper .btn,
  .nav-wrapper .comment-form input[type="submit"],
  .comment-form .nav-wrapper input[type="submit"],
  .nav-wrapper .search-form .search-submit,
  .search-form .nav-wrapper .search-submit,
  .nav-wrapper .e-form-wrapper .mktoButton,
  .e-form-wrapper .nav-wrapper .mktoButton,
  .nav-wrapper .email-form form button,
  .email-form form .nav-wrapper button,
  .nav-wrapper .email-form form .form .mktoButton,
  .email-form form .form .nav-wrapper .mktoButton,
  .nav-wrapper .form .email-form form .mktoButton,
  .form .email-form form .nav-wrapper .mktoButton {
    padding: 13px 19px !important;
  }
}

.nav-wrapper .nav li.active .mega-nav-wrap,
.nav-wrapper .nav li.active .mini-menu-wrap {
  display: block !important;
}

.nav-wrapper .nav li.active .mega-nav-wrap li a:hover,
.nav-wrapper .nav li.active .mini-menu-wrap li a:hover {
  color: #1c8195;
}

.nav-wrapper .nav li.active .nav-arrow svg {
  opacity: 1;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
         top: 7px;
}

.nav-wrapper .nav li.active .triangle {
  opacity: 0;
}

.nav-wrapper .nav li.active a .under-line {
  width: 100% !important;
}

/*.nav-wrapper .nav li.current-menu-item a .under-line,
.nav-wrapper .nav li.current-page-ancestor a .under-line {
  width: 0px;
}*/

.nav-wrapper .nav a {
  color: #0F233F;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  margin: 0;
  padding-left: 35px;
  padding-right: 35px;
}

@media (max-width: 1500px) {
  .nav-wrapper .nav a {
    font-size: 13px;
    padding-left: 25px;
    padding-right: 25px;
  }
}


.nav-wrapper .nav .mega-open a .nav-arrow svg {
  opacity: 1;
}

.nav-wrapper .nav a .nav-arrow svg {
  position: absolute;
  right: -16px;
    top: 9px;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
      width: 11px;
    height: 6px;
}
.nav-wrapper .nav a .nav-arrow svg path {
  fill: #1C8195;
}

.nav-wrapper .nav a .under-line {
  position: absolute;
  bottom: -7px;
  height: 3px;
  width: 0;
  background: #1C8195;
  left: 50%;
  -webkit-transform: translate(-50%);
       -o-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.nav-wrapper .nav a:hover,
.nav-wrapper .nav a.active,
.nav-wrapper .nav a.current-menu-item,
.nav-wrapper .nav a.current-page-ancestor {
  text-decoration: none;
}

.nav-wrapper .nav a:hover .under-line,
.nav-wrapper .nav a.active .under-line,
.nav-wrapper .nav a.current-menu-item .under-line,
.nav-wrapper .nav a.current-page-ancestor .under-line {
  width: 66px;
}

.nav-wrapper .nav .mega-open a:hover .nav-arrow svg,
.nav-wrapper .nav .mega-open a.active .nav-arrow svg {
  opacity: 1;
}

.hero {
  background: #fff;
  height: 921px;
  max-height: 100vh;
  margin-bottom: 150px;
  min-height: 800px;
}

@media (max-width: 1500px) {
  .hero {
    margin-bottom: 100px;
    height: 800px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 150px;
    min-height: 0;
    max-height: initial;
    height: auto;
    padding-bottom: 250px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    margin-bottom: 65px;
  }
}

.hero .hero-c {
  height: calc(100% - 139px);
  color: #fff;
  padding-left: 120px;
}

@media (max-width: 1500px) {
  .hero .hero-c {
    padding-left: 100px;
  }
}

@media (max-width: 992px) {
  .hero .hero-c {
    padding-left: 75px;
    height: auto;
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  .hero .hero-c {
    padding-left: 0;
  }
}

.hero .hero-wrap {
  position: absolute;
  top: 40%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media (max-width: 992px) {
  .hero .hero-wrap {
    position: relative;
    top: 0;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

.hero h1 {
  color: #0F233F;
  font-style: normal;
  font-weight: 800;
  line-height: 85px;
  font-size: 80px;
  margin-top: 0;
  margin-bottom: 52px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1556px) {
  .hero h1 {
    line-height: 70px;
    font-size: 65px;
  }
}

@media (max-width: 1500px) {
  .hero h1 {
    line-height: 60px;
    font-size: 55px;
    margin-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    line-height: 35px;
    font-size: 35px;
    margin-bottom: 30px;
  }
}

.hero h2 {
  line-height: 35px;
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 60px;
  color: #8691A0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 1556px) {
  .hero h2 {
    line-height: 32px;
    font-size: 19px;
  }
}

@media (max-width: 1500px) {
  .hero h2 {
    line-height: 27px;
    font-size: 17px;
    margin-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .hero h2 {
    line-height: 22px;
    font-size: 13px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    max-width: 67%;
  }
}

@media (max-width: 768px) {
  .hero h2 br {
    display: none;
  }
}

@media (max-width: 768px) {
  header.hero-white {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.hero-white {
  text-align: center;
}

.hero-white h1 {
  color: #13294B;
  font-style: normal;
  font-weight: 800;
  font-size: 64px;
  line-height: 74px;
  margin-bottom: 30px;
}

/*@media (max-width: 1500px) {
  .hero-white h1 {
    line-height: 55px;
    font-size: 55px;
    margin-bottom: 20px;
  }
}*/

@media (max-width: 768px) {
  .hero-white h1 {
    line-height: 35px;
    font-size: 35px;
    margin-bottom: 10px;
  }
}

.hero-white h2 {
  font-weight: 300;
  line-height: 35px;
  font-size: 22px;
}

@media (max-width: 1500px) {
  .hero-white h2 {
    line-height: 27px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hero-white h2 {
    line-height: 20px;
    font-size: 13px;
  }
}

.hero-white .sub-head p {
  margin-bottom: 60px;
  color: #333333;
}

@media (max-width: 1500px) {
  .hero-white .sub-head p {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero-white .sub-head p {
    margin-bottom: 30px;
  }
}

.hero-white .sub-head p:last-of-type {
  margin-bottom: 0;
}
.hero-white .sub-head a {
  color: #1C8195;
}
.hero-white .hero-btn {
  margin-top: 30px;
}

.hero-white .nav-wrapper {
  padding-bottom: 0;
  margin-bottom: 164px;
}

@media (max-width: 1500px) {
  .hero-white .nav-wrapper {
    margin-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .hero-white .nav-wrapper {
    margin-bottom: 61px;
  }
}

.hero-white .nav-wrapper ul.nav li a {
  color: #0F233F;
}

.hero-white .nav-wrapper .btn.btn-blue,
.hero-white .nav-wrapper .comment-form input.btn-blue[type="submit"],
.comment-form .hero-white .nav-wrapper input.btn-blue[type="submit"],
.hero-white .nav-wrapper .search-form .btn-blue.search-submit,
.search-form .hero-white .nav-wrapper .btn-blue.search-submit,
.hero-white .nav-wrapper .e-form-wrapper .btn-blue.mktoButton,
.e-form-wrapper .hero-white .nav-wrapper .btn-blue.mktoButton,
.hero-white .nav-wrapper .email-form form button.btn-blue,
.email-form form .hero-white .nav-wrapper button.btn-blue,
.hero-white .nav-wrapper .email-form form .form .btn-blue.mktoButton,
.email-form form .form .hero-white .nav-wrapper .btn-blue.mktoButton,
.hero-white .nav-wrapper .form .email-form form .btn-blue.mktoButton,
.form .email-form form .hero-white .nav-wrapper .btn-blue.mktoButton {
  background: #1c8195;
  color: #FFF;
}

.hero.bg-img-hero {
  background-position: 70% center;
  background-size: cover;
}

.hero.bg-img-hero .mobile-img-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none !important;
  background-size: cover;
  z-index: 0;
  background-position: 70% center;
}

@media (max-width: 1100px) {
  .hero.bg-img-hero {
    background-image: none !important;
  }

  .hero.bg-img-hero .mobile-img-wrap {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .page-template-tmpl-business-solutions-boost .hero.bg-img-hero .mobile-img-wrap {
    background-position: 63% center;
  }
}


/*Start Work 26617965*/
footer {
  background: #0F233F;
  padding: 67px 0px 32px;
  margin-bottom: -2px;
}
footer .footer-nav-wrap .footer-left-sec {
	padding-left: 22px;
    padding-top: 18px;
    padding-right: 0;
}
footer .footer-nav-wrap .footer-left-sec > .row {
  width: 100%;
    margin: 0;
}
footer .footer-nav-wrap .footer-right-sec  {
    display: inline-block !important;
    padding-right: 0px;
}
footer .footer-nav-wrap .footer-right-sec .transparent-btn {
  min-width: 169px;
  display: inline-block;
  margin-right: 6px;
}
.footer-content-para {
  display: inline-block;
    width: 100%;
}
footer .bread-details .footer-content-para p {
      float: right;
    margin-bottom: 29px;
    margin-right: 5px;
    max-width: 280px;
}
.footer-house-img {
  padding-top: 16px;
  margin-right: 4px;
}
.footer-house-img img {
  width: 43px;
}
footer .footer-nav-wrap .footer-right-sec .btn-green {
  padding: 17px 27px;
  margin-right: 5px;
}
footer .bread-details .footer-logo {
      margin-bottom: 27px;
    width: 96px;
    margin-right: 3px;
    margin-top: 3px;
}
footer .nav-row {
  vertical-align: top;
}
footer .nav-row .sm-title {
  line-height: 21px;
  font-size: 11px;
  color: #A6ACF5;
  font-weight: 700;
  margin-bottom: 13px;
}

footer .nav-row ul {
  padding: 0;
  margin: 0;
}

footer .nav-row ul li {
  list-style: none;
}

footer .nav-row a {
  color: #FFFFFF;
  font-weight: 300;
  font-size: 12px;
  line-height: 30px;
}

/* footer .bread-details {
  min-width: 200px;
} */



 @media (max-width: 1500px) {
  footer .footer-nav-wrap .footer-left-sec {
  	padding: 0px;
  }
}



@media (max-width: 992px) {
  footer .bread-details br {
    display: none;
  }
  footer .bread-details {
    text-align: right;
  }
}

@media (max-width: 991px) {
  footer .nav-row .nav-list {
    width: 100%;
    display: inline-block;
  }
  footer .nav-row {
    /* min-width: 24%; */
    /* width: 24%; */
    display: inline-block;
    margin: 0;
    vertical-align: top;
    margin-bottom: 25px;
  }
  /*footer .footer-nav-wrap .footer-left-sec {
    width: 100%;
    min-width: 100%;
    display: inline-block !important;
  }*/
  footer .footer-nav-wrap .footer-right-sec {
    padding: 0px;
    float: none;
    padding-right: 0px;
  }
  /*footer .footer-right-sec .bread-details {
    text-align: center;
    margin-top: 30px;
  }*/
  /*.footer-nav-wrap  {
    display: inline-block !important;
  }*/
  /*.footer-content-para {
    text-align: center;
  }*/
  /*footer .bread-details .footer-content-para p {
    float: none;
    margin: 0 auto;
  }*/
}

@media (max-width: 768px) {
  footer .footer-nav-wrap .footer-right-sec {
    display: block !important;
    padding-right: 0;
  }
  /*footer .bread-details .footer-content-para p {
    float: none;
    margin: 0 auto;
  }*/

  /*.footer-house-img {
    margin: 0;
  }*/
}

@media (max-width: 575px) {
  /* footer .nav-row {
    margin-right: auto;
    min-width: 49%;
    margin-bottom: 32px;
    vertical-align: top;
    width: 49%;
  } */
  .footer-nav-wrap {
    margin: 0;
  }
  footer .nav-row {
    padding: 0;
  }
  /*footer .bread-details .footer-content-para p {
    width: 100%;
  }*/
  footer .footer-nav-wrap .footer-left-sec {
    width: 100%;
    float: none;
  }
  footer .footer-nav-wrap .footer-right-sec {
    float: none;
    width: 100%;
    text-align: center;
  }
  footer .footer-right-sec .bread-details.align-right {
    text-align: left;
    margin-top: 20px;
  }
}
/*End Css 26617965*/

/* @media (max-width: 768px) {
  footer .bread-details {
    margin-top: 32px;
  }

  footer .bread-details.align-right {
    text-align: center;
  }
} */



@media (max-width: 768px) {
  /*footer .bread-details .footer-logo {
    margin-bottom: 15px;
  }*/
}

footer .bread-details p {
  line-height: 23px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  footer .bread-details p {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

.legal-copy {
  background: #0F233F;
  padding-bottom: 50px;
  font-size: 10px;
  line-height: 20px;
}

@media (max-width: 768px) {
  .legal-copy {
    padding-bottom: 33px;
  }
}

.post-wrap {
  margin-bottom: 75px;
}

@media (max-width: 1500px) {
  .post-wrap {
    margin-bottom: 50px;
  }
}

@media (max-width: 992px) {
  .post-wrap {
    margin-bottom: 65px;
  }
}

.post-wrap .excerpt-wrap {
  padding: 75px 50px 75px 150px;
}

@media (max-width: 1500px) {
  .post-wrap .excerpt-wrap {
    padding: 50px 50px 50px 80px;
  }
}

@media (max-width: 992px) {
  .post-wrap .excerpt-wrap {
    padding: 30px 0px 30px 0px;
  }
}

.blog-list {
  padding-bottom: 200px;
}

.blog-list .cta {
  margin-top: 150px;
}

.single-wrap header h1 {
  margin-bottom: 21px;
}

.single-wrap header,
.single-wrap .c-block {
  margin-bottom: 60px;
}

@media (max-width: 1500px) {
  .single-wrap header,
  .single-wrap .c-block {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .single-wrap header,
  .single-wrap .c-block {
    margin-bottom: 40px;
  }
}

.single-wrap .c-block:last-of-type {
  margin-bottom: 0;
}

.single-wrap .feat-img {
  margin-bottom: 75px;
}

.single-wrap .blockquote,
.single-wrap blockquote {
  margin: auto;
  width: 628px;
  max-width: 100%;
}

.single-wrap .blockquote .b-quote,
.single-wrap blockquote .b-quote {
  font-style: italic;
  font-weight: 300;
  line-height: 38px;
  font-size: 24px;
  text-align: center;
  padding-top: 49px;
  padding-bottom: 49px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .single-wrap .blockquote .b-quote,
  .single-wrap blockquote .b-quote {
    line-height: 38px;
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .single-wrap .blockquote .b-quote,
  .single-wrap blockquote .b-quote {
    line-height: 38px;
    font-size: 14px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.single-wrap .blockquote .bord,
.single-wrap blockquote .bord {
  height: 3px;
  background: #1c8195;
  width: 75%;
  margin: auto;
}

.single-wrap h1,
.single-wrap h2,
.single-wrap h3,
.single-wrap h4,
.single-wrap h5,
.single-wrap h6,
.single-wrap p,
.single-wrap ul,
.single-wrap ol {
  margin-bottom: 30px;
}

.single-wrap h1 {
  font-weight: 300;
  line-height: 45px;
  font-size: 35px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .single-wrap h1 {
    line-height: 35px;
    font-size: 25px;
  }
}

@media (max-width: 992px) {
  .single-wrap h1 {
    line-height: 26px;
    font-size: 20px;
  }
}

.single-wrap h2 {
  font-weight: 300;
  line-height: 37px;
  font-size: 27px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .single-wrap h2 {
    line-height: 27px;
    font-size: 17px;
  }
}

@media (max-width: 992px) {
  .single-wrap h2 {
    line-height: 24px;
    font-size: 15px;
  }
}

.single-wrap h3 {
  font-weight: 300;
  line-height: 35px;
  font-size: 25px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .single-wrap h3 {
    line-height: 26px;
    font-size: 16px;
  }
}

@media (max-width: 1500px) {
  .single-wrap h3 {
    line-height: 23px;
    font-size: 14px;
  }
}

.single-wrap h4 {
  font-weight: 300;
  line-height: 33px;
  font-size: 23px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .single-wrap h4 {
    line-height: 25px;
    font-size: 15px;
  }
}

@media (max-width: 1500px) {
  .single-wrap h4 {
    line-height: 22px;
    font-size: 13px;
  }
}

.single-wrap h5 {
  font-weight: 300;
  line-height: 23px;
  font-size: 18px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .single-wrap h5 {
    line-height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 1500px) {
  .single-wrap h5 {
    line-height: 21px;
    font-size: 12px;
  }
}

.single-wrap h6 {
  font-weight: 300;
  line-height: 23px;
  font-size: 18px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .single-wrap h6 {
    line-height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 1500px) {
  .single-wrap h6 {
    line-height: 21px;
    font-size: 12px;
  }
}

.related-articles {
  padding-bottom: 200px;
}

@media (max-width: 1500px) {
  .related-articles {
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .related-articles {
    padding-bottom: 65px;
  }
}

.related-articles .row {
  margin-left: -25px;
  margin-right: -25px;
}

@media (max-width: 1500px) {
  .related-articles .row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

.related-articles .col-lg-4 {
  padding-left: 25px;
  padding-right: 25px;
}

@media (max-width: 1500px) {
  .related-articles .col-lg-4 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .related-articles .col-lg-4 {
    margin-bottom: 65px;
  }

  .related-articles .col-lg-4:last-of-type {
    margin-bottom: 0;
  }
}

.related-articles h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 33px;
  font-size: 23px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .related-articles h3 {
    line-height: 25px;
    font-size: 15px;
  }
}

@media (max-width: 1500px) {
  .related-articles h3 {
    line-height: 22px;
    font-size: 13px;
  }
}

.related-articles .short-desc {
  margin-bottom: 0;
}

header.sec-header {
  margin-bottom: 155px;
}

@media (max-width: 1500px) {
  header.sec-header {
    margin-bottom: 100px;
  }
}

@media (max-width: 992px) {
  header.sec-header {
    margin-bottom: 65px;
  }
}

@media (max-width: 768px) {
  header.sec-header {
    margin-bottom: 50px;
  }
}

header.sec-header.sm-gap {
  margin-bottom: 82px;
}

@media (max-width: 1500px) {
  header.sec-header.sm-gap {
    margin-bottom: 100px;
  }
}

@media (max-width: 992px) {
  header.sec-header.sm-gap {
    margin-bottom: 65px;
  }
}

header.sec-header h2.headline {
  font-style: normal;
  font-weight: 300;
  line-height: 45px;
  font-size: 35px;
  margin-bottom: 0;
}

@media (max-width: 1500px) {
  header.sec-header h2.headline {
    line-height: 42px;
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  header.sec-header h2.headline {
    line-height: 26px;
    font-size: 20px;
  }
}

header.sec-header .short-desc {
  margin-top: 20px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  header.sec-header .short-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

.sec-solutions.block {
  padding-top: 268px;
}

@media (max-width: 1500px) {
  .sec-solutions {
    margin-top: 100px;
    margin-bottom: 50px;
  }
}

@media (max-width: 992px) {
  .sec-solutions {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.sec-solutions .img-sec {
  position: absolute;
  right: 0;
  top: -28%;
}

.sec-solutions .img-sec.co-sec-img {
  top: -72px;
  right: 20%;
}

.sec-solutions .img-sec.price-sec-img {
  top: -130px;
  right: 20%;
}

@media (max-width: 992px) {
  .sec-solutions .img-sec.price-sec-img {
    position: relative;
    right: initial;
    top: initial;
  }
}

@media (max-width: 992px) {
  .sec-solutions .no-max {
    max-width: 100%;
  }
}

.ml-cta {
  margin-top: 100px;
}

.sec-marketing.block {
  padding-top: 237px;
}

.highlights.icon-top .icon-wrap {
  margin-bottom: 30px;
}

.highlights .highlight-pad {
  max-width: 100%;
  width: 250px;
}

.sec-marketing header.sec-header {
  margin-bottom: 100px;
}

@media (max-width: 1500px) {
  .sec-marketing header.sec-header {
    margin-bottom: 60px;
  }
}

@media (max-width: 992px) {
  .sec-marketing header.sec-header {
    margin-bottom: 50px;
  }
}

@media (max-width: 992px) {
  .sec-marketing .ml-cta {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .sec-marketing .ml-cta {
    margin-top: 10px;
  }
}

@media (max-width: 992px) {
  .sec-marketing li.highlight {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .sec-marketing li.highlight {
    margin-bottom: 40px;
  }
}

.sec-marketing li.highlight .highlight-desc .short-desc {
  margin-bottom: 0;
}

section.sec-case {
  margin-top: 200px;
}

@media (max-width: 1500px) {
  section.sec-case {
    margin-top: 150px;
  }
}

@media (max-width: 768px) {
  section.sec-case {
    margin-top: 65px;
  }
}

section.sec-case .test-slider {
  position: absolute;
  bottom: 0;
  color: #FFF;
  background: #0F233F;
  font-weight: 300;
  line-height: 31px;
  font-size: 25px;
  color: #fff;
  padding: 58px 125px;
  width: 702px;
  max-width: 80%;
  z-index: 1000;
}

@media (max-width: 1500px) {
  section.sec-case .test-slider {
    max-width: 50%;
    line-height: 28px;
    font-size: 20px;
    padding-left: 80px;
    padding-right: 100px;
  }
}

@media (max-width: 1200px) {
  section.sec-case .test-slider {
    line-height: 26px;
    font-size: 18px;
    padding-left: 50px;
    padding-right: 100px;
  }
}

@media (max-width: 992px) {
  section.sec-case .test-slider {
    padding-right: 15%;
  }
}

@media (max-width: 768px) {
  section.sec-case .test-slider {
    display: none;
  }
}

section.sec-case .test-slider .next-prev-arrows {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: #fff;
  width: 78px;
  height: 78px;
  border-radius: 100%;
  margin-right: -37px;
}

section.sec-case .test-slider .next-prev-arrows .prev-arrow,
section.sec-case .test-slider .next-prev-arrows .next-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  cursor: pointer;
}

section.sec-case .test-slider .next-prev-arrows .prev-arrow {
  left: 20px;
}

section.sec-case .test-slider .next-prev-arrows .next-arrow {
  right: 20px;
}

section.sec-case .center-vert {
  width: 559px;
  max-width: 100%;
}

section.sec-case .case-cont {
  background: rgba(237, 239, 253, 0.4);
  height: 700px;
  margin-top: 85px;
}

@media (max-width: 1500px) {
  section.sec-case .case-cont {
    height: 748px;
    margin-top: 35px;
  }
}

@media (max-width: 768px) {
  section.sec-case .case-cont {
    height: auto;
    padding-top: 55px;
    padding-bottom: 55px;
    width: 100% !important;
    margin-top: 0;
  }
}

section.sec-case .case-cont .case-logo {
  margin-bottom: 45px;
}

section.sec-case .case-cont .test {
  font-style: italic;
  font-weight: 300;
  line-height: 37px;
  font-size: 22px;
  color: #0F233F;
  margin-bottom: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1500px) {
  section.sec-case .case-cont .test {
    line-height: 37px;
    font-size: 18px;
    margin-bottom: 26px;
    display: block;
  }
}

@media (max-width: 768px) {
  section.sec-case .case-cont .test {
    line-height: 34px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}

section.sec-case .case-cont .t-name {
  font-weight: 300;
  line-height: 24px;
  font-size: 20px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  section.sec-case .case-cont .t-name {
    line-height: 24px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  section.sec-case .case-cont .t-name {
    line-height: 24px;
    font-size: 15px;
  }
}

section.sec-case .case-cont .t-title {
  font-weight: 600;
  line-height: 32px;
  font-size: 17px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  section.sec-case .case-cont .t-title {
    line-height: 24px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  section.sec-case .case-cont .t-title {
    line-height: 24px;
    font-size: 15px;
  }
}

section.sec-case .case-cont .btn,
section.sec-case .case-cont .comment-form input[type="submit"],
.comment-form section.sec-case .case-cont input[type="submit"],
section.sec-case .case-cont .search-form .search-submit,
.search-form section.sec-case .case-cont .search-submit,
section.sec-case .case-cont .e-form-wrapper .mktoButton,
.e-form-wrapper section.sec-case .case-cont .mktoButton,
section.sec-case .case-cont .email-form form button,
.email-form form section.sec-case .case-cont button,
section.sec-case .case-cont .email-form form .form .mktoButton,
.email-form form .form section.sec-case .case-cont .mktoButton,
section.sec-case .case-cont .form .email-form form .mktoButton,
.form .email-form form section.sec-case .case-cont .mktoButton {
  margin-top: 45px;
}

section.sec-case .slide-wrap {
  z-index: 11;
  width: 50%;
}

section.sec-case .slide-wrap-img {
  height: 785px;
  background-size: cover;
  background-repeat: none;
  background-position: center center;
}

@media (max-width: 768px) {
  section.sec-case .slide-wrap-img {
    display: none;
  }
}

section.sec-case .grey-bg {
  max-width: 542px;
  margin: auto;
}

@media (max-width: 1500px) {
  section.sec-case .grey-bg {
    max-width: 100%;
    padding-left: 15%;
    padding-right: 12%;
  }
}

@media (max-width: 992px) {
  section.sec-case .grey-bg {
    margin-top: 69px;
  }
}

@media (max-width: 768px) {
  section.sec-case .grey-bg {
    margin-top: 0;
  }
}

section.sec-case .quote-box {
  -webkit-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  transition: all 0.1s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1200px) {
  section.sec-case .quote-box {
    display: block;
  }
}

.intro-sec {
  margin-top: 150px;
}

@media (max-width: 1500px) {
  .intro-sec {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .intro-sec {
    margin-top: 40px;
  }
}

@media (max-width: 992px) {
  .intro-sec img.ab-img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
}

.gal-img .bg-cover {
  background-size: cover;
}

.ab-quote-wrap {
  padding-left: 80px;
  color: #0F233F;
}

@media (max-width: 992px) {
  .ab-quote-wrap {
    padding-left: 0;
  }
}

.ab-quote {
  font-weight: 300;
  line-height: 27px;
  font-size: 17px;
  margin-bottom: 40px;
}

@media (max-width: 1500px) {
  .ab-quote {
    line-height: 27px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .ab-quote {
    line-height: 34px;
    font-size: 16px;
  }
}

.ab-quote:last-of-type {
  margin-bottom: 0;
}

.ab-author {
  line-height: 24px;
  font-size: 20px;
  font-weight: 300;
}

.ab-title {
  line-height: 32px;
  font-size: 17px;
  font-weight: 600;
}

section.principles {
  background: rgba(237, 239, 253, 0.4);
}

section.principles .prin-wrap h3 {
  font-weight: normal;
  line-height: 34px;
  font-size: 18px;
  margin-top: 30px;
}

@media (max-width: 1500px) {
  section.principles .prin-wrap h3 {
    line-height: 32px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  section.principles .prin-wrap h3 {
    line-height: 17px;
    font-size: 14px;
  }
}

section.principles .prin-wrap .prin {
  margin-bottom: 70px;
}

section.principles .prin-wrap .prin:last-of-type {
  margin-bottom: 0 !important;
}

@media (max-width: 1500px) {
  section.principles .prin-wrap .prin {
    margin-bottom: 50px;
  }
}

@media (max-width: 768px) {
  section.principles .prin-wrap .prin {
    margin-bottom: 40px;
  }
}

@media (max-width: 1500px) {
  section.principles .prin-wrap .prin .ico-wrap {
    height: 35px;
  }

  section.principles .prin-wrap .prin .ico-wrap img {
    max-height: 100%;
  }
}

section.principles .prin-wrap .icon-wrap {
  margin: auto;
  height: 51px;
  text-align: center;
}

@media (max-width: 1500px) {
  section.principles .prin-wrap .icon-wrap {
    height: 30px;
  }

  section.principles .prin-wrap .icon-wrap img {
    max-height: 100%;
  }
}

@media (max-width: 768px) {
  section.principles .prin-wrap .icon-wrap {
    height: 20px;
  }
}

section.principles .prin-wrap .short-desc {
  line-height: 25px;
  font-size: 15px;
  text-align: center;
  color: #8691A0;
  max-width: 322px;
  margin: auto;
}

@media (max-width: 1500px) {
  section.principles .prin-wrap .short-desc {
    line-height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  section.principles .prin-wrap .short-desc {
    line-height: 22px;
    font-size: 13px;
  }
}

.culture-wrap {
  max-height: 700px;
}

@media (max-width: 1500px) {
  .culture-wrap {
    max-height: 600px;
  }

  .culture-wrap .no-max {
    max-width: 800px;
  }
}

@media (max-width: 992px) {
  .culture-wrap {
    max-height: initial;
  }
}

@media (max-width: 992px) and (max-width: 1500px) {
  .culture-wrap.block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 992px) and (max-width: 768px) {
  .culture-wrap.block {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

@media (max-width: 992px) {
  .culture-wrap .no-max {
    max-width: 100%;
    margin-top: 30px;
  }
}

.culture-wrap .culture-dets {
  padding-top: 80px;
  padding-right: 130px;
}

@media (max-width: 992px) {
  .culture-wrap .culture-dets {
    padding: 0;
  }
}

.culture-wrap .culture-dets .short-desc {
  margin-bottom: 0;
}

.culture-wrap h3 {
  margin-bottom: 30px;
}

.perks {
  padding-bottom: 100px;
}

@media (max-width: 1500px) {
  .perks {
    padding-bottom: 65px;
  }
}

section.investor-wrap {
  padding-top: 279px;
}

@media (max-width: 1500px) {
  section.investor-wrap {
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  section.investor-wrap {
    padding-top: 55px;
  }
}

section.investor-wrap .invest {
  width: 15.5%;
  padding: 39px 0;
}

section.investor-wrap .invest img {
  max-width: 66%;
}

@media (max-width: 992px) {
  section.investor-wrap .invest {
    width: 33%;
  }
}

@media (max-width: 992px) {
  section.investor-wrap .invest {
    width: 50%;
  }
}

.about-cta {
  padding-bottom: 200px;
  padding-top: 200px;
}

@media (max-width: 1500px) {
  .about-cta {
    padding-bottom: 150px !important;
  }
}

@media (max-width: 992px) {
  .about-cta {
    padding-bottom: 100px  !important;
  }

  .about-cta .short-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .about-cta {
    padding-bottom: 65px  !important;
  }
}

section.faq-wrapper.faq-search {
  margin-top: 70px;
}

section.faq-wrapper .show-cats {
  position: absolute;
  right: -20px;
  -webkit-transform: translate(100%, -50%);
       -o-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  top: 50%;
  font-size: 13px;
  color: #1c8195;
  font-weight: 600;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

section.faq-wrapper .show-cats.go {
  opacity: 1;
}

section.faq-wrapper .card.no-show {
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

section.faq-wrapper .search-wrap {
  width: 657px;
  max-width: 100%;
  margin: auto;
}

section.faq-wrapper input[type="text"] {
  border-top: 2px solid #EDEFFD;
  border-left: 2px solid #EDEFFD;
  border-bottom: 2px solid #EDEFFD;
  border-right: none;
  padding: 0 25px;
  line-height: 27px;
  font-size: 14px;
}

section.faq-wrapper input[type="submit"] {
  background: #57C594;
  color: #fff;
  padding: 20px 28px;
  text-transform: uppercase;
  font-weight: 700;
}

section.faq-wrapper .cat-wrap {
  margin-top: 100px;
  margin-bottom: 100px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1500px) {
  section.faq-wrapper .cat-wrap {
    margin-top: 65px;
    margin-bottom: 65px;
  }
}

@media (max-width: 768px) {
  section.faq-wrapper .cat-wrap {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

section.faq-wrapper .cat-wrap.searching {
  margin-bottom: 0;
}

section.faq-wrapper .cat-wrap ul {
  padding-left: 0;
  margin-bottom: 0;
}

section.faq-wrapper .cat-wrap ul li {
  list-style: none;
}

section.faq-wrapper .cat-wrap ul li a {
  color: #0F233F;
  font-weight: 700;
  line-height: normal;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 17px;
}

@media (max-width: 1500px) {
  section.faq-wrapper .cat-wrap ul li a {
    font-size: 13px;
    padding-bottom: 14px;
  }
}

@media (max-width: 768px) {
  section.faq-wrapper .cat-wrap ul li a {
    font-size: 11px;
    padding-bottom: 12px;
  }
}

section.faq-wrapper .cat-wrap ul li a .under-line {
  position: absolute;
  bottom: -3px;
  height: 3px;
  width: 0;
  background: #1c8195;
  left: 50%;
  -webkit-transform: translate(-50%);
       -o-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

section.faq-wrapper .cat-wrap ul li a:hover,
section.faq-wrapper .cat-wrap ul li a.active {
  text-decoration: none;
}

section.faq-wrapper .cat-wrap ul li a:hover .under-line,
section.faq-wrapper .cat-wrap ul li a.active .under-line {
  width: 66px;
}

.no-results {
  padding-left: 0;
  font-weight: 300;
  line-height: 42px;
  font-size: 22px;
  color: #0F233F;
  width: 100%;
  text-align: center;
  text-transform: initial;
}

section.case-alt {
  position: relative;
  padding-bottom: 200px;
  margin-top: 100px;
}

section.case-alt .dots {
  background-image: url(/wp-content/themes/bread/dist/images/consumer/case-dots.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

section.case-alt .case-slider {
  margin: auto;
  width: 1061px;
  max-width: 100%;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.1);
          box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.1);
  position: relative;
}

section.case-alt .case-cont {
  background: none;
  padding-left: 93px;
  left: initial;
  position: relative;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
  top: initial;
  padding-right: 93px;
}

section.case-alt .case-cont .test {
  -webkit-line-clamp: 6;
}

@media (max-width: 1500px) {
  .how-works {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}

.how-works .highlight-img {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.how-works .work-wrap header {
  padding-left: 50px;
}

.how-works .work-wrap .highlights ul li {
  cursor: pointer;
  border-left: 3px solid #fff;
  padding: 36px 50px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.how-works .work-wrap .highlights ul li .short-desc {
  margin-bottom: 0;
  margin-right: 0;
  width: 100%;
}

.how-works .work-wrap .highlights ul li:hover {
  background: #F8F9FE;
  border-color: #F8F9FE;
}

.how-works .work-wrap .highlights ul li.active {
  background: #FFF;
  -webkit-box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
          box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
  border-color: #1c8195;
}

.disclaimer,
.disclaimer--tabs {
  line-height: 20px;
  color: #8691A0;
  margin-bottom: 80px;
  font-size: 13px;
}

.disclaimer--tabs {
  width: 600px;
  max-width: 100%;
  position: absolute;
  bottom: -133px;
  text-align: left !important;
  left: 13%;
}

@media (max-width: 1100px) {
  .disclaimer--tabs {
    width: 480px;
  }
}

@media (max-width: 992px) {
  .disclaimer--tabs {
    width: 500px;
    position: relative;
    bottom: 0;
    left: 0px;
  }
}

.prcing-outer .blue-box {
  background: #1c8195;
  color: #fff;
  padding: 46px 32px 0;
}

@media (max-width: 1400px) {
  .prcing-outer .blue-box {
    padding: 0;
  }
}

@media (max-width: 1200px) {
  .prcing-outer .blue-box {
    padding: 0;
    text-align: center;
  }
}

@media (max-width: 1400px) {
  .prcing-outer .blue-box .b-header {
    padding: 46px 32px 0px;
  }
}

@media (max-width: 1200px) {
  .prcing-outer .blue-box .b-header .no-pad-left {
    margin-bottom: 30px;
  }
}

@media (max-width: 1400px) {
  .prcing-outer .pricing-table {
    background: #fff;
    margin-top: 50px;
  }
}

@media (max-width: 1200px) {
  .prcing-outer .pricing-table {
    margin-top: 65px;
  }
}

.prcing-outer .grey-bg {
  background: #F8F9FE;
  color: #1c8195;
  font-size: 26px;
  width: 30%;
}

@media (max-width: 992px) {
  .prcing-outer .grey-bg {
    font-size: 19px;
  }
}

.prcing-outer .w-20 {
  width: 20%;
}

.prcing-outer .no-pad-left {
  padding-left: 0;
}

.prcing-outer table {
  background: #fff;
  text-align: center;
  position: absolute;
  right: 0px;
  width: 668px;
  text-align: center;
  line-height: normal;
  font-size: 18px;
  top: 140px;
  -webkit-box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.1);
          box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.1);
}

@media (max-width: 1560px) {
  .prcing-outer table {
    width: 620px;
  }
}

@media (max-width: 1500px) {
  .prcing-outer table {
    font-size: 16px;
    width: 550px;
  }
}

@media (max-width: 1400px) {
  .prcing-outer table {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
}

@media (max-width: 768px) {
  .prcing-outer table {
    font-size: 13px;
  }
}

.prcing-outer table .term-mobile {
  display: none;
  border: none !important;
  font-weight: 800;
  line-height: 21px !important;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  color: #0F233F !important;
  text-transform: uppercase;
  padding-bottom: 0px;
}

@media (max-width: 1400px) {
  .prcing-outer table .term-mobile {
    display: block;
  }
}

.prcing-outer table thead th {
  border: none !important;
  font-weight: 800;
  line-height: 21px !important;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  color: #0F233F !important;
  text-transform: uppercase;
  padding-bottom: 15px;
}

.prcing-outer table td,
.prcing-outer table th {
  border-top: 1px dotted rgba(114, 124, 137, 0.3);
}

.prcing-outer table .faux td,
.prcing-outer table .faux th,
.prcing-outer table .month-6 td,
.prcing-outer table .month-6 th {
  border-top: none;
}

.prcing-outer table th,
.prcing-outer table td {
  padding: 20px 10px;
}

.prcing-outer .price-months {
  margin-top: 120px;
}

@media (max-width: 1400px) {
  .prcing-outer .price-months {
    display: none;
  }
}

.prcing-outer .price-months .sm-title {
  font-weight: 800;
  line-height: 21px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 46px;
}

.prcing-outer .price-months .sm-title:last-of-type {
  padding-bottom: 30px;
}

@media (max-width: 1500px) {
  .price-disclaimer {
    bottom: 40px;
  }
}

@media (max-width: 1400px) {
  .price-disclaimer {
    bottom: -30px;
  }
}

@media (max-width: 1200px) {
  .price-disclaimer {
    position: relative;
  }
}

.sec-img-wrap .rangeslider {
  background: #fff;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sec-img-wrap .rangeslider__fill {
  background: #57C594;
}

.sec-img-wrap .rangeslider--horizontal {
  height: 6px;
}

.sec-img-wrap .rangeslider__handle {
  width: 24px;
  height: 24px;
  border: none;
  background: #fff !important;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.sec-img-wrap .rangeslider__handle:after {
  display: none;
}

.sec-img-wrap output {
  position: absolute;
  background: #fff;
  font-weight: 300;
  line-height: normal;
  font-size: 18px;
  text-align: center;
  color: #0F233F;
  padding: 5px 11px;
  -webkit-transform: translate(-50%, 18px);
       -o-transform: translate(-50%, 18px);
          transform: translate(-50%, 18px);
  left: 0;
  margin-left: 27px;
  -webkit-box-shadow: 0px 10px 26px rgba(15, 35, 63, 0.25);
          box-shadow: 0px 10px 26px rgba(15, 35, 63, 0.25);
}

.legal-content,
.note-section,
.list-section {
  margin-bottom: 70px;
}

.legal-content h4,
.note-section h4,
.list-section h4 {
  font-weight: 300;
  line-height: 42px;
  font-size: 27px;
  margin-bottom: 30px;
}

.legal-content p,
.legal-content h6,
.note-section p,
.note-section h6,
.list-section p,
.list-section h6 {
  color: #8691A0;
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 27px;
  font-size: 17px;
  margin-bottom: 35px;
}

@media (max-width: 1500px) {
  .legal-content p,
  .legal-content h6,
  .note-section p,
  .note-section h6,
  .list-section p,
  .list-section h6 {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .legal-content p,
  .legal-content h6,
  .note-section p,
  .note-section h6,
  .list-section p,
  .list-section h6 {
    line-height: 22px;
    font-size: 12px;
    margin-bottom: 30px;
  }
}

.legal-content p:last-of-type,
.legal-content h6:last-of-type,
.note-section p:last-of-type,
.note-section h6:last-of-type,
.list-section p:last-of-type,
.list-section h6:last-of-type {
  margin-bottom: 0;
}

.legal-content h6,
.note-section h6,
.list-section h6 {
  margin-bottom: 25px;
}

.legal-content h6:last-of-type,
.note-section h6:last-of-type,
.list-section h6:last-of-type {
  margin-bottom: 25px;
}

.legal-sections {
  margin-top: 100px;
  margin-bottom: 130px;
}

.note-section h3 {
  font-weight: 300;
  line-height: 42px;
  font-size: 27px;
  color: #0F233F;
  margin-bottom: 35px;
}

.note-section .note-wrap {
  background: #F8F9FE;
  padding: 30px 45px 30px 50px;
  line-height: 25px;
  font-size: 15px;
  color: #0F233F;
  position: relative;
  margin-left: 32px;
}

.note-section .note-wrap:after,
.note-section .note-wrap:before {
  right: 100%;
  top: 35px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.note-section .note-wrap:after {
  border-right-color: #F8F9FE;
  border-width: 17px;
}

.note-section .note-wrap:before {
  border-color: rgba(194, 225, 245, 0);
  border-right-color: #F8F9FE;
}

.table-bordered {
  border: 2px solid #EDEFFD;
}

.table-bordered thead th,
.table-bordered thead td {
  vertical-align: middle;
  padding: 30px 20px;
  min-width: 170px;
  background: rgba(237, 239, 253, 0.4);
  font-weight: normal;
  color: #0F233F;
}

.table-bordered thead th:first-of-type,
.table-bordered thead td:first-of-type {
  padding-left: 45px;
  padding-right: 45px;
}

.table th,
.table td {
  padding: 30px 45px;
  vertical-align: middle;
  color: #8691A0;
  font-family: "Nunito Sans", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 27px;
  font-size: 17px;
  margin-bottom: 35px;
}

@media (max-width: 1500px) {
  .table th,
  .table td {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .table th,
  .table td {
    line-height: 22px;
    font-size: 12px;
    margin-bottom: 30px;
  }
}

tr th .d-flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

tr th:first-of-type .d-flex {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-align: left;
}

.list-section .list-wrap {
  border-top: 2px solid #EDEFFD;
  border-left: 2px solid #EDEFFD;
  border-right: 2px solid #EDEFFD;
}

.list-section .list-wrap .list-item {
  border-bottom: 2px solid #EDEFFD;
}

.list-section .list-wrap .question {
  width: 184px;
  background: rgba(237, 239, 253, 0.4);
  border-right: 2px solid #EDEFFD;
  color: #0F233F;
}

.list-section .list-wrap .answer {
  padding: 50px 70px;
}

.list-section .list-wrap .answer ul {
  padding-left: 20px;
  margin-bottom: 35px;
}

.list-section .list-wrap .answer ul li {
  margin-bottom: 15px;
}

.list-section .list-wrap .answer ul li:last-of-type {
  margin-bottom: 0;
}

.form-wrap .support-sub {
  font-weight: 300;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 1500px) {
  .form-wrap .support-sub {
    line-height: 26px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .form-wrap .support-sub {
    line-height: 23px;
    font-size: 13px;
  }
}

.form-wrap .footnote {
  background: #FAFAFA;
  padding: 48px;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .form-wrap .footnote {
    padding: 38px;
    line-height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .form-wrap .footnote {
    line-height: 22px;
    padding: 30px;
    font-size: 13px;
  }
}

.form-wrap .footnote p:last-of-type {
  margin-bottom: 0;
}

.form-wrap .footnote a {
  text-decoration: underline;
  color: #1c8195;
}

.support-wrap {
  border-right: 1px solid #F8F9FE;
  padding: 90px 45px;
}

@media (max-width: 1500px) {
  .support-wrap {
    padding: 60px 45px;
  }
}

@media (max-width: 992px) {
  .support-wrap {
    width: 100%;
    padding: 30px 20px;
    border-right: none;
    border-bottom: 1px solid #F8F9FE;
  }
}

.md-50 {
  width: 50%;
}

@media (max-width: 992px) {
  .md-50 {
    width: 100%;
  }
}

.support-details {
  padding: 0px !important;
}

.support-details .icon-wrap {
  min-width: 62px;
  margin-right: 25px;
}

@media (max-width: 992px) {
  .support-details .icon-wrap {
    min-width: 40px;
  }
}

.support-details h4 {
  font-weight: 600;
  line-height: 42px;
  font-size: 20px;
  color: #0F233F;
  margin-bottom: 0;
}

@media (max-width: 1500px) {
  .support-details h4 {
    line-height: 30px;
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .support-details h4 {
    line-height: 28px;
    font-size: 13px;
  }
}

.support-details .cont {
  font-size: 27px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .support-details .cont {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .support-details .cont {
    font-size: 18px;
  }
}

.support-details .cont a {
  color: #0F233F;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

section.gallery {
  margin-top: 100px;
}

section.gallery .row {
  margin-left: -27px;
  margin-right: -27px;
}

@media (max-width: 1500px) {
  section.gallery .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}

@media (max-width: 992px) {
  section.gallery .row {
    margin-left: -8px;
    margin-right: -8px;
  }
}

section.gallery .col-4,
section.gallery .col-8 {
  padding-right: 27px;
  padding-left: 27px;
}

@media (max-width: 1500px) {
  section.gallery .col-4,
  section.gallery .col-8 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  section.gallery .col-4,
  section.gallery .col-8 {
    padding-left: 8px;
    padding-right: 8px;
  }
}

section.gallery .top-row .gal-img {
  margin-bottom: 55px;
}

@media (max-width: 1500px) {
  section.gallery .top-row .gal-img {
    margin-bottom: 40px;
  }
}

@media (max-width: 992px) {
  section.gallery .top-row .gal-img {
    margin-bottom: 30px;
  }
}

.testimonials {
  margin-bottom: 200px;
}

@media (max-width: 1500px) {
  .testimonials {
    margin-bottom: 150px !important;
  }
}

@media (max-width: 992px) {
  .testimonials {
    margin-bottom: 100px  !important;
  }
}

@media (max-width: 768px) {
  .testimonials {
    margin-bottom: 65px  !important;
  }
}

.testimonials .sec-header.sm-gap {
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .testimonials .sec-header.sm-gap {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .testimonials .sec-header.sm-gap {
    margin-bottom: 20px;
  }
}

.testimonials .test-outer .testimony {
  text-align: center;
  font-style: italic;
  font-weight: 300;
  line-height: 25px;
  font-size: 15px;
  text-align: center;
  margin-bottom: 18px;
}

.testimonials .test-outer .white-bg {
  background: #FFFFFF;
  padding: 30px 45px;
  opacity: 0;
  -webkit-transition: all 0.4 ease;
  -o-transition: all 0.4 ease;
  transition: all 0.4 ease;
  -webkit-box-shadow: 0px 10px 25px rgba(71, 94, 237, 0.1);
          box-shadow: 0px 10px 25px rgba(71, 94, 237, 0.1);
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #000;
}

.testimonials .test-outer.slick-active .white-bg {
  position: relative;
  z-index: 9;
  opacity: 0.6;
}

@media (max-width: 1100px) {
  .testimonials .test-outer.slick-active .white-bg {
    opacity: 1;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}

.testimonials .test-outer.slick-center .white-bg {
  padding: 60px 45px;
  opacity: 1;
  margin-top: -30px;
  -webkit-transform: scale(1.08);
       -o-transform: scale(1.08);
          transform: scale(1.08);
  position: relative;
  z-index: 10;
  -webkit-transition: all 0.4 ease;
  -o-transition: all 0.4 ease;
  transition: all 0.4 ease;
  -webkit-box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.1);
          box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.1);
}

.testimonials .slick-list {
  overflow: hidden;
  padding: 50px 50px 100px !important;
}

@media (max-width: 1100px) {
  .testimonials .slick-list {
    margin-left: -50px;
    margin-right: -50px;
    padding-top: 0 !important;
  }
}

.testimonials .circ {
  margin-right: 21px;
  border-radius: 100%;
}

.testimonials .test-name {
  font-weight: 300;
  line-height: 18px;
  font-size: 15px;
  color: #000;
}

.testimonials .test-title {
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  font-size: 12px;
  color: #000;
}

.slick-dots {
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
  margin-top: -43px;
}

.slick-dots li {
  margin: 0 3px;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  list-style: none;
  background: #57C594;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  vertical-align: middle;
}

.slick-dots li button,
.slick-dots li .form .mktoButton,
.form .slick-dots li .mktoButton {
  display: none;
}

.slick-dots li.slick-active {
  background: #fff;
  border: 5px solid #CBECDF;
  width: 16px;
  height: 16px;
}

section.contact-landing {
  margin-top: 300px;
  background: rgba(237, 239, 253, 0.4);
  padding-bottom: 200px;
}

@media (max-width: 1500px) {
  section.contact-landing {
    padding-bottom: 100px;
    margin-top: 250px;
  }
}

@media (max-width: 992px) {
  section.contact-landing {
    padding-bottom: 65px;
    margin-top: 250px;
  }
}

@media (max-width: 768px) {
  section.contact-landing {
    margin-top: 200px;
  }
}

section.contact-landing a.box:hover,
section.contact-landing a.box:focus {
  text-decoration: none;
}

section.contact-landing a.box:hover .white-bg,
section.contact-landing a.box:focus .white-bg {
  -webkit-transform: scale(1.03);
       -o-transform: scale(1.03);
          transform: scale(1.03);
}

section.contact-landing .col-md-6 {
  -webkit-transform: translate(0, -120px);
       -o-transform: translate(0, -120px);
          transform: translate(0, -120px);
}

@media (max-width: 768px) {
  section.contact-landing .col-md-6 {
    margin-bottom: 65px;
  }

  section.contact-landing .col-md-6:last-of-type {
    margin-bottom: 0;
  }
}

section.contact-landing .white-bg {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
  box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
  text-align: center;
  padding: 65px 80px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  height: auto;
}

@media (max-width: 992px) {
  section.contact-landing .white-bg {
    padding: 65px 50px;
  }
}

@media (max-width: 768px) {
  section.contact-landing .white-bg {
    padding: 40px 20px;
  }
}

section.contact-landing .white-bg .icon-wrap {
  height: 166px;
  margin-bottom: 43px;
}

section.contact-landing .white-bg h3 {
  font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: normal;
    font-size: 24px;
    text-align: center;
    color: #333333;
}

/*@media (max-width: 1500px) {
  section.contact-landing .white-bg h3 {
    line-height: 42px;
    font-size: 25px;
  }
}*/

@media (max-width: 992px) {
  section.contact-landing .white-bg h3 {
    line-height: 26px;
    font-size: 20px;
  }
}

section.contact-landing .white-bg .short-desc {
  font-weight: normal;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  color: #000000;
  margin-bottom: 0 !important;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1500px) {
  section.contact-landing .white-bg .short-desc {
    line-height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  section.contact-landing .white-bg .short-desc {
    line-height: 22px;
    font-size: 13px;
  }
}

section.contact-landing .notes {
  margin-top: -62px;
  line-height: 30px;
  font-size: 20px;
  text-align: center;
  color: #0F233F;
  position: relative;
/*  z-index: 1000;*/
}

section.contact-landing .notes a {
  text-decoration: underline;
  color: #1C8195;
}

@media (max-width: 1500px) {
  section.contact-landing .notes {
    line-height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  section.contact-landing .notes {
    line-height: 22px;
    font-size: 13px;
  }
}

section.contact-landing .notes p:last-of-type {
  margin-bottom: 0;
}

section.form-landing {
  margin-top: 190px;
}

.form-wrap {
  -webkit-transform: translate(0, -120px);
       -o-transform: translate(0, -120px);
          transform: translate(0, -120px);
}

.form-wrap header {
  background: #1C8195;
  color: #fff;
  text-align: center;
  font-weight: 300;
  line-height: 42px;
  font-size: 35px;
  padding: 36px;
}

@media (max-width: 1500px) {
  .form-wrap header {
    line-height: 32px;
    font-size: 25px;
    padding: 25px;
  }
}

@media (max-width: 992px) {
  .form-wrap header {
    line-height: 27px;
    font-size: 20px;
    padding: 15px 45px;
  }
}

.form-wrap .form {
  background: #fff;
  padding: 46px 90px;
}

@media (max-width: 1500px) {
  .form-wrap .form {
    padding: 60px 45px;
  }
}

@media (max-width: 992px) {
  .form-wrap .form {
    padding: 30px 20px;
  }
}

.hbspt-form fieldset {
  max-width: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hbspt-form fieldset .hs-form-field {
  position: relative;
  min-height: 2em;
}

.hbspt-form fieldset .hs-form-field .hs-error-msgs {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.hbspt-form fieldset .hs-form-field input {
  font-size: 1em;
  line-height: 1.2em;
  width: 100% !important;
}

.hbspt-form fieldset .hs-form-field select {
  width: 100% !important;
  background: none;
  border: 2px solid #EDEFFD;
  border-radius: 0 !important;
  padding: 21px;
  height: 64px;
  font-size: 1em;
  margin: 0;
  color: #8691A0;
}

@media (min-width: 992px) {
  .hbspt-form fieldset.form-columns-2 .hs-form-field {
    float: left;
    width: 50% !important;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.hbspt-form .hs-submit {
  text-align: right;
}

.hbspt-form .hs-submit input.hs-button {
  cursor: pointer;
  text-transform: uppercase;
  padding: 13px 19px;
  line-height: 15px;
  font-size: 14px;
  border-radius: 0;
  font-weight: 700;
  width: auto !important;
  color: #FFF;
  background: #57C594;
  border: 0;
}

.hbspt-form .hs-submit input.hs-button:hover {
  background: rgba(87, 197, 148, 0.8);
}

.field {
  max-width: 100%;
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.full-img {
  margin-top: 96px;
}

@media (max-width: 992px) {
  .full-img {
    margin-top: 65px;
  }
}

.main-features {
  margin-top: 139px;
}

@media (max-width: 992px) {
  .main-features {
    margin-top: 65px;
  }
}

.main-features .short-desc {
  min-height: 54px;
}

.main-features .highlights {
  margin-bottom: 100px;
}

@media (max-width: 1500px) {
  .main-features .highlights {
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .main-features .highlights {
    margin-bottom: 65px;
  }
}

.main-features .highlight-desc .short-desc {
  margin-bottom: 28px;
  width: 100%;
}

.high-wrap {
  background-image: url(/wp-content/themes/bread/dist/images/business/dots.png);
  background-position: center center;
  background-size: 90%;
  background-repeat: no-repeat;
  background-color: #F8F9FE;
  margin-top: 200px;
  padding-bottom: 104px;
}

@media (max-width: 1500px) {
  .high-wrap {
    margin-top: 150px;
  }
}

@media (max-width: 992px) {
  .high-wrap {
    margin-bottom: 0;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .high-wrap {
    padding-top: 65px;
    padding-bottom: 65px;
    margin-top: 0;
  }
}

.high-wrap .row {
  margin-left: -37px;
  margin-right: -37px;
}

@media (max-width: 1300px) {
  .high-wrap .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}

.high-wrap .col-lg-4 {
  padding-left: 37px;
  padding-right: 37px;
}

@media (max-width: 1300px) {
  .high-wrap .col-lg-4 {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 992px) {
  .high-wrap .col-lg-4 {
    margin: 0 auto 65px;
    height: 100%;
  }

  .high-wrap .col-lg-4:last-of-type {
    margin-bottom: 0;
  }
}

.high-wrap .white-box {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 16px 64px rgba(71, 94, 237, 0.15);
          box-shadow: 0px 16px 64px rgba(71, 94, 237, 0.15);
  max-width: 412px;
  margin-top: -72px;
  padding: 52px 20px;
  height: 121%;
}

@media (max-width: 992px) {
  .high-wrap .white-box {
    height: 100%;
    margin: auto;
  }
}

.high-wrap .white-box .icon-wrap {
  height: 66px;
}

.high-wrap .white-box .icon-wrap img {
  max-height: 100%;
}

@media (max-width: 1500px) {
  .high-wrap .white-box .icon-wrap {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .high-wrap .white-box .icon-wrap {
    height: 40px;
  }
}

.high-wrap .white-box h3 {
  line-height: 34px;
  font-size: 18px;
  text-align: center;
  font-weight: normal;
  margin-top: 36px;
  margin-bottom: 5px;
}

@media (max-width: 1200px) {
  .high-wrap .white-box h3 {
    line-height: 32px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .high-wrap .white-box h3 {
    line-height: 30px;
    font-size: 14px;
  }
}

.high-wrap .white-box .short-desc {
  line-height: 25px;
  font-size: 15px;
  color: #8691A0;
  margin-bottom: 0;
  min-height: 100px;
}

@media (max-width: 1200px) {
  .high-wrap .white-box .short-desc {
    line-height: 23px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .high-wrap .white-box .short-desc {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.high-wrap .white-box a {
  font-size: 15px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.integration-wrap .int-wrap {
  margin-bottom: 100px;
}

@media (max-width: 1500px) {
  .integration-wrap .int-wrap {
    margin-bottom: 50px;
  }

  .integration-wrap .int-wrap img {
    max-width: 100px;
  }
}

.cust-wrap {
  margin-top: 137px;
}

@media (max-width: 992px) {
  .cust-wrap {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .cust-wrap {
    margin-top: 65px;
  }
}

@media (max-width: 992px) {
  .cust-wrap .service-wrap.img-gap {
    margin-bottom: 100px !important;
  }
}

@media (max-width: 768px) {
  .cust-wrap .service-wrap.img-gap {
    margin-bottom: 65px !important;
  }
}

.cust-wrap .service-wrap.img-gap .ord-1 div {
  margin-left: 80px;
}

@media (max-width: 992px) {
  .cust-wrap .service-wrap.img-gap .ord-1 div {
    margin-left: auto;
  }
}

.cust-wrap .service-wrap.img-gap .ord-0 div {
  margin-right: 80px;
}

@media (max-width: 992px) {
  .cust-wrap .service-wrap.img-gap .ord-0 div {
    margin-right: auto;
  }
}

.omni-integrations {
  margin-bottom: 200px;
}

@media (max-width: 1500px) {
  .omni-integrations {
    margin-bottom: 150px !important;
  }
}

@media (max-width: 992px) {
  .omni-integrations {
    margin-bottom: 100px  !important;
  }
}

@media (max-width: 768px) {
  .omni-integrations {
    margin-bottom: 65px  !important;
  }
}

.service-wrap .highlight:last-of-type .short-desc,
.omni-integrations .highlight:last-of-type .short-desc {
  margin-bottom: 0;
}

.service-wrap {
  margin-bottom: 200px;
}

@media (max-width: 1500px) {
  .service-wrap {
    margin-bottom: 150px !important;
  }
}

@media (max-width: 992px) {
  .service-wrap {
    margin-bottom: 0 !important;
  }
}

.real-time-block .over-show img {
  max-width: initial;
  margin-top: -50px;
  position: relative;
  margin-left: 50px;
  max-width: initial;
}

@media (max-width: 1500px) {
  .real-time-block .over-show img {
    max-width: 800px;
  }
}

@media (max-width: 992px) {
  .real-time-block .over-show img {
    position: relative;
    margin: auto;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  section.experience .sec-wrap-img img.no-max {
    max-width: 100%;
  }
}

.channels {
  padding: 100px 0;
  background-image: url(/wp-content/themes/bread/dist/images/business/omni/dots.png);
}

@media (max-width: 992px) {
  .channels {
    padding: 65px 0;
    margin-top: 100px;
  }
}

.channels header {
  margin-bottom: 60px;
}

.channels header h3 {
  margin-bottom: 19px;
}

.channels header .short-desc {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.channels .high-box {
  margin-top: 0;
  height: 100%;
}

.channels .high-box.white-box .icon-wrap {
  height: 33px;
}

.channels .high-box.white-box .short-desc {
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

@media (max-width: 1500px) {
  .channels .high-box.white-box .short-desc {
    line-height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .channels .high-box.white-box .short-desc {
    line-height: 22px;
    font-size: 13px;
  }
}

section.experience .img-ab {
  position: absolute;
  top: 0;
  right: 0;
}

section.plat-int .sec-header {
  margin-bottom: 37px;
}

section.plat-int .sec-header h2 {
  margin-bottom: 0;
}

section.plat-int .row {
  margin-left: -37px;
  margin-right: -37px;
}

@media (max-width: 1500px) {
  section.plat-int .row {
    margin-left: -20px;
    margin-right: -20px;
  }
}

section.plat-int .int-grid {
  padding-right: 37px;
  padding-left: 37px;
  margin-bottom: 74px;
  width: 33%;
}

@media (max-width: 1500px) {
  section.plat-int .int-grid {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
  }
}

@media (max-width: 1300px) {
  section.plat-int .int-grid {
    width: 50%;
  }
}

@media (max-width: 992px) {
  section.plat-int .int-grid {
    width: 100%;
  }
}

section.plat-int .int-wrapper {
  border: 1px solid #C4C4C4;
  padding: 60px 55px 25px;
  margin-top: 37px;
  height: 100%;
}

section.plat-int .int-wrapper .short-desc {
  margin-bottom: 0;
  line-height: 25px;
  font-size: 15px;
  color: #8691A0;
}

section.plat-int .int-wrapper img {
  margin-bottom: 55px;
  max-height: 40px;
}

section.plat-int .int-wrapper h5 {
  font-weight: normal;
  line-height: 34px;
  font-size: 18px;
  margin-bottom: 5px;
  color: #333333;
}

.more-docs {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 1500px) {
  .more-docs {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .more-docs {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

.more-docs .sec-header {
  margin-bottom: 0;
}

.more-docs .cta {
  margin-top: 60px;
}

section.resource-sec {
  padding-bottom: 200px;
}

@media (max-width: 1500px) {
  section.resource-sec {
    padding-bottom: 100px;
  }
}

@media (max-width: 992px) {
  section.resource-sec {
    padding-bottom: 65px;
  }
}

section.resource-sec .white-shadow {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.1);
          box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.1);
  margin-bottom: 75px;
}

section.resource-sec .featured-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

section.resource-sec .excerpt-wrap {
  padding: 76px 112px 76px 86px;
}

section.resource-sec .excerpt-wrap .short-desc {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 1500px) {
  section.resource-sec .excerpt-wrap .short-desc {
    line-height: 24px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  section.resource-sec .excerpt-wrap .short-desc {
    line-height: 22px;
  }
}

@media (max-width: 1500px) {
  section.resource-sec .excerpt-wrap {
    padding: 50px 50px 50px 50px;
  }
}

@media (max-width: 992px) {
  section.resource-sec .excerpt-wrap {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  section.resource-sec .excerpt-wrap {
    padding: 30px 20px;
  }
}

section.resource-sec .row.sm-row {
  margin-left: -25px;
  margin-right: -25px;
}

@media (max-width: 1500px) {
  section.resource-sec .row.sm-row {
    margin-left: -15px;
    margin-right: -15px;
  }
}

section.resource-sec .row.sm-row .col-md-4 {
  padding-right: 25px;
  padding-left: 25px;
}

@media (max-width: 1500px) {
  section.resource-sec .row.sm-row .col-md-4 {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 768px) {
  section.resource-sec .row.sm-row .col-md-4 {
    margin-bottom: 65px;
  }
}

section.resource-sec .row.sm-row .col-md-4:last-of-type {
  margin-bottom: 0;
}

section.resource-sec .row.sm-row .col-md-4 h3 {
  font-weight: 300;
  line-height: 33px;
  font-size: 23px;
  margin-top: 30px;
  color: #0F233F;
  margin-bottom: 15px;
}

@media (max-width: 1500px) {
  section.resource-sec .row.sm-row .col-md-4 h3 {
    line-height: 25px;
    font-size: 16px;
  }
}

section.resource-sec .row.sm-row .col-md-4 .short-desc {
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

section.resource-sec .tabbed-box {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
          box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
  height: 100%;
}

section.resource-sec .nav-tabs .nav-link.active,
section.resource-sec .nav-tabs .banner .nav a.active,
.banner .nav section.resource-sec .nav-tabs a.active,
section.resource-sec .nav-tabs .banner .nav a.active,
section.resource-sec .banner .nav .nav-tabs a.active,
section.resource-sec .nav-tabs .nav-item.show .nav-link,
section.resource-sec .nav-tabs .banner .nav li.show .nav-link,
.banner .nav
  section.resource-sec .nav-tabs li.show .nav-link,
section.resource-sec .nav-tabs .nav-item.show .banner .nav a,
.banner .nav
  section.resource-sec .nav-tabs .nav-item.show a,
section.resource-sec .nav-tabs .banner .nav li.show a,
.banner .nav
  section.resource-sec .nav-tabs li.show a,
section.resource-sec .nav-tabs .banner .nav li.show .nav-link,
section.resource-sec .nav-tabs .banner .nav li.show a,
section.resource-sec .banner .nav .nav-tabs li.show .nav-link,
section.resource-sec .banner .nav .nav-tabs li.show a,
section.resource-sec .nav-tabs .nav-item.show .banner .nav a,
section.resource-sec .nav-tabs .banner .nav li.show .banner .nav a,
.banner .nav section.resource-sec .nav-tabs li.show .banner .nav a,
section.resource-sec .banner .nav .nav-tabs .nav-item.show a,
section.resource-sec .banner .nav .nav-tabs li.show a,
section.resource-sec .nav-tabs .banner .nav li.show a,
section.resource-sec .banner .nav .nav-tabs li.show a {
  border: none;
  border-radius: 0;
}

section.resource-sec .nav-tabs .nav-link:hover,
section.resource-sec .nav-tabs .banner .nav a:hover,
.banner .nav section.resource-sec .nav-tabs a:hover,
section.resource-sec .nav-tabs .banner .nav a:hover,
section.resource-sec .banner .nav .nav-tabs a:hover,
section.resource-sec .nav-tabs .nav-link:focus,
section.resource-sec .nav-tabs .banner .nav a:focus,
.banner .nav section.resource-sec .nav-tabs a:focus,
section.resource-sec .nav-tabs .banner .nav a:focus,
section.resource-sec .banner .nav .nav-tabs a:focus,
section.resource-sec .nav-tabs .nav-link,
section.resource-sec .nav-tabs .banner .nav a,
.banner .nav
  section.resource-sec .nav-tabs a,
section.resource-sec .nav-tabs .banner .nav a,
section.resource-sec .banner .nav .nav-tabs a {
  border-radius: 0;
  border: none;
}

section.resource-sec .nav-tabs {
  border: none;
}

section.resource-sec .nav-link,
section.resource-sec .banner .nav a,
.banner .nav section.resource-sec a {
  background: #F8F9FE;
  font-weight: 300;
  line-height: 45px;
  font-size: 17px;
  text-align: center;
  color: #0F233F;
  border-top: 3px solid #F8F9FE !important;
}

@media (max-width: 1500px) {
  section.resource-sec .nav-link,
  section.resource-sec .banner .nav a,
  .banner .nav section.resource-sec a {
    font-size: 14px;
  }
}

section.resource-sec .nav-link.active,
section.resource-sec .banner .nav a.active,
.banner .nav section.resource-sec a.active {
  background: #fff;
  border-top: 3px solid #1c8195 !important;
}

section.resource-sec .tab-content {
  padding: 56px;
}

@media (max-width: 1500px) {
  section.resource-sec .tab-content {
    padding: 34px;
  }
}

section.resource-sec .tab-content ul {
  padding: 0;
  margin: 0;
}

section.resource-sec .tab-content ul li {
  list-style: none;
  margin-bottom: 33px;
}

section.resource-sec .tab-content ul li:last-of-type {
  margin-bottom: 0;
}

section.resource-sec .tab-content ul li a {
  font-weight: 600;
  line-height: 27px;
  font-size: 17px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  section.resource-sec .tab-content ul li a {
    line-height: 20px;
    font-size: 13px;
  }
}

section.resource-sec .tab-content ul li a:hover {
  color: #1c8195;
  text-decoration: none;
}

.featured-post h2 {
  font-weight: 300;
  line-height: 45px;
  font-size: 35px;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (max-width: 1500px) {
  .featured-post h2 {
    line-height: 35px;
    font-size: 25px;
  }
}

@media (max-width: 992px) {
  .featured-post h2 {
    line-height: 26px;
    font-size: 20px;
  }
}

.featured-post .meta-desc {
  margin-bottom: 40px;
  margin-top: 20px;
  line-height: 27px;
  font-size: 15px;
}

@media (max-width: 1500px) {
  .featured-post .meta-desc {
    line-height: 27px;
    font-size: 13px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media (max-width: 992px) {
  .featured-post .meta-desc {
    line-height: 27px;
    font-size: 11px;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

.featured-post .short-desc {
  margin-bottom: 60px;
}

@media (max-width: 1500px) {
  .featured-post .short-desc {
    line-height: 27px;
    font-size: 13px;
    margin-bottom: 30px;
    max-width: 100% !important;
  }
}

@media (max-width: 992px) {
  .featured-post .short-desc {
    line-height: 27px;
    font-size: 11px;
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .featured-image {
    min-height: 200px;
    width: 100%;
    display: block;
  }
}

section.resource-case {
  background: #F8F9FE;
}

.ebook-sec .ebook-slider {
  overflow: hidden;
  padding-bottom: 100px;
  padding-top: 50px;
}

@media (max-width: 992px) {
  .ebook-sec .ebook-slider {
    padding-bottom: 65px;
    padding-top: 0;
  }
}

.ebook-sec .ebook-slider .slick-dots {
  margin-top: 0;
}

.ebook-sec .ebook-slider .slick-track {
  margin-left: auto;
  margin-right: auto;
}

.ebook-sec .ebook-slider h3 {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ebook-sec .ebook-slider a:hover {
  text-decoration: none;
}

.ebook-sec .show-desktop {
  display: block;
}

.ebook-sec .show-mobile {
  display: none;
}

@media (max-width: 1100px) {
  .ebook-sec .show-mobile {
    display: block;
  }
}

.ebook-sec .e-next,
.ebook-sec .e-prev {
  height: 100%;
  background: #FFF;
  position: absolute;
  top: 0;
  z-index: 1000;
  cursor: pointer;
}

.ebook-sec .e-next {
  padding-left: 58px;
  right: 0;
}

@media (max-width: 1560px) {
  .ebook-sec .e-next {
    padding-left: 27px;
  }
}

.ebook-sec .e-next svg {
  position: absolute;
  top: 238px;
  right: 0;
}

@media (max-width: 1200px) {
  .ebook-sec .e-next svg {
    top: 177px;
  }
}

@media (max-width: 992px) {
  .ebook-sec .e-next svg {
    top: 32%;
  }
}

.ebook-sec .e-prev {
  padding-right: 58px;
  left: 0;
}

@media (max-width: 1560px) {
  .ebook-sec .e-prev {
    padding-right: 27px;
  }
}

.ebook-sec .e-prev svg {
  position: absolute;
  top: 238px;
}

@media (max-width: 1200px) {
  .ebook-sec .e-prev svg {
    top: 177px;
  }
}

@media (max-width: 992px) {
  .ebook-sec .e-prev svg {
    top: 32%;
  }
}

.ebook-sec .e-slide {
  padding-left: 37px;
  padding-right: 37px;
}

.ebook-sec .e-slide img {
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 320px;
  margin: 0 auto 30px;
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%);
       -o-transform: translate(-50%);
          transform: translate(-50%);
}

.ebook-sec .e-slide.slick-center img {
  -webkit-transform: translate(-50%) scale(1.2);
       -o-transform: translate(-50%) scale(1.2);
          transform: translate(-50%) scale(1.2);
  -webkit-box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.15);
          box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.15);
}

.ebook-sec .e-slide.slick-center h3 {
  margin-top: 44px;
  margin-left: -7px;
}

.ebook-sec .e-slide.slick-center .e-wrap {
  max-width: 384px;
}

.ebook-sec .e-slide .e-wrap {
  max-width: 320px;
  margin: auto;
}

.ebook-sec h3 {
  font-weight: 300;
  line-height: 33px;
  font-size: 23px;
  color: #0F233F;
}

@media (max-width: 1560px) {
  .ebook-sec h3 {
    line-height: 27px;
    font-size: 18px;
  }
}

@media (max-width: 1100px) {
  .ebook-sec h3 {
    line-height: 25px;
    font-size: 16px;
  }
}

.ebook-sec .slick-dots {
  display: none !important;
}

.eblog-img {
  min-width: 242px;
  background-size: cover;
}

@media (max-width: 768px) {
  .eblog-img {
    display: none;
  }
}

.featured-e {
  position: relative;
  top: 50px;
}

@media (max-width: 992px) {
  .featured-e .bg-white {
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    top: 0;
  }
}

@media (max-width: 992px) {
  .featured-e .bg-white {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .featured-e .bg-white {
    max-width: 100%;
  }
}

.ebook-dets {
  padding-left: 135px;
}

@media (max-width: 1500px) {
  .ebook-dets {
    padding-left: 50px;
  }
}

@media (max-width: 992px) {
  .ebook-dets {
    padding-left: 0;
  }
}

.ebook-dets h2 {
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 45px;
  font-size: 35px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .ebook-dets h2 {
    line-height: 35px;
    font-size: 25px;
  }
}

@media (max-width: 992px) {
  .ebook-dets h2 {
    line-height: 26px;
    font-size: 20px;
  }
}

@media (max-width: 1500px) {
  .ebook-dets h2 {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .ebook-dets h2 {
    margin-bottom: 15px;
  }
}

.ebook-dets .desc {
  font-weight: normal;
  line-height: 27px;
  font-size: 17px;
  margin-bottom: 77px;
}

@media (max-width: 1500px) {
  .ebook-dets .desc {
    margin-bottom: 20px;
  }
}

.ebook-dets .ebook-form {
  -webkit-box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
          box-shadow: 0px 4px 24px rgb(0 0 0 / 25%);
}

.ebook-dets .e-header {
  background: #1C8195;
  color: #fff;
  font-weight: 300;
  line-height: 42px;
  font-size: 27px;
  padding: 25px;
  text-align: center;
}

@media (max-width: 1500px) {
  .ebook-dets .e-header {
    line-height: 40px;
    font-size: 25px;
  }
}

@media (max-width: 1200px) {
  .ebook-dets .e-header {
    line-height: 38px;
    font-size: 22px;
    padding: 15px 20px;
  }
}

.ebook-dets .e-form-wrapper {
  background: #fff;
  padding: 15px 30px 30px;
}

@media (max-width: 992px) {
  .ebook-dets .e-form-wrapper {
    padding: 15px 30px 30px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .ebook-dets .e-form-wrapper {
    padding: 15px 20px 20px;
  }
}

.hs-form-242f979f-4451-4cc1-9e98-9873a7052b55_d98e0ff6-d515-4dc1-b038-ad4a917d9a1c fieldset.form-columns-2 .input {
  margin-right: 0;
}

.single-e_book .ebook-sec {
  margin-top: 150px;
  background: #F8F9FE;
}

@media (max-width: 992px) {
  .single-e_book .ebook-sec {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .single-e_book .ebook-sec {
    margin-top: 50px;
  }
}

.single-e_book .e-prev,
.single-e_book .e-next {
  background: #F8F9FE;
}

.whats-inside {
  margin-top: 150px;
}

@media (max-width: 992px) {
  .whats-inside {
    margin-top: 100px;
  }
}

@media (max-width: 768px) {
  .whats-inside {
    margin-top: 75px;
  }
}

.whats-inside h2 {
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 45px;
  font-size: 35px;
  color: #0F233F;
}

@media (max-width: 1500px) {
  .whats-inside h2 {
    line-height: 35px;
    font-size: 25px;
  }
}

@media (max-width: 992px) {
  .whats-inside h2 {
    line-height: 26px;
    font-size: 20px;
  }
}

.whats-inside img {
  margin-right: -15px;
}

.whats-inside ul {
  padding: 0;
  margin: 0;
}

.whats-inside ul li {
  list-style: none;
  margin-bottom: 15px;
}

.whats-inside ul li svg {
  margin-right: 20px;
  margin-top: 7px;
  min-width: 50px;
}

.e-form-wrapper .mktoFormCol {
  width: 100%;
  display: block;
  float: none;
}

.e-form-wrapper .mktoForm {
  max-width: 100%;
}

.e-form-wrapper .mktoForm input[type=text],
.e-form-wrapper .mktoForm input[type=url],
.e-form-wrapper .mktoForm input[type=email],
.e-form-wrapper .mktoForm input[type=tel],
.e-form-wrapper .mktoForm input[type=number],
.e-form-wrapper .mktoForm input[type=date],
.e-form-wrapper .mktoForm textarea.mktoField,
.e-form-wrapper .mktoForm select.mktoField,
.e-form-wrapper .mktoForm .mktoRequiredField label.mktoLabel {
  width: 100% !important;
  display: block;
}

.e-form-wrapper .mktoForm input[type=text]::-webkit-input-placeholder,
.e-form-wrapper .mktoForm input[type=url]::-webkit-input-placeholder,
.e-form-wrapper .mktoForm input[type=email]::-webkit-input-placeholder,
.e-form-wrapper .mktoForm input[type=tel]::-webkit-input-placeholder,
.e-form-wrapper .mktoForm input[type=number]::-webkit-input-placeholder,
.e-form-wrapper .mktoForm input[type=date]::-webkit-input-placeholder,
.e-form-wrapper .mktoForm textarea.mktoField::-webkit-input-placeholder,
.e-form-wrapper .mktoForm select.mktoField::-webkit-input-placeholder,
.e-form-wrapper .mktoForm .mktoRequiredField label.mktoLabel::-webkit-input-placeholder {
  /* WebKit browsers */
  color: transparent;
}

.e-form-wrapper .mktoForm input[type=text]:-moz-placeholder,
.e-form-wrapper .mktoForm input[type=url]:-moz-placeholder,
.e-form-wrapper .mktoForm input[type=email]:-moz-placeholder,
.e-form-wrapper .mktoForm input[type=tel]:-moz-placeholder,
.e-form-wrapper .mktoForm input[type=number]:-moz-placeholder,
.e-form-wrapper .mktoForm input[type=date]:-moz-placeholder,
.e-form-wrapper .mktoForm textarea.mktoField:-moz-placeholder,
.e-form-wrapper .mktoForm select.mktoField:-moz-placeholder,
.e-form-wrapper .mktoForm .mktoRequiredField label.mktoLabel:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: transparent;
}

.e-form-wrapper .mktoForm input[type=text]::-moz-placeholder,
.e-form-wrapper .mktoForm input[type=url]::-moz-placeholder,
.e-form-wrapper .mktoForm input[type=email]::-moz-placeholder,
.e-form-wrapper .mktoForm input[type=tel]::-moz-placeholder,
.e-form-wrapper .mktoForm input[type=number]::-moz-placeholder,
.e-form-wrapper .mktoForm input[type=date]::-moz-placeholder,
.e-form-wrapper .mktoForm textarea.mktoField::-moz-placeholder,
.e-form-wrapper .mktoForm select.mktoField::-moz-placeholder,
.e-form-wrapper .mktoForm .mktoRequiredField label.mktoLabel::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: transparent;
}

.e-form-wrapper .mktoForm input[type=text]:-ms-input-placeholder,
.e-form-wrapper .mktoForm input[type=url]:-ms-input-placeholder,
.e-form-wrapper .mktoForm input[type=email]:-ms-input-placeholder,
.e-form-wrapper .mktoForm input[type=tel]:-ms-input-placeholder,
.e-form-wrapper .mktoForm input[type=number]:-ms-input-placeholder,
.e-form-wrapper .mktoForm input[type=date]:-ms-input-placeholder,
.e-form-wrapper .mktoForm textarea.mktoField:-ms-input-placeholder,
.e-form-wrapper .mktoForm select.mktoField:-ms-input-placeholder,
.e-form-wrapper .mktoForm .mktoRequiredField label.mktoLabel:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: transparent;
}

.e-form-wrapper label.mktoLabel {
  line-height: 32px;
  font-size: 17px;
  color: #8691A0;
  font-weight: 400 !important;
  margin-bottom: 5px !important;
}

@media (max-width: 992px) {
  .e-form-wrapper label.mktoLabel {
    line-height: 30px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .e-form-wrapper label.mktoLabel {
    line-height: 27px;
    font-size: 13px;
  }
}

.e-form-wrapper .mktoGutter {
  display: none;
}

.e-form-wrapper .mktoButtonRow {
  width: 100%;
}

.e-form-wrapper .mktoButton {
  color: #FFF;
  background: #57C594;
  width: 100%;
  display: block;
}

.e-form-wrapper .mktoButton:hover {
  background: rgba(87, 197, 148, 0.8);
}

.e-form-wrapper .mktoForm {
  margin-left: auto;
  margin-right: auto;
  width: 100% !important;
}

.e-form-wrapper .mktoForm .mktoFieldWrap {
  float: none;
}

.mobile-slider-how {
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}

.mobile-slider-how .h-group {
  text-align: center;
}

.mobile-slider-how .how-img {
  width: 400px;
  margin-bottom: 20px;
}

.mobile-slider-how .slick-dots {
  margin-top: 0;
}

.mobile-slider-how .highlight-desc {
  text-align: center;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.mobile-slider-how .short-desc {
  max-width: 100%;
}

.page-nav-wrap {
  margin-bottom: 45px;
}

.page-nav-wrap input,
.page-nav-wrap button,
.page-nav-wrap .form .mktoButton,
.form .page-nav-wrap .mktoButton {
  padding: 14px 20px;
}

.page-nav-wrap input {
  border-right: none !important;
  width: 280px;
}

.page-nav-wrap button,
.page-nav-wrap .form .mktoButton,
.form .page-nav-wrap .mktoButton {
  border: 2px solid #57C594;
  cursor: pointer;
}

@media (max-width: 992px) {
  .page-nav-wrap .signup-box input {
    width: 100%;
  }
}

.page-nav-wrap ul {
  padding-left: 0;
  margin: 0;
}

@media (max-width: 992px) {
  .page-nav-wrap ul {
    margin-bottom: 20px;
  }
}

.page-nav-wrap ul li {
  list-style: none;
  padding: 0 25px 10px;
  position: relative;
}

@media (max-width: 992px) {
  .page-nav-wrap ul li {
    padding: 0 11px 7px;
  }
}

.page-nav-wrap ul li a {
  font-weight: bold;
  line-height: normal;
  font-size: 13px;
  text-align: center;
  color: #0F233F;
  text-transform: uppercase;
  position: relative;
}

@media (max-width: 992px) {
  .page-nav-wrap ul li a {
    font-size: 11px;
  }
}

.page-nav-wrap ul li a:hover {
  text-decoration: none;
}

.page-nav-wrap ul li a .under-line {
  height: 3px;
  background: #1c8195;
  width: 0;
  position: absolute;
  bottom: -17px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  left: 50%;
  -webkit-transform: translate(-50%);
       -o-transform: translate(-50%);
          transform: translate(-50%);
}

.page-nav-wrap ul li:hover,
.page-nav-wrap ul li.active,
.page-nav-wrap ul li.current-menu-item,
.page-nav-wrap ul li.current-page-ancestor {
  text-decoration: none;
}

.page-nav-wrap ul li:hover .under-line,
.page-nav-wrap ul li.active .under-line,
.page-nav-wrap ul li.current-menu-item .under-line,
.page-nav-wrap ul li.current-page-ancestor .under-line {
  width: 130%;
}

.mega-nav-wrap,
.mini-menu-wrap {
  display: none;
}

.mega-nav {
  position: absolute;
  -webkit-box-shadow: 0px 24px 44px rgba(15, 35, 63, 0.25);
          box-shadow: 0px 24px 44px rgba(15, 35, 63, 0.25);
  z-index: 10000;
  left: 100px;
  margin-top: 11px;
  background: #fff;
  max-width: 100%;
}

@media (max-width: 1500px) {
  .mega-nav {
    left: 20px;
    right: 20px;
  }
}

.mega-nav .nav-pad {
  padding: 71px 54px;
}

@media (max-width: 1500px) {
  .mega-nav .nav-pad {
    padding: 50px 40px;
  }
}

@media (max-width: 992px) {
  .mega-nav .nav-pad {
    padding: 40px 30px;
  }
}

.mega-nav .normal-links {
  width: 903px;
  max-width: 100%;
}

.mega-nav .normal-links .nav-list {
  width: 33%;
  text-align: left;
}

.mega-nav .normal-links .nav-list .intro-c {
  font-weight: normal;
  line-height: 25px;
  font-size: 15px;
  margin-bottom: 30px;
  color: #0F233F;
}

.mega-nav .normal-links .nav-list .btn,
.mega-nav .normal-links .nav-list .comment-form input[type="submit"],
.comment-form .mega-nav .normal-links .nav-list input[type="submit"],
.mega-nav .normal-links .nav-list .search-form .search-submit,
.search-form .mega-nav .normal-links .nav-list .search-submit,
.mega-nav .normal-links .nav-list .e-form-wrapper .mktoButton,
.e-form-wrapper .mega-nav .normal-links .nav-list .mktoButton,
.mega-nav .normal-links .nav-list .email-form form button,
.email-form form .mega-nav .normal-links .nav-list button,
.mega-nav .normal-links .nav-list .email-form form .form .mktoButton,
.email-form form .form .mega-nav .normal-links .nav-list .mktoButton,
.mega-nav .normal-links .nav-list .form .email-form form .mktoButton,
.form .email-form form .mega-nav .normal-links .nav-list .mktoButton {
  margin-bottom: 15px;
  display: inline-block !important;
}

.mega-nav .normal-links .nav-list .btn.btn-green-trans,
.mega-nav .normal-links .nav-list .comment-form input.btn-green-trans[type="submit"],
.comment-form .mega-nav .normal-links .nav-list input.btn-green-trans[type="submit"],
.mega-nav .normal-links .nav-list .search-form .btn-green-trans.search-submit,
.search-form .mega-nav .normal-links .nav-list .btn-green-trans.search-submit,
.mega-nav .normal-links .nav-list .e-form-wrapper .btn-green-trans.mktoButton,
.e-form-wrapper .mega-nav .normal-links .nav-list .btn-green-trans.mktoButton,
.mega-nav .normal-links .nav-list .email-form form button.btn-green-trans,
.email-form form .mega-nav .normal-links .nav-list button.btn-green-trans,
.mega-nav .normal-links .nav-list .email-form form .form .btn-green-trans.mktoButton,
.email-form form .form .mega-nav .normal-links .nav-list .btn-green-trans.mktoButton,
.mega-nav .normal-links .nav-list .form .email-form form .btn-green-trans.mktoButton,
.form .email-form form .mega-nav .normal-links .nav-list .btn-green-trans.mktoButton {
  color: #57C594 !important;
}

.mega-nav .normal-links .nav-list .btn:last-of-type,
.mega-nav .normal-links .nav-list .comment-form input[type="submit"]:last-of-type,
.comment-form .mega-nav .normal-links .nav-list input[type="submit"]:last-of-type,
.mega-nav .normal-links .nav-list .search-form .search-submit:last-of-type,
.search-form .mega-nav .normal-links .nav-list .search-submit:last-of-type,
.mega-nav .normal-links .nav-list .e-form-wrapper .mktoButton:last-of-type,
.e-form-wrapper .mega-nav .normal-links .nav-list .mktoButton:last-of-type,
.mega-nav .normal-links .nav-list .email-form form button:last-of-type,
.email-form form .mega-nav .normal-links .nav-list button:last-of-type,
.mega-nav .normal-links .nav-list .email-form form .form .mktoButton:last-of-type,
.email-form form .form .mega-nav .normal-links .nav-list .mktoButton:last-of-type,
.mega-nav .normal-links .nav-list .form .email-form form .mktoButton:last-of-type,
.form .email-form form .mega-nav .normal-links .nav-list .mktoButton:last-of-type {
  margin-bottom: 0;
}

.mega-nav .normal-links ul {
  padding: 0;
  margin-left: 0;
}

.mega-nav .normal-links ul li {
  list-style: none;
}

.mega-nav .normal-links ul li a {
  font-weight: normal;
  line-height: 22px;
  font-size: 15px;
  text-transform: none;
  padding: 0;
}

.mega-nav .normal-links .nav-list-title {
  font-weight: 800;
  line-height: 21px;
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.mega-nav .nav-ctas {
  background: #F8F9FE;
  max-width: 515px;
  text-align: left;
}

.mega-nav .nav-ctas a {
  text-transform: initial;
  font-weight: normal;
  padding: 0;
}

.mega-nav .nav-ctas a h4 {
  line-height: 27px;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
}

.mega-nav .nav-ctas a .mini-desc {
  line-height: 21px;
  font-size: 13px;
  color: #0F233F;
}

.mega-nav .nav-ctas a .icon-wrap {
  min-width: 60px;
  margin-right: 25px;
}

.mega-nav .nav-ctas a .icon-wrap img {
  min-width: 100%;
}

.mega-nav .nav-ctas ul {
  padding-left: 0;
  margin-left: 0;
}

.mega-nav .nav-ctas ul li {
  margin-bottom: 40px;
  list-style: none;
}

.mega-nav .nav-ctas ul li:last-of-type {
  margin-bottom: 0;
}

.mini-menu {
  position: absolute;
  -webkit-box-shadow: 0px 24px 44px rgba(15, 35, 63, 0.25);
          box-shadow: 0px 24px 44px rgba(15, 35, 63, 0.25);
  z-index: 10000;
  margin-top: 13px;
  background: #fff;
}

.mini-menu ul {
  padding: 0;
  margin-left: 0;
}

.mini-menu ul li {
  list-style: none;
}

.mini-menu ul li a {
  padding: 0 !important;
  font-weight: 500 !important;
  font-size: 16px;
  text-transform: none;
}

.mini-menu ul li a .link-item {
  padding-right: 20px;
  text-transform: none;
}

.mini-menu ul li.spacer-top .icon-wrap,
.mini-menu ul li.spacer-bottom .icon-wrap {
  height: 15px;
  padding: 0;
}

.mini-menu .icon-wrap {
  min-width: 70px;
  background: #F8F9FE;
  text-align: center;
  margin-right: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.mini-menu .icon-wrap img {
  min-width: 22px;
}

li.col-link {
  margin-bottom: 18px;
}

.triangle {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 100%;
  opacity: 0;
}

.triangle-4 {
  width: 30px;
  height: 15px;
  border-bottom: solid 15px #F8F9FE;
  border-left: solid 15px transparent;
  border-right: solid 15px transparent;
}

.email-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

@media (max-width: 992px) {
  .email-form form {
    width: 100% !important;
  }
}

.email-form form input[type="email"] {
  width: 400px !important;
  line-height: initial !important;
  font-size: 13px !important;
  padding: 17px !important;
  height: auto !important;
}

@media (max-width: 1500px) {
  .email-form form input[type="email"] {
    width: 350px !important;
  }
}

@media (max-width: 1200px) {
  .email-form form input[type="email"] {
    width: 250px !important;
  }
}

@media (max-width: 992px) {
  .email-form form input[type="email"] {
    width: 100% !important;
  }
}

.email-form form .mktoFieldDescriptor {
  margin-bottom: 0 !important;
}

.email-form form .mktoButtonWrap {
  margin-left: 0 !important;
}

.email-form form .mktoGutter,
.email-form form .mktoOffset {
  display: none !important;
}

@media (max-width: 992px) {
  .email-form form .mktoFormRow,
  .email-form form .mktoFieldDescriptor {
    width: 100% !important;
  }
}

.email-form form .mktoFormRow {
  display: none;
}

.email-form form .mktoFormRow:first-of-type {
  display: block;
}

.email-form .mktoFieldWrap {
  width: 100%;
}

.email-form .mktoFieldWrap label {
  display: none;
}

.email-form .mktoClear {
  display: none;
}

section.ebook-feature {
  background: #F8F9FE;
}

section.ebook-feature .featured-e {
  margin-bottom: -52px;
}

section.ebook-feature .featured-e img.feature-img {
  -webkit-box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.15);
          box-shadow: 0px 34px 65px rgba(71, 94, 237, 0.15);
}

body#tinymce {
  margin: 12px !important;
}

.page-id-354 .form textarea{
  width: 100% !important;
  border: 2px solid #EDEFFD;
  color: #8691A0;
  font-weight: normal;
  padding: 18px !important;
}


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

/*ul.nav li.desktop-nav-item a:nth-child(1){
    margin-right: 3px !important;
}
*/
.accordion .card:not(:first-of-type) .card-header:first-child button:focus {
  outline-color: blue!important;
  -webkit-transition: outline-color .1s ease-out;
  -moz-transition: outline-color .1s ease-out;
  -o-transition: outline-color .1s ease-out;
  transition: outline-color .1s ease-out;
  transition-delay: .7s;
  outline: none !important;
}
.mini-menu .icon-wrap{
      background: transparent;
}
