/*============================================= */





























/* ACCENT COLORS */























































* {
    --base: #6B6B6B;
    --primary: #3790F4;
    --secondary: #5DC435;
    --tertiary: #FF9900;
    --danger: #c87872;
    --warning: #c87872;
    --success: #429897F;
    --gray: #6B6B6B;
    --lightgray: #F1F4FA;
    --light: #F1F4FA;
    --dark: #171717;
    --border_radius: 50;
    --halfwidth: 50vw;
    --time: 0.707s;
    --primary100: #ffffff;
    --primary200: #cdffff;
    --primary300: #9bf4ff;
    --primary400: #69c2ff;
    --primary500: #3790F4;
    --primary600: #055ec2;
    --primary700: #002c90;
    --primary800: #00005e;
    --primary900: #00002c;

    --secondary100: #fffffd;
    --secondary200: #f3ffcb;
    --secondary300: #c1ff99;
    --secondary400: #8ff667;
    --secondary500: #5DC435;
    --secondary600: #2b9203;
    --secondary700: #006000;
    --secondary800: #002e00;
    --secondary900: #000000;

  }


* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
}

body {
  font-family: Inter, sans-serif;
  font-size: 1.0rem;
  color: #6B6B6B;
  line-height: 1.25;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Inter, sans-serif;
  line-height: 1.5em;
  font-weight: 400;
  font-size: 18px;
}

.p-no-margin p {
  margin: 0;
}

p.body--large {
  font-size: 28px;
  font-weight: 500;
  line-height: 2.5rem;
}

/* Anchor Links */
a {
  color: #3790F4;
  stroke: #3790F4;
  text-decoration: none;
  font-weight: 600;
  transition: .4s ease;
}

a.no-stroke {
  stroke: inherit!important;
}

a.no-fill {
  fill: inherit!important;
}

.u-bg--blue a:not(.btn) {
  color: #fff;
  text-decoration: underline;
}


a:not(.btn):not(.text-link):hover, a:not(.btn):not(.text-link):focus {
  fill: #303651;
  color:  #303651;
  stroke:  #303651;
  text-decoration: none;
}

.u-bg--blue a:not(.btn):focus,
.u-bg--blue a:not(.btn):hover {
  color: #5DC435;
  text-decoration: underline;
}

.a--alt {
  opacity: .4;
  text-decoration: none!important;
  transition: .4s;
}

.a--alt:hover,
.a--alt.active {
  opacity: 1;
}

/* Headings */
h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  /* font-weight: ; */
  font-family: Sora, serif;
  /* color: ; */
  word-break: break-word;
  color: #171717;
}

h1+*,
h2+*,
h3+*,
h4+*,
h5+* {
  margin-top: .5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  width: 100%;
}

h1,
.-h1 {
  /* color: #303651; */
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.08;
}

.section--blog h1,
.section--blog .-h1  {
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.08;
}

h2,
.-h2 {
  /* color: #303651; */
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

h3,
.-h3 {
  /* color: #303651; */
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
  /*color: #3b82f6;*/
}

h4,
.-h4 {
  /* color: #303651; */
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

h5,
.-h5 {
  /* color: #303651; */
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

h6,
.-h6,
span.eyebrow-text {
  margin-top: 0;
  margin-bottom: 0.5rem;
  /* color: #6B6B6B; */
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* opacity: 0.7; */
}

/** Old fonts **/
.cta-block h3 {
  font-size: 24px;
}

.section--cta h2 {
  font-size: 40px;
}


strong {
  font-weight: 700;
}

code {
  vertical-align: bottom;
}

ul,
ol {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

ul > ul,
ol > ol {
  padding-left: 20px;
}


ul li,
ol li {
  line-height: 1.25rem;
}

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

.ol--custom ol {
  counter-reset: custom-ol;
  list-style: none;
  padding-left: 0;
}

.ol--custom ol li {
  position: relative;
  padding-left: 30px;
  counter-increment: custom-ol;
  color: #FF9900;
  font-size: 1.5625rem;
  line-height: 1.5;
}

.ol--custom ol li:before {
  content: counter(custom-ol)".";
  color: rgba(0,0,0,.2);
  position: absolute;
  left: 0;
  top: 0;
}

.ul--custom  ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2.25rem;
}

.ul--custom ul li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.ul--custom ul li:before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: .25rem;
  background-color: #5DC435;
}

.dnd-section ol {
  padding-left: 18px;
}

.dnd-section ol li {
  margin-bottom: .5rem;
  line-height: 1.8;
  font-size: 1.14rem;  
}

.dnd-section ul {
 padding: 0;
 margin: 0 0 0 1rem;
}

.dnd-section ul li {
  font-size: 18px;
  margin-bottom: 8px;
}

.dnd-section ul li::marker {
  color: #3790F4;
}

form ul.inputs-list {

}

form ul.inputs-list li {
  padding-left: 0;
}

form ul.inputs-list li:before {
  display: none;
}


blockquote:not(.blockquote--testimonial) {
  position: relative;
  margin: 1.43rem 0;
  border-left: 3px solid rgba(0,0,0,.1);
  font-weight: 400;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  padding: .25rem 0 .25rem 1.5rem;
}

.blockquote--border blockquote {
  padding-left: 3rem;
}

.blockquote--small blockquote {
  line-height: 1.6;
}

.blockquote--large blockquote {
  font-size: 2.8125rem;
  line-height: 1.5;
}

.article__content blockquote {
  padding-left: 6rem;
  margin-left: -6rem;
}

.blockquote--border blockquote:before,
.article__content blockquote:before {
  content: '';
  width: 6px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FF9900;
}

blockquote:not(.blockquote--testimonial),
blockquote:not(.blockquote--testimonial) p {
  font-size: 1.00rem;
  font-family: Sora, serif, serif;
  font-style: italic;
}

blockquote.blockquote--testimonial,
blockquote.blockquote--testimonial p {

}


blockquote:not(.blockquote--testimonial) p + p {
  font-size: 1rem;
  font-style: normal;
  font-family: Inter, sans-serif;
  margin: 1.5rem 0;
}

blockquote:not(.blockquote--testimonial) p {
  margin: 0;
}

blockquote:not(.blockquote--testimonial) h6 {
  margin: 0 15px 0 0;
  color: #F1F4FA;
}

blockquote:not(.blockquote--testimonial) cite {
  font-size: 1rem;
}



blockquote:not(.blockquote--testimonial) footer {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #6B6B6B;
  letter-spacing: 1.5px;
  font-style: normal;
}

.blockquote--custom blockquote {
  border-left: 6px solid #FF9900;
  padding: 0 7%;
  margin: 2rem 0;
}


cite {
  font-style: normal;
  color: #3790F4;
}

.italic p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-family: Sora, serif, sans-serif;
  font-style: italic;
}

/* Horizontal Rules */
hr {
  color: #3790F4;
  background-color: #3790F4;
  height: 1px;
  border: none;
  margin: 2rem 0;
}

figcaption {
  font-size: 1.0rem;
  text-align: center;
  font-weight: 700;
  margin-top: 1rem;

}

figcaption.logo_caption--reverse {
  margin-top: -.75rem;
  margin-bottom: 1rem;
}



/* TODO */
small {

}

/* TODO */
mark {

}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

:focus {
  outline: auto;
  outline-color: #3790F4;
  /* outline-width: 1px;
  outline-style: double; */
}

.disable-focus-styles :focus {
  outline: none;
}

@media (max-width: 767px) {
  html {
    font-size: 14.0px
  }

  .justify-content-left {
    display: flex;
    justify-content: left;
  }
  
  h1,h2,h3,h4,h5,h6,p,li,strong {
    text-align: left;
    width: 100%!important;
  }
  
  h1, .brand-h1 {
    font-size: 2.25rem;
    line-height: 120%;
  }
  h2, .brand-h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  /* html {
    font-size: 12.0px
  } */
}

/* EYEBROW TEXT */
h6 .eyebrow-text,
span .eyebrow-text {
  color: #ACAFB9;
  /* font-size: 12px; */
  font-weight: 600;
}
h6.eyebrow-text,
h6.eyebrow-text.primary,
span.eyebrow-text,
span.eyebrow-text.primary {
  color: #3790F4;
  font-weight: 600;
}
h6.eyebrow-text.secondary,
span.eyebrow-text.secondary {
  color: #5DC435;
  font-weight: 600;
}
h6.eyebrow-text.tertiary,
span.eyebrow-text.tertiary {
  color: #FF9900;
  font-weight: 600;
}
h6.eyebrow-text.rust,
span.eyebrow-text.rust {
  color: #DC562E;
  font-weight: 600;
}
h6.eyebrow-text.lwyellow,
span.eyebrow-text.lwyellow {
  color: #EECB3C;
  font-weight: 600;
}

h6.eyebrow-text.lwgrey,
span.eyebrow-text.lwgrey {
  color: #3D484A;
  font-weight: 600;
}


h6.eyebrow-text.blue-gradient,
span.eyebrow-text.blue-gradient {
  background: linear-gradient(270deg,#797ef6 0%,#0567d5 100%);
  color: #fff;
  border-radius: 25px;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  width: fit-content;
}
/* BYLINE */
h6.byline,
span.byline {
  color: #303651;
  font-size: 12px;
  font-weight: 700;
}

/* CUSTOM LIST */
h4.cl-item {
  font-weight: 400;
  font-size: 16px;
}

/* SMALLER TEXT SIZE */
.u-txt--small p, p.u-txt--small, .u-txt--small ul li {
  font-size: 14px;
  line-height: 175%;
}
.section__header p {
  font-size: inherit; 
}

/* GRADIENT TEXT */
h1 strong, h2 strong, h3 strong, h4 strong {
  background: linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Responsive Grid */

.row-fluid {
    width: 100%;
    *zoom: 1;
  }
  
  .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
  }
  
  .row-fluid:after {
    clear: both;
  }
  
  .row-fluid [class*="span"] {
    display: block;
    float: left;
    width: 100%;
    /* min-height: 28px; */
    min-height: 0px;
    margin-left: 2.127659574%;
    *margin-left: 2.0744680846382977%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  
  .row-fluid .span12 {
    width: 99.99999998999999%;
    *width: 99.94680850063828%;
  }
  
  .row-fluid .span11 {
    width: 91.489361693%;
    *width: 91.4361702036383%;
  }
  
  .row-fluid .span10 {
    width: 82.97872339599999%;
    *width: 82.92553190663828%;
  }
  
  .row-fluid .span9 {
    width: 74.468085099%;
    *width: 74.4148936096383%;
  }
  
  .row-fluid .span8 {
    width: 65.95744680199999%;
    *width: 65.90425531263828%;
  }
  
  .row-fluid .span7 {
    width: 57.446808505%;
    *width: 57.3936170156383%;
  }
  
  .row-fluid .span6 {
    width: 48.93617020799999%;
    *width: 48.88297871863829%;
  }
  
  .row-fluid .span5 {
    width: 40.425531911%;
    *width: 40.3723404216383%;
  }
  
  .row-fluid .span4 {
    width: 31.914893614%;
    *width: 31.8617021246383%;
  }
  
  .row-fluid .span3 {
    width: 23.404255317%;
    *width: 23.3510638276383%;
  }
  
  .row-fluid .span2 {
    width: 14.89361702%;
    *width: 14.8404255306383%;
  }
  
  .row-fluid .span1 {
    width: 6.382978723%;
    *width: 6.329787233638298%;
  }
  
  .container-fluid {
    *zoom: 1;
  }
  
  .container-fluid:before, .container-fluid:after {
    display: table;
    content: "";
  }
  
  .container-fluid:after {
    clear: both;
  }
  
  @media (max-width: 767px) {
    .row-fluid {
        width: 100%;
    }
  
    .row-fluid [class*="span"] {
        display: block;
        float: none;
        width: auto;
        margin-left: 0;
    }
  }
  
  @media (min-width: 768px) and (max-width: 1139px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }
  
    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }
  
    .row-fluid:after {
        clear: both;
    }
  
    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        /* min-height: 28px; */
        min-height: 0px;
        margin-left: 2.762430939%;
        *margin-left: 2.709239449638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }
  
    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }
  
    .row-fluid .span12 {
        width: 99.999999993%;
        *width: 99.9468085036383%;
    }
  
    .row-fluid .span11 {
        width: 91.436464082%;
        *width: 91.38327259263829%;
    }
  
    .row-fluid .span10 {
        width: 82.87292817100001%;
        *width: 82.8197366816383%;
    }
  
    .row-fluid .span9 {
        width: 74.30939226%;
        *width: 74.25620077063829%;
    }
  
    .row-fluid .span8 {
        width: 65.74585634900001%;
        *width: 65.6926648596383%;
    }
  
    .row-fluid .span7 {
        width: 57.182320438000005%;
        *width: 57.129128948638304%;
    }
  
    .row-fluid .span6 {
        width: 48.618784527%;
        *width: 48.5655930376383%;
    }
  
    .row-fluid .span5 {
        width: 40.055248616%;
        *width: 40.0020571266383%;
    }
  
    .row-fluid .span4 {
        width: 31.491712705%;
        *width: 31.4385212156383%;
    }
  
    .row-fluid .span3 {
        width: 22.928176794%;
        *width: 22.874985304638297%;
    }
  
    .row-fluid .span2 {
        width: 14.364640883%;
        *width: 14.311449393638298%;
    }
  
    .row-fluid .span1 {
        width: 5.801104972%;
        *width: 5.747913482638298%;
    }
  }
  
  @media (min-width: 1280px) {
    .row-fluid {
        width: 100%;
        *zoom: 1;
    }
  
    .row-fluid:before, .row-fluid:after {
        display: table;
        content: "";
    }
  
    .row-fluid:after {
        clear: both;
    }
  
    .row-fluid [class*="span"] {
        display: block;
        float: left;
        width: 100%;
        /* min-height: 28px; */
        min-height: 0px;
        margin-left: 2.564102564%;
        *margin-left: 2.510911074638298%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box;
    }
  
    .row-fluid [class*="span"]:first-child {
        margin-left: 0;
    }
  
    .row-fluid .span12 {
        width: 100%;
        *width: 99.94680851063829%;
    }
  
    .row-fluid .span11 {
        width: 91.45299145300001%;
        *width: 91.3997999636383%;
    }
  
    .row-fluid .span10 {
        width: 82.905982906%;
        *width: 82.8527914166383%;
    }
  
    .row-fluid .span9 {
        width: 74.358974359%;
        *width: 74.30578286963829%;
    }
  
    .row-fluid .span8 {
        width: 65.81196581200001%;
        *width: 65.7587743226383%;
    }
  
    .row-fluid .span7 {
        width: 57.264957265%;
        *width: 57.2117657756383%;
    }
  
    .row-fluid .span6 {
        width: 48.717948718%;
        *width: 48.6647572286383%;
    }
  
    .row-fluid .span5 {
        width: 40.170940171000005%;
        *width: 40.117748681638304%;
    }
  
    .row-fluid .span4 {
        width: 31.623931624%;
        *width: 31.5707401346383%;
    }
  
    .row-fluid .span3 {
        width: 23.076923077%;
        *width: 23.0237315876383%;
    }
  
    .row-fluid .span2 {
        width: 14.529914530000001%;
        *width: 14.4767230406383%;
    }
  
    .row-fluid .span1 {
        width: 5.982905983%;
        *width: 5.929714493638298%;
    }
  }
  
  /* Clearfix */
  
  .clearfix {
    *zoom: 1;
  }
  
  .clearfix:before, .clearfix:after {
    display: table;
    content: "";
  }
  
  .clearfix:after {
    clear: both;
  }
  
  /* Visibilty Classes */
  
  .hide {
    display: none;
  }
  
  .show {
    display: block;
  }
  
  .invisible {
    visibility: hidden;
  }
  
  .hidden {
    display: none;
    visibility: hidden;
  }
  
  /* Responsive Visibilty Classes */
  
  .visible-phone {
    display: none !important;
  }
  
  .visible-tablet {
    display: none !important;
  }
  
  .hidden-desktop {
    display: none !important;
  }
  
  @media (max-width: 767px) {
    .visible-phone {
        display: inherit !important;
    }
  
    .hidden-phone {
        display: none !important;
    }
  
    .hidden-desktop {
        display: inherit !important;
    }
  
    .visible-desktop {
        display: none !important;
    }
  }
  
  @media (min-width: 768px) and (max-width: 1139px) {
    .visible-tablet {
        display: inherit !important;
    }
  
    .hidden-tablet {
        display: none !important;
    }
  
    .hidden-desktop {
        display: inherit !important;
    }
  
    .visible-desktop {
        display: none !important ;
    }
  }
  
  
  
  /*!
   * Bootstrap Grid v4.5.0 (https://getbootstrap.com/)
   * Copyright 2011-2020 The Bootstrap Authors
   * Copyright 2011-2020 Twitter, Inc.
   * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
   */
   html {
      box-sizing: border-box;
      -ms-overflow-style: scrollbar;
    }
    
    *,
    *::before,
    *::after {
      box-sizing: inherit;
    }
    
    .container {
      width: 100%;
      padding-right: 20px;
      padding-left: 20px;
      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: 1320px;
      }
    }
    
    .container-fluid, .container--sm, .container--md, .container--lg, .container--xl {
      width: 100%;
      padding-right: 20px;
      padding-left: 20px;
      margin-right: auto;
      margin-left: auto;
    }

    .container--large-gutters {
      padding-right: 30px;
      padding-left: 30px;
    }

    .section--dnd > .container-fluid {
      padding-left: 0;
      padding-right: 0;
    }
    
    @media (min-width: 576px) {
      .container, .container--sm {
        max-width: 540px;
      }
    }
    
    @media (min-width: 768px) {
      .container, .container--sm, .container--md {
        max-width: 720px;
      }
    }
    
    @media (min-width: 992px) {
      .container, .container--sm, .container--md, .container--lg {
        max-width: 960px;
      }
    }
    
    @media (min-width: 1200px) {
      .container, .container--sm, .container--md, .container--lg, .container--xl {
        max-width: 1320px;
      }
    }

    .container--sm {
      max-width: 590px;
    }
    .container--md {
      max-width: 812px;
    }
    .container--lg {
      max-width: 1100px;
    }
    
    .row {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-right: -20px;
      margin-left: -20px;
    }

    .row.small-gutters {
      margin-right: -10px;
      margin-left: -10px; 
    }

    .row.large-gutters {
      margin-right: -30px;
      margin-left: -30px; 
    }

    .small-gutters > .col,
    .small-gutters > [class*="col-"] {
      padding-right: 10px;
      padding-left: 10px;
    }

    .large-gutters > .col,
    .large-gutters > [class*="col-"] {
      padding-right: 30px;
      padding-left: 30px;
    }
    
    .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%;
      padding-right: 20px;
      padding-left: 20px;
    }
    
    .col {
      -ms-flex-preferred-size: 0;
      flex-basis: 0;
      -ms-flex-positive: 1;
      flex-grow: 1;
      min-width: 0;
      max-width: 100%;
    }
    
    .row-cols-1 > * {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .row-cols-2 > * {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    
    .row-cols-3 > * {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    
    .row-cols-4 > * {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    
    .row-cols-5 > * {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%;
    }
    
    .row-cols-6 > * {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    
    .col-auto {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto;
      width: auto;
      max-width: 100%;
    }
    
    .col-1 {
      -ms-flex: 0 0 8.333333%;
      flex: 0 0 8.333333%;
      max-width: 8.333333%;
    }
    
    .col-2 {
      -ms-flex: 0 0 16.666667%;
      flex: 0 0 16.666667%;
      max-width: 16.666667%;
    }
    
    .col-3 {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
    
    .col-4 {
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
    
    .col-5 {
      -ms-flex: 0 0 41.666667%;
      flex: 0 0 41.666667%;
      max-width: 41.666667%;
    }
    
    .col-6 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
    
    .col-7 {
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 58.333333%;
      max-width: 58.333333%;
    }
    
    .col-8 {
      -ms-flex: 0 0 66.666667%;
      flex: 0 0 66.666667%;
      max-width: 66.666667%;
    }
    
    .col-9 {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    
    .col-10 {
      -ms-flex: 0 0 83.333333%;
      flex: 0 0 83.333333%;
      max-width: 83.333333%;
    }
    
    .col-11 {
      -ms-flex: 0 0 91.666667%;
      flex: 0 0 91.666667%;
      max-width: 91.666667%;
    }
    
    .col-12 {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%;
    }
    
    .order-first {
      -ms-flex-order: -1;
      order: -1;
    }
    
    .order-last {
      -ms-flex-order: 13;
      order: 13;
    }
    
    .order-0 {
      -ms-flex-order: 0;
      order: 0;
    }
    
    .order-1 {
      -ms-flex-order: 1;
      order: 1;
    }
    
    .order-2 {
      -ms-flex-order: 2;
      order: 2;
    }
    
    .order-3 {
      -ms-flex-order: 3;
      order: 3;
    }
    
    .order-4 {
      -ms-flex-order: 4;
      order: 4;
    }
    
    .order-5 {
      -ms-flex-order: 5;
      order: 5;
    }
    
    .order-6 {
      -ms-flex-order: 6;
      order: 6;
    }
    
    .order-7 {
      -ms-flex-order: 7;
      order: 7;
    }
    
    .order-8 {
      -ms-flex-order: 8;
      order: 8;
    }
    
    .order-9 {
      -ms-flex-order: 9;
      order: 9;
    }
    
    .order-10 {
      -ms-flex-order: 10;
      order: 10;
    }
    
    .order-11 {
      -ms-flex-order: 11;
      order: 11;
    }
    
    .order-12 {
      -ms-flex-order: 12;
      order: 12;
    }
    
    .offset-1 {
      margin-left: 8.333333%;
    }
    
    .offset-2 {
      margin-left: 16.666667%;
    }
    
    .offset-3 {
      margin-left: 25%;
    }
    
    .offset-4 {
      margin-left: 33.333333%;
    }
    
    .offset-5 {
      margin-left: 41.666667%;
    }
    
    .offset-6 {
      margin-left: 50%;
    }
    
    .offset-7 {
      margin-left: 58.333333%;
    }
    
    .offset-8 {
      margin-left: 66.666667%;
    }
    
    .offset-9 {
      margin-left: 75%;
    }
    
    .offset-10 {
      margin-left: 83.333333%;
    }
    
    .offset-11 {
      margin-left: 91.666667%;
    }
    
    @media (min-width: 576px) {
      .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%;
      }
      .row-cols-sm-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .row-cols-sm-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .row-cols-sm-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
      }
      .row-cols-sm-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .row-cols-sm-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
      }
      .row-cols-sm-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
      }
      .col-sm-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
      }
      .col-sm-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
      }
      .col-sm-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
      }
      .col-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .col-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
      }
      .col-sm-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
      }
      .col-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .col-sm-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
      }
      .col-sm-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
      }
      .col-sm-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
      }
      .col-sm-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
      }
      .col-sm-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
      }
      .col-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .order-sm-first {
        -ms-flex-order: -1;
        order: -1;
      }
      .order-sm-last {
        -ms-flex-order: 13;
        order: 13;
      }
      .order-sm-0 {
        -ms-flex-order: 0;
        order: 0;
      }
      .order-sm-1 {
        -ms-flex-order: 1;
        order: 1;
      }
      .order-sm-2 {
        -ms-flex-order: 2;
        order: 2;
      }
      .order-sm-3 {
        -ms-flex-order: 3;
        order: 3;
      }
      .order-sm-4 {
        -ms-flex-order: 4;
        order: 4;
      }
      .order-sm-5 {
        -ms-flex-order: 5;
        order: 5;
      }
      .order-sm-6 {
        -ms-flex-order: 6;
        order: 6;
      }
      .order-sm-7 {
        -ms-flex-order: 7;
        order: 7;
      }
      .order-sm-8 {
        -ms-flex-order: 8;
        order: 8;
      }
      .order-sm-9 {
        -ms-flex-order: 9;
        order: 9;
      }
      .order-sm-10 {
        -ms-flex-order: 10;
        order: 10;
      }
      .order-sm-11 {
        -ms-flex-order: 11;
        order: 11;
      }
      .order-sm-12 {
        -ms-flex-order: 12;
        order: 12;
      }
      .offset-sm-0 {
        margin-left: 0;
      }
      .offset-sm-1 {
        margin-left: 8.333333%;
      }
      .offset-sm-2 {
        margin-left: 16.666667%;
      }
      .offset-sm-3 {
        margin-left: 25%;
      }
      .offset-sm-4 {
        margin-left: 33.333333%;
      }
      .offset-sm-5 {
        margin-left: 41.666667%;
      }
      .offset-sm-6 {
        margin-left: 50%;
      }
      .offset-sm-7 {
        margin-left: 58.333333%;
      }
      .offset-sm-8 {
        margin-left: 66.666667%;
      }
      .offset-sm-9 {
        margin-left: 75%;
      }
      .offset-sm-10 {
        margin-left: 83.333333%;
      }
      .offset-sm-11 {
        margin-left: 91.666667%;
      }
    }
    
    @media (min-width: 768px) {
      .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%;
      }
      .row-cols-md-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .row-cols-md-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .row-cols-md-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
      }
      .row-cols-md-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .row-cols-md-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
      }
      .row-cols-md-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
      }
      .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
      }
      .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
      }
      .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
      }
      .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
      }
      .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
      }
      .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
      }
      .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
      }
      .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
      }
      .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
      }
      .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
      }
      .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .order-md-first {
        -ms-flex-order: -1;
        order: -1;
      }
      .order-md-last {
        -ms-flex-order: 13;
        order: 13;
      }
      .order-md-0 {
        -ms-flex-order: 0;
        order: 0;
      }
      .order-md-1 {
        -ms-flex-order: 1;
        order: 1;
      }
      .order-md-2 {
        -ms-flex-order: 2;
        order: 2;
      }
      .order-md-3 {
        -ms-flex-order: 3;
        order: 3;
      }
      .order-md-4 {
        -ms-flex-order: 4;
        order: 4;
      }
      .order-md-5 {
        -ms-flex-order: 5;
        order: 5;
      }
      .order-md-6 {
        -ms-flex-order: 6;
        order: 6;
      }
      .order-md-7 {
        -ms-flex-order: 7;
        order: 7;
      }
      .order-md-8 {
        -ms-flex-order: 8;
        order: 8;
      }
      .order-md-9 {
        -ms-flex-order: 9;
        order: 9;
      }
      .order-md-10 {
        -ms-flex-order: 10;
        order: 10;
      }
      .order-md-11 {
        -ms-flex-order: 11;
        order: 11;
      }
      .order-md-12 {
        -ms-flex-order: 12;
        order: 12;
      }
      .offset-md-0 {
        margin-left: 0;
      }
      .offset-md-1 {
        margin-left: 8.333333%;
      }
      .offset-md-2 {
        margin-left: 16.666667%;
      }
      .offset-md-3 {
        margin-left: 25%;
      }
      .offset-md-4 {
        margin-left: 33.333333%;
      }
      .offset-md-5 {
        margin-left: 41.666667%;
      }
      .offset-md-6 {
        margin-left: 50%;
      }
      .offset-md-7 {
        margin-left: 58.333333%;
      }
      .offset-md-8 {
        margin-left: 66.666667%;
      }
      .offset-md-9 {
        margin-left: 75%;
      }
      .offset-md-10 {
        margin-left: 83.333333%;
      }
      .offset-md-11 {
        margin-left: 91.666667%;
      }
    }
    
    @media (min-width: 992px) {
      .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%;
      }
      .row-cols-lg-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .row-cols-lg-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .row-cols-lg-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
      }
      .row-cols-lg-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .row-cols-lg-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
      }
      .row-cols-lg-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
      }
      .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
      }
      .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
      }
      .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
      }
      .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
      }
      .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
      }
      .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
      }
      .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
      }
      .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
      }
      .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
      }
      .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
      }
      .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .order-lg-first {
        -ms-flex-order: -1;
        order: -1;
      }
      .order-lg-last {
        -ms-flex-order: 13;
        order: 13;
      }
      .order-lg-0 {
        -ms-flex-order: 0;
        order: 0;
      }
      .order-lg-1 {
        -ms-flex-order: 1;
        order: 1;
      }
      .order-lg-2 {
        -ms-flex-order: 2;
        order: 2;
      }
      .order-lg-3 {
        -ms-flex-order: 3;
        order: 3;
      }
      .order-lg-4 {
        -ms-flex-order: 4;
        order: 4;
      }
      .order-lg-5 {
        -ms-flex-order: 5;
        order: 5;
      }
      .order-lg-6 {
        -ms-flex-order: 6;
        order: 6;
      }
      .order-lg-7 {
        -ms-flex-order: 7;
        order: 7;
      }
      .order-lg-8 {
        -ms-flex-order: 8;
        order: 8;
      }
      .order-lg-9 {
        -ms-flex-order: 9;
        order: 9;
      }
      .order-lg-10 {
        -ms-flex-order: 10;
        order: 10;
      }
      .order-lg-11 {
        -ms-flex-order: 11;
        order: 11;
      }
      .order-lg-12 {
        -ms-flex-order: 12;
        order: 12;
      }
      .offset-lg-0 {
        margin-left: 0;
      }
      .offset-lg-1 {
        margin-left: 8.333333%;
      }
      .offset-lg-2 {
        margin-left: 16.666667%;
      }
      .offset-lg-3 {
        margin-left: 25%;
      }
      .offset-lg-4 {
        margin-left: 33.333333%;
      }
      .offset-lg-5 {
        margin-left: 41.666667%;
      }
      .offset-lg-6 {
        margin-left: 50%;
      }
      .offset-lg-7 {
        margin-left: 58.333333%;
      }
      .offset-lg-8 {
        margin-left: 66.666667%;
      }
      .offset-lg-9 {
        margin-left: 75%;
      }
      .offset-lg-10 {
        margin-left: 83.333333%;
      }
      .offset-lg-11 {
        margin-left: 91.666667%;
      }
    }
    
    @media (min-width: 1200px) {
      .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -ms-flex-positive: 1;
        flex-grow: 1;
        min-width: 0;
        max-width: 100%;
      }
      .row-cols-xl-1 > * {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .row-cols-xl-2 > * {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .row-cols-xl-3 > * {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
      }
      .row-cols-xl-4 > * {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .row-cols-xl-5 > * {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
      }
      .row-cols-xl-6 > * {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
      }
      .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
      }
      .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
      }
      .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
      }
      .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
      }
      .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
      }
      .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
      }
      .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
      }
      .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
      }
      .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
      }
      .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
      }
      .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
      }
      .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
      }
      .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
      }
      .order-xl-first {
        -ms-flex-order: -1;
        order: -1;
      }
      .order-xl-last {
        -ms-flex-order: 13;
        order: 13;
      }
      .order-xl-0 {
        -ms-flex-order: 0;
        order: 0;
      }
      .order-xl-1 {
        -ms-flex-order: 1;
        order: 1;
      }
      .order-xl-2 {
        -ms-flex-order: 2;
        order: 2;
      }
      .order-xl-3 {
        -ms-flex-order: 3;
        order: 3;
      }
      .order-xl-4 {
        -ms-flex-order: 4;
        order: 4;
      }
      .order-xl-5 {
        -ms-flex-order: 5;
        order: 5;
      }
      .order-xl-6 {
        -ms-flex-order: 6;
        order: 6;
      }
      .order-xl-7 {
        -ms-flex-order: 7;
        order: 7;
      }
      .order-xl-8 {
        -ms-flex-order: 8;
        order: 8;
      }
      .order-xl-9 {
        -ms-flex-order: 9;
        order: 9;
      }
      .order-xl-10 {
        -ms-flex-order: 10;
        order: 10;
      }
      .order-xl-11 {
        -ms-flex-order: 11;
        order: 11;
      }
      .order-xl-12 {
        -ms-flex-order: 12;
        order: 12;
      }
      .offset-xl-0 {
        margin-left: 0;
      }
      .offset-xl-1 {
        margin-left: 8.333333%;
      }
      .offset-xl-2 {
        margin-left: 16.666667%;
      }
      .offset-xl-3 {
        margin-left: 25%;
      }
      .offset-xl-4 {
        margin-left: 33.333333%;
      }
      .offset-xl-5 {
        margin-left: 41.666667%;
      }
      .offset-xl-6 {
        margin-left: 50%;
      }
      .offset-xl-7 {
        margin-left: 58.333333%;
      }
      .offset-xl-8 {
        margin-left: 66.666667%;
      }
      .offset-xl-9 {
        margin-left: 75%;
      }
      .offset-xl-10 {
        margin-left: 83.333333%;
      }
      .offset-xl-11 {
        margin-left: 91.666667%;
      }
    }
    
    .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: -ms-flexbox !important;
      display: flex !important;
    }
    
    .d-inline-flex {
      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: -ms-flexbox !important;
        display: flex !important;
      }
      .d-sm-inline-flex {
        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: -ms-flexbox !important;
        display: flex !important;
      }
      .d-md-inline-flex {
        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: -ms-flexbox !important;
        display: flex !important;
      }
      .d-lg-inline-flex {
        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: -ms-flexbox !important;
        display: flex !important;
      }
      .d-xl-inline-flex {
        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: -ms-flexbox !important;
        display: flex !important;
      }
      .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
      }
    }
    
    .flex-row {
      -ms-flex-direction: row !important;
      flex-direction: row !important;
    }
    
    .flex-column {
      -ms-flex-direction: column !important;
      flex-direction: column !important;
    }
    
    .flex-row-reverse {
      -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important;
    }
    
    .flex-column-reverse {
      -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 {
      -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important;
    }
    
    .flex-grow-0 {
      -ms-flex-positive: 0 !important;
      flex-grow: 0 !important;
    }
    
    .flex-grow-1 {
      -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 {
      -ms-flex-pack: start !important;
      justify-content: flex-start !important;
    }
    
    .justify-content-end {
      -ms-flex-pack: end !important;
      justify-content: flex-end !important;
    }
    
    .justify-content-center {
      -ms-flex-pack: center !important;
      justify-content: center !important;
    }
    
    .justify-content-between {
      -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 {
      -ms-flex-align: start !important;
      align-items: flex-start !important;
    }
    
    .align-items-end {
      -ms-flex-align: end !important;
      align-items: flex-end !important;
    }
    
    .align-items-center {
      -ms-flex-align: center !important;
      align-items: center !important;
    }
    
    .align-items-baseline {
      -ms-flex-align: baseline !important;
      align-items: baseline !important;
    }
    
    .align-items-stretch {
      -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 {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
      }
      .flex-sm-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
      }
      .flex-sm-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
      }
      .flex-sm-column-reverse {
        -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 {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
      }
      .flex-sm-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
      }
      .flex-sm-grow-1 {
        -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 {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
      }
      .justify-content-sm-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
      }
      .justify-content-sm-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
      }
      .justify-content-sm-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
      }
      .align-items-sm-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
      }
      .align-items-sm-center {
        -ms-flex-align: center !important;
        align-items: center !important;
      }
      .align-items-sm-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
      }
      .align-items-sm-stretch {
        -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 {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
      }
      .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
      }
      .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
      }
      .flex-md-column-reverse {
        -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 {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
      }
      .flex-md-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
      }
      .flex-md-grow-1 {
        -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 {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
      }
      .justify-content-md-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
      }
      .justify-content-md-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
      }
      .justify-content-md-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
      }
      .align-items-md-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
      }
      .align-items-md-center {
        -ms-flex-align: center !important;
        align-items: center !important;
      }
      .align-items-md-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
      }
      .align-items-md-stretch {
        -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 {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
      }
      .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
      }
      .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
      }
      .flex-lg-column-reverse {
        -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 {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
      }
      .flex-lg-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
      }
      .flex-lg-grow-1 {
        -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 {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
      }
      .justify-content-lg-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
      }
      .justify-content-lg-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
      }
      .justify-content-lg-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
      }
      .align-items-lg-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
      }
      .align-items-lg-center {
        -ms-flex-align: center !important;
        align-items: center !important;
      }
      .align-items-lg-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
      }
      .align-items-lg-stretch {
        -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 {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
      }
      .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
      }
      .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
      }
      .flex-xl-column-reverse {
        -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 {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
      }
      .flex-xl-grow-0 {
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
      }
      .flex-xl-grow-1 {
        -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 {
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
      }
      .justify-content-xl-end {
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
      }
      .justify-content-xl-center {
        -ms-flex-pack: center !important;
        justify-content: center !important;
      }
      .justify-content-xl-between {
        -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 {
        -ms-flex-align: start !important;
        align-items: flex-start !important;
      }
      .align-items-xl-end {
        -ms-flex-align: end !important;
        align-items: flex-end !important;
      }
      .align-items-xl-center {
        -ms-flex-align: center !important;
        align-items: center !important;
      }
      .align-items-xl-baseline {
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
      }
      .align-items-xl-stretch {
        -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;
      }
    }
    
    .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-n1 {
      margin: -0.25rem !important;
    }
    
    .mt-n1,
    .my-n1 {
      margin-top: -0.25rem !important;
    }
    
    .mr-n1,
    .mx-n1 {
      margin-right: -0.25rem !important;
    }
    
    .mb-n1,
    .my-n1 {
      margin-bottom: -0.25rem !important;
    }
    
    .ml-n1,
    .mx-n1 {
      margin-left: -0.25rem !important;
    }
    
    .m-n2 {
      margin: -0.5rem !important;
    }
    
    .mt-n2,
    .my-n2 {
      margin-top: -0.5rem !important;
    }
    
    .mr-n2,
    .mx-n2 {
      margin-right: -0.5rem !important;
    }
    
    .mb-n2,
    .my-n2 {
      margin-bottom: -0.5rem !important;
    }
    
    .ml-n2,
    .mx-n2 {
      margin-left: -0.5rem !important;
    }
    
    .m-n3 {
      margin: -1rem !important;
    }
    
    .mt-n3,
    .my-n3 {
      margin-top: -1rem !important;
    }
    
    .mr-n3,
    .mx-n3 {
      margin-right: -1rem !important;
    }
    
    .mb-n3,
    .my-n3 {
      margin-bottom: -1rem !important;
    }
    
    .ml-n3,
    .mx-n3 {
      margin-left: -1rem !important;
    }
    
    .m-n4 {
      margin: -1.5rem !important;
    }
    
    .mt-n4,
    .my-n4 {
      margin-top: -1.5rem !important;
    }
    
    .mr-n4,
    .mx-n4 {
      margin-right: -1.5rem !important;
    }
    
    .mb-n4,
    .my-n4 {
      margin-bottom: -1.5rem !important;
    }
    
    .ml-n4,
    .mx-n4 {
      margin-left: -1.5rem !important;
    }
    
    .m-n5 {
      margin: -3rem !important;
    }
    
    .mt-n5,
    .my-n5 {
      margin-top: -3rem !important;
    }
    
    .mr-n5,
    .mx-n5 {
      margin-right: -3rem !important;
    }
    
    .mb-n5,
    .my-n5 {
      margin-bottom: -3rem !important;
    }
    
    .ml-n5,
    .mx-n5 {
      margin-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-n1 {
        margin: -0.25rem !important;
      }
      .mt-sm-n1,
      .my-sm-n1 {
        margin-top: -0.25rem !important;
      }
      .mr-sm-n1,
      .mx-sm-n1 {
        margin-right: -0.25rem !important;
      }
      .mb-sm-n1,
      .my-sm-n1 {
        margin-bottom: -0.25rem !important;
      }
      .ml-sm-n1,
      .mx-sm-n1 {
        margin-left: -0.25rem !important;
      }
      .m-sm-n2 {
        margin: -0.5rem !important;
      }
      .mt-sm-n2,
      .my-sm-n2 {
        margin-top: -0.5rem !important;
      }
      .mr-sm-n2,
      .mx-sm-n2 {
        margin-right: -0.5rem !important;
      }
      .mb-sm-n2,
      .my-sm-n2 {
        margin-bottom: -0.5rem !important;
      }
      .ml-sm-n2,
      .mx-sm-n2 {
        margin-left: -0.5rem !important;
      }
      .m-sm-n3 {
        margin: -1rem !important;
      }
      .mt-sm-n3,
      .my-sm-n3 {
        margin-top: -1rem !important;
      }
      .mr-sm-n3,
      .mx-sm-n3 {
        margin-right: -1rem !important;
      }
      .mb-sm-n3,
      .my-sm-n3 {
        margin-bottom: -1rem !important;
      }
      .ml-sm-n3,
      .mx-sm-n3 {
        margin-left: -1rem !important;
      }
      .m-sm-n4 {
        margin: -1.5rem !important;
      }
      .mt-sm-n4,
      .my-sm-n4 {
        margin-top: -1.5rem !important;
      }
      .mr-sm-n4,
      .mx-sm-n4 {
        margin-right: -1.5rem !important;
      }
      .mb-sm-n4,
      .my-sm-n4 {
        margin-bottom: -1.5rem !important;
      }
      .ml-sm-n4,
      .mx-sm-n4 {
        margin-left: -1.5rem !important;
      }
      .m-sm-n5 {
        margin: -3rem !important;
      }
      .mt-sm-n5,
      .my-sm-n5 {
        margin-top: -3rem !important;
      }
      .mr-sm-n5,
      .mx-sm-n5 {
        margin-right: -3rem !important;
      }
      .mb-sm-n5,
      .my-sm-n5 {
        margin-bottom: -3rem !important;
      }
      .ml-sm-n5,
      .mx-sm-n5 {
        margin-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-n1 {
        margin: -0.25rem !important;
      }
      .mt-md-n1,
      .my-md-n1 {
        margin-top: -0.25rem !important;
      }
      .mr-md-n1,
      .mx-md-n1 {
        margin-right: -0.25rem !important;
      }
      .mb-md-n1,
      .my-md-n1 {
        margin-bottom: -0.25rem !important;
      }
      .ml-md-n1,
      .mx-md-n1 {
        margin-left: -0.25rem !important;
      }
      .m-md-n2 {
        margin: -0.5rem !important;
      }
      .mt-md-n2,
      .my-md-n2 {
        margin-top: -0.5rem !important;
      }
      .mr-md-n2,
      .mx-md-n2 {
        margin-right: -0.5rem !important;
      }
      .mb-md-n2,
      .my-md-n2 {
        margin-bottom: -0.5rem !important;
      }
      .ml-md-n2,
      .mx-md-n2 {
        margin-left: -0.5rem !important;
      }
      .m-md-n3 {
        margin: -1rem !important;
      }
      .mt-md-n3,
      .my-md-n3 {
        margin-top: -1rem !important;
      }
      .mr-md-n3,
      .mx-md-n3 {
        margin-right: -1rem !important;
      }
      .mb-md-n3,
      .my-md-n3 {
        margin-bottom: -1rem !important;
      }
      .ml-md-n3,
      .mx-md-n3 {
        margin-left: -1rem !important;
      }
      .m-md-n4 {
        margin: -1.5rem !important;
      }
      .mt-md-n4,
      .my-md-n4 {
        margin-top: -1.5rem !important;
      }
      .mr-md-n4,
      .mx-md-n4 {
        margin-right: -1.5rem !important;
      }
      .mb-md-n4,
      .my-md-n4 {
        margin-bottom: -1.5rem !important;
      }
      .ml-md-n4,
      .mx-md-n4 {
        margin-left: -1.5rem !important;
      }
      .m-md-n5 {
        margin: -3rem !important;
      }
      .mt-md-n5,
      .my-md-n5 {
        margin-top: -3rem !important;
      }
      .mr-md-n5,
      .mx-md-n5 {
        margin-right: -3rem !important;
      }
      .mb-md-n5,
      .my-md-n5 {
        margin-bottom: -3rem !important;
      }
      .ml-md-n5,
      .mx-md-n5 {
        margin-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-n1 {
        margin: -0.25rem !important;
      }
      .mt-lg-n1,
      .my-lg-n1 {
        margin-top: -0.25rem !important;
      }
      .mr-lg-n1,
      .mx-lg-n1 {
        margin-right: -0.25rem !important;
      }
      .mb-lg-n1,
      .my-lg-n1 {
        margin-bottom: -0.25rem !important;
      }
      .ml-lg-n1,
      .mx-lg-n1 {
        margin-left: -0.25rem !important;
      }
      .m-lg-n2 {
        margin: -0.5rem !important;
      }
      .mt-lg-n2,
      .my-lg-n2 {
        margin-top: -0.5rem !important;
      }
      .mr-lg-n2,
      .mx-lg-n2 {
        margin-right: -0.5rem !important;
      }
      .mb-lg-n2,
      .my-lg-n2 {
        margin-bottom: -0.5rem !important;
      }
      .ml-lg-n2,
      .mx-lg-n2 {
        margin-left: -0.5rem !important;
      }
      .m-lg-n3 {
        margin: -1rem !important;
      }
      .mt-lg-n3,
      .my-lg-n3 {
        margin-top: -1rem !important;
      }
      .mr-lg-n3,
      .mx-lg-n3 {
        margin-right: -1rem !important;
      }
      .mb-lg-n3,
      .my-lg-n3 {
        margin-bottom: -1rem !important;
      }
      .ml-lg-n3,
      .mx-lg-n3 {
        margin-left: -1rem !important;
      }
      .m-lg-n4 {
        margin: -1.5rem !important;
      }
      .mt-lg-n4,
      .my-lg-n4 {
        margin-top: -1.5rem !important;
      }
      .mr-lg-n4,
      .mx-lg-n4 {
        margin-right: -1.5rem !important;
      }
      .mb-lg-n4,
      .my-lg-n4 {
        margin-bottom: -1.5rem !important;
      }
      .ml-lg-n4,
      .mx-lg-n4 {
        margin-left: -1.5rem !important;
      }
      .m-lg-n5 {
        margin: -3rem !important;
      }
      .mt-lg-n5,
      .my-lg-n5 {
        margin-top: -3rem !important;
      }
      .mr-lg-n5,
      .mx-lg-n5 {
        margin-right: -3rem !important;
      }
      .mb-lg-n5,
      .my-lg-n5 {
        margin-bottom: -3rem !important;
      }
      .ml-lg-n5,
      .mx-lg-n5 {
        margin-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-n1 {
        margin: -0.25rem !important;
      }
      .mt-xl-n1,
      .my-xl-n1 {
        margin-top: -0.25rem !important;
      }
      .mr-xl-n1,
      .mx-xl-n1 {
        margin-right: -0.25rem !important;
      }
      .mb-xl-n1,
      .my-xl-n1 {
        margin-bottom: -0.25rem !important;
      }
      .ml-xl-n1,
      .mx-xl-n1 {
        margin-left: -0.25rem !important;
      }
      .m-xl-n2 {
        margin: -0.5rem !important;
      }
      .mt-xl-n2,
      .my-xl-n2 {
        margin-top: -0.5rem !important;
      }
      .mr-xl-n2,
      .mx-xl-n2 {
        margin-right: -0.5rem !important;
      }
      .mb-xl-n2,
      .my-xl-n2 {
        margin-bottom: -0.5rem !important;
      }
      .ml-xl-n2,
      .mx-xl-n2 {
        margin-left: -0.5rem !important;
      }
      .m-xl-n3 {
        margin: -1rem !important;
      }
      .mt-xl-n3,
      .my-xl-n3 {
        margin-top: -1rem !important;
      }
      .mr-xl-n3,
      .mx-xl-n3 {
        margin-right: -1rem !important;
      }
      .mb-xl-n3,
      .my-xl-n3 {
        margin-bottom: -1rem !important;
      }
      .ml-xl-n3,
      .mx-xl-n3 {
        margin-left: -1rem !important;
      }
      .m-xl-n4 {
        margin: -1.5rem !important;
      }
      .mt-xl-n4,
      .my-xl-n4 {
        margin-top: -1.5rem !important;
      }
      .mr-xl-n4,
      .mx-xl-n4 {
        margin-right: -1.5rem !important;
      }
      .mb-xl-n4,
      .my-xl-n4 {
        margin-bottom: -1.5rem !important;
      }
      .ml-xl-n4,
      .mx-xl-n4 {
        margin-left: -1.5rem !important;
      }
      .m-xl-n5 {
        margin: -3rem !important;
      }
      .mt-xl-n5,
      .my-xl-n5 {
        margin-top: -3rem !important;
      }
      .mr-xl-n5,
      .mx-xl-n5 {
        margin-right: -3rem !important;
      }
      .mb-xl-n5,
      .my-xl-n5 {
        margin-bottom: -3rem !important;
      }
      .ml-xl-n5,
      .mx-xl-n5 {
        margin-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;
      }
    }
    /*# sourceMappingURL=bootstrap-grid.css.map */

/* Font-Family Calls
========================================================================== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}
html {
	scroll-behavior: smooth;
	overflow-x:hidden;
	--scrollbarBG: #f0f2f5;
	--thumbBG: rgba(19, 53, 90, 0.15);
  }


/*============== FANCY SCROLLBAR ====================*/
::-webkit-scrollbar {
width: 11px;
}
body {
scrollbar-width: thin;
scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
::-webkit-scrollbar-track {
background: var(--scrollbarBG);
}
::-webkit-scrollbar-thumb {
background-color: var(--thumbBG) ;
border-radius: 6px;
border: 3px solid var(--scrollbarBG);
}

/*====================
BASE BUTTON STYLE
======================*/
.pill,
button,
.btn,
.hs-button {
  background-color: #6B6B6B;
  border-radius: 50px;
  border: 2px solid;
  border-color: #6B6B6B;
  color: #fff;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  line-height: 1;
  text-align: center;
  cursor:pointer;
  padding: 0.75rem 1.75rem;
  transition: all 300ms ease-in-out;
  width: fit-content;
}

.pill {
  text-transform: none;
}

.btn--nocaps {
  text-transform: none;
}


.btn--reverse {
  background-color: transparent;
  border-color: inherit;
  color: #171717;
}

button {
  border: none;
  outline: none;
}

button:disabled,
.btn:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

button:hover,
.btn:hover,
.hs-button:hover {
  background-color: #21222A;
  border-color: #21222A;
  color: #FFF;
  text-decoration: none;
}

button:focus,
.btn:focus,
.hs-button:focus {
  /* background-color: #21222A;
  border-color: #21222A;
  color: #FFF;
  text-decoration: none; */
}

button:active,
.btn:active, 
.hs-button:active {
  /* background-color: #71727A;
  border-color: #71727A;
  color: #FFF;
  text-decoration: none; */
}

.btn--round {
  border-radius: 100px;
  padding: 1rem;
  width: 50px;
  height: 50px;
}

.btn--round .cta__icon {
  margin-left: 0;
  margin-right: 0;
}

.btn--full-width {
  width: 100%;
}

.icon--arrow {
  transition: 500ms;
}

.icon--arrow--down {
  transform: rotate(90deg);
}

.active .icon--arrow--down {
  transform: rotate(270deg);
}

.icon--arrow--up {
  transform: rotate(-90deg);
}

.active .icon--arrow--up {
  transform: rotate(450deg);
}

.icon--arrow--left {
  transform: rotate(180deg);
}

.text-link {
  display: inline-block;
}

/*====================
BUTTON STYLE -- COLORS
======================*/

/*---  White ---*/
.btn--white {
  background-color: #fff;
  color: #3790F4;
  border-color: #fff;
}

.btn--white:focus,
.btn--white:hover {
  background-color: #F1F4FA;
  border-color: #fff;
}


/*--- Primary ---*/

.btn--primary {
  background-color: #3790F4;
  border-color: #3790F4;
  color: #FFFFFF;
}

.btn--primary-reverse, .btn--blue-reverse {
  background-color: transparent;
  border-color: inherit;
  color: #0567D5;
  border: solid transparent;
  background-image: linear-gradient(270deg, #797EF6 0%, #0567D5 100%), linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
}

a:hover .btn--primary,
.btn--primary:hover,
.btn--primary:focus {
  background-color:  #055ec2;
  border-color:  #055ec2;
}
.btn--primary:active {
  background-color:  #002c90;
  border-color:  #002c90;
}
a:hover .btn--primary-reverse,
.btn--primary-reverse:hover, a:hover .btn--blue-reverse,
.btn--blue-reverse:hover {
  background-color: #3790F4;
  background: linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: none;
}

/*--- Secondary ---*/

.btn--secondary {
  background-color: #5DC435;
  border-color: #5DC435;
  color: #FFFFFF;
}


.pill--secondary {
  background-color: #5DC435;
  border-color: #5DC435;
  color: #FFFFFF; 
}

.btn--secondary-reverse, .btn--green-reverse {
  background-color: transparent;
  border-color: inherit;
  color: #5DC435;
}

.btn--secondary-alt {
  background-color: #fff;
  border-color: #fff;
  color: #5DC435;
}

.btn--secondary-alt:hover,
.btn--secondary-alt.active {
  background-color: #fff;
  border-color: #5DC435;
  color: #5DC435;
}

a:hover .btn--secondary,
.btn--secondary:hover,
.btn--secondary:focus {
  background-color:  #2b9203;
  border-color:  #2b9203;
}
.btn--secondary:active {
  background-color:  #006000;
  border-color:  #006000;

}

a:hover .btn--secondary-reverse,
.btn--secondary-reverse:hover, a:hover .btn--green-reverse,
.btn--green-reverse:hover {
  background-color: #5DC435;
  border-color: #5DC435;
  color: #FFFFFF;
}

/*--- cobalt ---*/

.btn--navy {
  background-color: #303651;
  border-color: #303651;
  color: #FFFFFF;
}

.pill--navy {
  background-color: #303651;
  border-color: #303651;
  color: #FFFFFF;
}

.btn--navy-reverse {
  background-color: transparent;
  border-color: inherit;
  color: #303651;
}

a:hover .btn--navy,
.btn--navy:hover,
.btn--navy:focus {
  background-color:  #00041f;
  border-color:  #00041f;
}
.btn--navy:active {
  background-color:  #000000;
  border-color:  #000000;

}

.btn--no-hover:hover {
  background-color: inherit!important;
  border-color: inherit!important;
}

/*--- Tertiary ---*/

.btn--tertiary,
.btn--orange {
  background-color: #FF9900;
  border-color: #FF9900;
  color: #FFFFFF;
}

.pill--orange {
  background-color: #FF9900;
  border-color: #FF9900;
  color: #FFFFFF;
}

.btn--orange-reverse,
.btn--tertiary-reverse {
  background-color: transparent;
  border-color: #FF9900;
  color: #FF9900;
}

a:hover .btn--orange,
.btn--orange:hover,
.btn--orange:focus,
a:hover .btn--tertiary,
.btn--tertiary:hover,
.btn--tertiary:focus {
  background-color:  #cd6700;
  border-color: #cd6700;
}

.btn--orange:active,
.btn-tertiary:active {
  background-color:  #9b3500;
  border-color: #9b3500;
}

.btn--orange-reverse:hover {
  background-color: #FF9900;
  border-color: #FF9900;
  color: #fff;
}

/*--- Rust ---*/
.btn--rust {
  background-color: #DC562E;
  border-color: #DC562E;
  color: #FFFFFF;
}

.pill--rust {
  background-color: #DC562E;
  border-color: #DC562E;
  color: #FFFFFF;
}

.btn--rust-reverse {
  background-color: transparent;
  border-color: #DC562E;
  color: #DC562E;
}

a:hover .btn--rust,
.btn--rust:hover,
.btn--rust:focus {
  background-color:  #aa2400;
  border-color: #aa2400;
}

.btn--rust:active {
  background-color:  #780000;
  border-color: #780000;
}

.btn--rust-reverse:hover {
  background-color: #DC562E;
  border-color: #DC562E;
  color: #fff;
}


.btn--offwhite {
  background-color: #F1F4FA;
  border-color: #F1F4FA;
  color: #171717;
}

.btn--offwhite-reverse {
  background-color: transparent;
  border-color: inherit;
  color: #F1F4FA;
}

a:hover .btn--offwhite,
.btn--offwhite:hover,
.btn--offwhite:focus,
.btn--offwhite:active {
  background-color: #F1F4FA;
  border-color: #F1F4FA;
}


/*--- Blue Gradient ---*/
.btn--blue-gradient, a.btn--blue-gradient {
  background-color: #3790F4;
  background: linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
  border-color: transparent;
  color: #FFFFFF;
  border: 0px;
}
.btn--blue-gradient span, a.btn--blue-gradient span {
  padding-top: 1px;
}

.pill--blue-gradient {
  background-color: #3790F4;
  background: linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
  border-color: transparent;
  color: #FFFFFF;
  border: 0px;
}

a:hover .btn--blue-gradient,
.btn--blue-gradient:hover,
.btn--blue-gradient:focus {
  opacity: .7;
  border-color:  transparent;
  border: 0px;
}
.btn--blue-gradient:active {
  opacity: .7;
  border-color:  transparent;
  border: 0px;

}
/*--- Green Gradient ---*/
.btn--green-gradient {
  background-color: #5DC435;
  background: linear-gradient(274.11deg, #5DC435 3.35%, #2B920A 96.65%);
  border-color: transparent;
  color: #FFFFFF;
  border: 0px;
}

.pill--green-gradient {
  background-color: #5DC435;
  background: linear-gradient(274.11deg, #5DC435 3.35%, #2B920A 96.65%);
  border-color: transparent;
  color: #FFFFFF;
  border: 0px;
}

a:hover .btn--green-gradient,
.btn--green-gradient:hover,
.btn--green-gradient:focus {
  opacity: .7;
  border-color:  transparent;
  border: 0px;
}
.btn--green-gradient:active {
  opacity: .7;
  border-color:  transparent;
  border: 0px;

}

/*--- Orange Gradient ---*/
.btn--orange-gradient {
  background-color: #FF9900;
  background: linear-gradient(94.11deg, #DC562E 3.35%, #FF9900 96.65%);
  border-color: transparent;
  border: 0px;
  color: #FFFFFF;
}

.pill--orange-gradient {
  background-color: #FF9900;
  background: linear-gradient(94.11deg, #DC562E 3.35%, #FF9900 96.65%);
  border-color: transparent;
  border: 0px;
  color: #FFFFFF;
}

a:hover .btn--orange-gradient,
.btn--orange-gradient:hover,
.btn--orange-gradient:focus {
  opacity: .7;
  border: 0px;
  border-color:  transparent;
}
.btn--orange-gradient:active {
  opacity: .7;
  border: 0px;
  border-color:  transparent;
}

/*--- Rust Gradient ---*/
.btn--rust-gradient {
  background-color: #DC562E;
  background: linear-gradient(94.11deg, #A42500 3.35%, #DC562E 96.65%);
  border-color: transparent;
  border: 0px;
  color: #FFFFFF;
}

.pill--rust-gradient {
  background-color: #DC562E;
  background: linear-gradient(94.11deg, #A42500 3.35%, #DC562E 96.65%);
  border-color: transparent;
  border: 0px;
  color: #FFFFFF;
}

a:hover .btn--rust-gradient,
.btn--rust-gradient:hover,
.btn--rust-gradient:focus {
  opacity: .7;
  border: 0px;
  border-color:  transparent;
}
.btn--rust-gradient:active {
  opacity: .7;
  border: 0px;
  border-color:  transparent;
}

/*--- Link Text ---*/
.btn--link-text {
  background-color: unset;
  border-color: transparent;
  border: 0px;
  color: #3790F4;
}

.pill--link-text {
  background-color: ;
  border-color: transparent;
  border: 0px;
  color: #3790F4;
}

a:hover .btn--link-text,
.btn--link-text:hover,
.btn--link-text:focus {
  background-color: unset;
  border-color:  transparent;  
  border: 0px;
  color: #171717;
}

.btn--white {
  background-color: white;
  color: #3790F4;
  border-color: white;
}

.btn--white h6 {
  color: #3790F4;
}

.btn--white h5 {
  color: #3790F4;
}

.btn--white-reverse {
  background-color: transparent;
  border-color: white;
  color: white;
}

a:hover .btn--white,
.btn--white:hover,
.btn--white:focus,
.btn--white:active {
  background-color: #F1F4FA;
  border-color: #F1F4FA;
  color: #3790F4;
}

a:hover .btn--white-reverse,
.btn--white-reverse:hover,
.btn--white-reverse:focus,
.btn--white-reverse:active {
  background-color: #FFFFFF;
  border-color: #F1F4FA;
  color: #3790F4;
}

.btn--white-alt {
  background-color: #fff;
  border-color: #fff;
  color: #3790F4;
}

a:hover .btn--white-alt,
.btn--white-alt.active,
.btn--white-alt:hover,
.btn--white-alt:focus,
.btn--white-alt:active {
  background-color: #3790F4;
  border-color: #3790F4;
  color: #fff;
}


.btn--nav {
  background-color: transparent;
  padding: 1rem;
  margin-left: 1rem;
}
.js-scrolled .btn--nav,
.js-scrolled nav .btn { border-radius: 0;}
.btn--nav.mobile-close {
  box-shadow: none;
  position: absolute;
  padding: 1rem;
  top: 30px;
  right: 30px;
  cursor:pointer;
  border: none;
}

.btn--social {
  background-color: transparent;
  box-shadow: none;
  color: #FF9900;
  padding: 0;
}

.btn--social + .btn--social {
  margin-left: .5rem;
}

.btn--social:hover,
.btn--social:focus,
.btn--social:active {
  background-color: transparent;
}

.btn--social path {
  fill: #FF9900;
}

.btn--social:hover path,
.btn--social:focus path,
.btn--social:active path {
  fill: #FF9900
}

.btn--social span {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.btn--social svg {
  height: 30px;
  padding: .25rem;
}

footer .btn--social {
  background-color: #F1F4FA;
  color: #171717;
  width: 30px;
  display: inline-block;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-left: 1rem;
}

footer .btn--social:hover,
footer .btn--social:focus,
footer .btn--social:active {
  background-color: #3790F4;
}

footer .btn--social path {
  fill: #171717;
}

.btn--social:hover path,
.btn--social:focus path,
.btn--social:active path {
  fill: #171717;
}


.btn--fancy {
  display: inline-flex;
  align-items: center;
}

.btn--fancy .btn__content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-items: flex-start;
  text-align: left;
  margin: 0 0 0 1rem;
}

.btn--fancy span {
  width: 100%;
}

.btn--fancy path {
  /* stroke: #fff; */
}
.btn--fancy h5,
.btn--fancy .brand-h5 {
  text-transform: capitalize;
  font-family: Bitter, serif;
  letter-spacing: 0.5px;
  line-height: 1.1;
}
.btn h2,
.btn h3,
.btn h4,
.btn h5,
.btn h6 {
  margin: 0;
}




/*====================
BUTTON STYLES -- STATES
======================*/
.btn--state-success {

}
.btn--state-danger {

}

.text-cta {
  display: flex;
  align-items: center;
}
.text-cta::after {
  display: block;
  content: "";
  background-image: url(https://www.trycents.com/hubfs/theme-cents2022/assets/icon_arrow.svg);
  height:12px;
  width:12px;
  margin-left: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: ease 300ms all;
}

.text-cta:hover::after {
  display: block;
  content: "";
  background-image: url(https://www.trycents.com/hubfs/theme-cents2022/assets/icon_arrow2.svg);
  height:12px;
  width:12px;
  margin-left: 15px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: ease 300ms all;
}
/* Form */
/*

  form_header_background
  form_header_text_color
  form_background_color

  form_border_color
  form_label_color

  form_field_background_color
  form_field_border_color
  form_field_focus_border_color
  form_button_text_color
  form_button_background_color

  */


  form {
    font-family: Inter, sans-serif;
  }

  .form {
    max-width: 700px;
    margin: 0px auto;
    position: relative;
    z-index: 10;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  }

  .form-noShadow {
    box-shadow: none!important;
  }

  .form-noMargin {
    /* margin: 0; */
  }

  .form--full-width {
    max-width: 100%;
  }

  .form--lity {
    max-height: 85vh;
    overflow-y: auto;
  }

  .hs-form-field {
    margin-bottom: 1.4rem;
    position: relative;
  }

  /* Labels */

  form label {
    color: #6F7090;
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding-top: 0;
    margin-bottom: 0.35rem;
    text-align: left;
    width: auto;
  }

  /* Help text - legends */

  form legend {
    color: #171717;
    font-size: 0.875rem;
  }

  /* Inputs */

  .input {
    position: relative;
  }

  input[type=text],
  input[type=email],
  input[type=password],
  input[type=tel],
  input[type=number],
  input[type=file],
  select,
  textarea {
    background-color: #FFF;
    border: 2px solid #F1F4FA;
    border-radius: 0px;
    color: #171717;
    display: inline-block;
    font-size: 0.875rem;
    padding: 0 0.7rem;
    width: 100%;
    height: 65px;
    line-height: 65px;
    border: 4px solid #C0C0C0;
    /* box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05); */
    border-radius: 2px;
  }

  textarea {
    height: auto!important;
    padding: 0.7rem;
  }

  .form.has-padding {
    padding: 3rem 2rem;
  }


    .form-title,
    .widget-type-form .form-title {
      margin-bottom: 20px;
      color: #3790F4;
      font-weight: bold;
    }

    .widget-type-form form {
      padding: 2rem 0;
      /* background: ; */
      /* border: 1px solid ; */
    }

    .hs-richtext h5,
    .hs-form label {
      font-size: 1.125rem;
      display: block;
      float: none;
      width: auto;
      font-weight: 400;
      text-align: left;
      line-height: 1.5;
      padding-top: 0;
      margin-bottom: .625rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    }

    .hs-richtext h5,
    .hs-form .hs-form-field.hs-fieldtype-radio > label,
    .hs-form .hs-form-field.hs-fieldtype-checkbox > label {
      color: #6B6B6B;
    }

    .hs-fieldtype-select select.hs-input {
      line-height: 1.3;
      font-size: 14px;
      font-weight: 400;
      color: #6B6B6B;
      font-family: Sora, serif;
      padding: 0 20px;
      background-image: url("https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/arrow.svg");
      background-repeat: no-repeat;
      background-position: calc(100% - 20px) center;
    }

    .hs-fieldtype-select label {
      /* display: none; */
      opacity: 0;
    }

    
    .form-innerLabel .hs-form .hs-form-field:not(.hs-fieldtype-radio):not(.hs-fieldtype-checkbox)>label {
      position: absolute;
      top: 16px;
      left: 20px;
      margin: 0;
      z-index: 1;

    }
    .form-innerLabel .hs-form .hs-form-field:not(.hs-fieldtype-radio):not(.hs-fieldtype-checkbox)>label.labelfocus {
      top: 5px;
      transition: all .2s;
      font-size: 10px;
      line-height: 12px;
    }
   
    .hideLabel .hs-form-field > label {
      display: none;
    }



    input:not([type=checkbox]):not([type=radio]):not([type=submit]),
    .hs-input,
    .hs-search-field__input {
      -webkit-appearance: none;
      display: inline-block;
      width: 100%!important;
      height: 48px!important;
      padding: 5px 18px 0;
      font-size: 14px;
      font-weight: normal;
      line-height: 48px;
      color: #6B6B6B;
      background-color: #F7FAFB;
      border-radius: 5px;
      border: 1px solid #DDE0E6;
      font-family: Inter, sans-serif;
    }

    textarea.hs-input {
      height: auto!important;
      line-height: 1.2!important;
      padding: 15px 20px 13px!important;
    }

    input[type=checkbox],
    input[type=radio] {
      -webkit-appearance: none;
      cursor: pointer;
      width: 1.875rem!important;
      height: 1.875rem!important;
      padding: 0!important;
      margin: 3px 5px 3px 0px;
      line-height: normal;
      border: 2px solid #F1F4FA;
      background-color: #fff;
      border-radius: 50px;
      outline: none;
    }

    input[type=radio] {
      border-radius: 50%;
    }

    input[type=checkbox]:checked,
    input[type=radio]:checked {
      background: #FF9900;
      border-color: #FF9900;
      background-image: url('');
      background-repeat: no-repeat;
      background-position: center;
    }

    .hs-input[type=file] {
      background-color: #fff;
      padding: initial;
      border: initial;
      line-height: initial;
      box-shadow: none;
    }

    .hs-input:-moz-placeholder {
      color: #F1F4FA;
      font-family: Inter, sans-serif;
    }

    .hs-input::-webkit-input-placeholder {
      color: #F1F4FA;
      font-family: Inter, sans-serif;
    }

    .hs-input input,
    .hs-input textarea {
      transition: border 0.2s linear;
    }

    input:not([type=checkbox]):not([type=radio]):not([type=submit]):focus,
    .hs-input:focus,
    .hs-search-field__input:focus {
      outline: none;
      border-color: #FF9900;
    }

    textarea.hs-input {
      height: auto;
    }

    select[multiple].hs-input {
      height: inherit;
    }


    input[type="submit"] {
      width: auto;
      border-radius: 25px!important;
      background: #3790F4;
      border: none;
      color: #fff;
      font-size: 16px;
      line-height: 1;
      padding: 12px 25px;
      transition: .25s;
      text-transform: none!important;
      outline: none;
    }

    .form--btnFull input[type="submit"] {
      width: 100%;
    }

    .wide-button input[type="submit"] {
      width: 100%;
    }

    input[type="submit"]:hover,
    input[type="submit"]:focus,
    input[type="submit"]:active {
      background-color:  #0035a3;
      color: #fff;
      text-decoration: none;
    }

    fieldset {
      max-width: none!important;
    }

    /* Force single column fields to full width inside of fieldsets */
    fieldset.form-columns-1 .hs-input:not([type=radio]):not([type=checkbox]) {
      width: 100% !important;
    }

    input.hs-input.error,
    div.field.error input,
    div.field.error textarea,
    div.field.error .chzn-choices,
    textarea.hs-input.error,
    select.hs-input.error {
      border-color: #c87872!important;
    }
    input.hs-input.error:focus,
    div.field.error input:focus,
    div.field.error textarea:focus,
    div.field.error .chzn-choices:focus,
    textarea.hs-input.error:focus,
    select.hs-input.error:focus {
      border-color: #c87872;
    }

    .actions {
      padding: 0;
    }
    .legal-consent-container .hs-form-booleancheckbox-display > span {
      margin-left: 0!important;
    }

    .inputs-list {
      margin: 0 0 5px;
      width: 100%;
      padding-left: 0;
    }
    .inputs-list > li {
      display: block;
      padding: 0;
      width: 100%;
      padding-top: 0;
    }
    .inputs-list label {
      display: block;
      float: none;
      width: auto;
      padding: 0;
      line-height: 18px;
      text-align: left;
      white-space: normal;
      font-weight: normal;
      position: relative;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-align: center !important;
      align-items: center !important;
    }

    .legal-consent-container .inputs-list label {
      -ms-flex-align: start !important;
      align-items: start !important;
    }

    .inputs-list:first-child {
      padding-top: 6px;
    }
    .inputs-list > li + li {
      padding-top: 2px;
    }

    .inputs-list label > input {
      margin-right: 10px;
      width: 100%!important;
      max-width: 28px;
    }

    .inputs-list label > input,
    .inputs-list label > span {
      vertical-align: middle;
    }

    .inputs-list label > span {
      font-size: .875rem;
      color: #6B6B6B;
      text-transform: uppercase;
      font-family: Inter, sans-serif;
      font-weight: 700;
    }



    ul.no-list {
      list-style: none;
    }

    .field {
      margin-bottom: 1.25rem;
    }
    .hideLabel .field {margin-bottom: 1.7rem;}

    .hs-field-desc {
      color: #6B6B6B;
      margin: 0px 0px 6px;
      font-size: 14px;
    }

    .hs-form-required {
      color: #3790F4;
      display: none;
    }

    .hs-error-msgs label {
      color: #c87872!important;
      margin: 0;
      padding: 5px;
      display: inline-block!important;
      font-size: 13px;
      opacity: 1!important;
    }

    .hs_error_rollup {
      display: none;
    }

    .dnd-section .form-inline ul.hs-error-msgs {
      position: absolute;
      margin-top: 10px;
    }


    .hs-richtext {
      margin-bottom: 3px;
      line-height: 1.2;
      font-size: 16px;
      color: #6B6B6B;
    }
    .hs-richtext hr {
      text-align: left;
      margin-left: 0;
      width: 91%;
    }

    .hs-form input[type="file" i] #file-upload-button,
    .hs-form input[type="file" i]::-webkit-file-upload-button {
      background-color: #797EF6;
      border: none!important;
      appearance: none!important;
      color: #fff;
      outline: none!important;
      position: absolute;
      right: 15px;
      text-transform: uppercase;
      font-family: 'Inter',sans-serif;
      font-weight: 700;
      padding: .75rem 1rem;
      height: auto;
      line-height: 1;
      border-radius: 2px;
      font-size: .875rem;
      top: 12px;
      letter-spacing: 1px;
      z-index: 100;
  }
  .hs-form input[type="file" i] > span,
  .hs-form input[type="file" i] #file-upload-button + span,
  .hs-form input[type="file" i]::-webkit-file-upload-button + span {
    display: none!important;
  }

  .hs-fieldtype-file {
    position: relative;
  }

  @media (max-width: 1025px) {
    .hs-form input[type="file" i] #file-upload-button,
    .hs-form input[type="file" i]::-webkit-file-upload-button {
      font-size: .75rem;
      padding: .5rem;
      top: 19px;
    }

  }


  .hs-form .hs-form-field.hs-fieldtype-file >label {
    width: 100%;
    height: calc(100% - 4px);
    background-color: #fff;
    top: 0!important;
    left: 0!important;
    padding: 20px;
  }

    .grecaptcha-badge {
      margin: 0 auto;
    }

    .email-correction, .email-validation {
      padding-top: 3px;
      font-size: 12px;
    }
    .email-correction a,
    .email-validation a {
      cursor: pointer;
    }
    @media (max-width: 400px),
    (min-device-width: 320px) and (max-device-width: 480px) {
      .email-correction form .form-columns-2 .hs-form-field,
      .email-correction form .form-columns-3 .hs-form-field,
      .email-validation form .form-columns-2 .hs-form-field,
      .email-validation form .form-columns-3 .hs-form-field {
        float: none;
        width: 100%;
      }
      .email-correction form .form-columns-2 .hs-form-field .hs-input,
      .email-correction form .form-columns-3 .hs-form-field .hs-input,
      .email-validation form .form-columns-2 .hs-form-field .hs-input,
      .email-validation form .form-columns-3 .hs-form-field .hs-input {
        width: 90%;
      }
      .email-correction form .form-columns-2 .hs-form-field input[type=checkbox],
      .email-correction form .form-columns-2 .hs-form-field input[type=radio],
      .email-correction form .form-columns-3 .hs-form-field input[type=checkbox],
      .email-correction form .form-columns-3 .hs-form-field input[type=radio],
      .email-validation form .form-columns-2 .hs-form-field input[type=checkbox],
      .email-validation form .form-columns-2 .hs-form-field input[type=radio],
      .email-validation form .form-columns-3 .hs-form-field input[type=checkbox],
      .email-validation form .form-columns-3 .hs-form-field input[type=radio] {
        width: 24px;
      }
    }

    .hs-button,
    .hs-form-field input[type=text],
    .hs-form-field input[type=email],
    .hs-form-field input[type=phone],
    .hs-form-field input[type=number],
    .hs-form-field input[type=tel],
    .hs-form-field input[type=date],
    .hs-form-field textarea {
      -webkit-appearance: none;
      -moz-appearance: none;
    }

    .hs-default-font-element,
    .hs-main-font-element {
    }


    .hubspot-link__container {
      display: none;
    }

    .grecaptcha-badge {
      margin: 0;
    }




    /* ==========================================================================
       White Form
       ========================================================================== */

       .form--primary .hs-form label {
         color: #fff;
       }

       .form--primary input[type="submit"] {
         background: #FF9900;
       }

       .form--primary input[type="submit"]:hover {
        background-color:  #cd6700;;
      }

    .form--tertiary .hs-form input[type="submit"] {
      background: #6B6B6B!important;
      color: #fff!important;
    }

    .form--tertiary .hs-form input[type="submit"]:hover,
    .form--tertiary .hs-form input[type="submit"]:focus,
    .form--tertiary .hs-form input[type="submit"]:active {
      background: #1b1b1b!important;
    }


    h3.form-title {
      font-size: 30px;
    }

    .form--white h3.form-title {
      color: #3790F4;
    }
    @media screen and (max-width: 767px) {
      h3.form-title {
        text-align: left;
      }
      .form .actions {
        text-align: center;
      }
    }

    .form--secondary .form-title,
    .form--tertiary .form-title,
    .form--primary .form-title,
    .form--black .form-title {
      color: #fff;
    }


    @media (min-width: 768px) {
      .multi-container.flex-wrap li {
        width: 100%;
        max-width: 50%;
      }
    }


    /**** Contact Form *****/

    /* Convert Radios/Checkboxes to buttons */
    .radio--custom .inputs-list {
      margin-left: -15px;
      margin-right: -15px;
      font-size: 0px;
    }
    .radio--custom .inputs-list li {
      display: inline-block;
      width: auto;
      vertical-align: top;
      margin: 0 15px 10px
    }

    .radio--custom .inputs-list label {
      display: inline-block!important;
      padding: 1rem 2.5rem;
    }

    .radio--custom .inputs-list label > input {
      position: absolute;
      max-width: 100%;
      border-radius: 2px;
      top: 0;
      left: 0;
      height: 100%!important;
      background-color: transparent!important;
      background-image: none!important;
      border: 1px solid transparent;
      /* box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08); */
      border-radius: 2px;
      margin: 0;
  }


  .radio--custom .inputs-list label > span {
    font-family: Inter, sans-serif;
    font-size: .75rem;
    color: ;
    letter-spacing: .2em;
  }

  .radio--custom .inputs-list label > input:checked {
    border-color: #5DC435;
  }

  .radio--custom .inputs-list label > input:checked + span {
  color: #5DC435;
  }

  .radio--custom input::-ms-check{
    display:none
  }

  .radio--custom input::-ms-radio{
    display:none
  }


.form-inline form {
  display: flex;
  max-width: 510px;
  margin-right: 30px;
}

.form-inline form .hs-email {
  flex: 1;
  margin-bottom: 0;
}

.form-inline form input:not([type=checkbox]):not([type=radio]):not([type=submit]) {
  border-radius: 25px 0 0 25px;
  color: #303651;
}

.form-inline form label {
  color: #303651;
  opacity: .5;
}

.form-inline form input[type="submit"] {
  border-radius: 0 25px 25px 0!important;
  padding: 16px 20px;
  background-color: #3790F4;
}

/* PHONE */
.hs-fieldtype-intl-phone.hs-input {
  display: flex;
  justify-content: space-between;
}
.hs-fieldtype-intl-phone.hs-input select {
  padding: 0px 18px !important;
}


/* BUTTON STYLES */
/* Blue/Primary */
.form-btn--primary .hs-submit input {
  background-color: #3790F4;
  border-color: #3790F4;
  color: #FFFFFF;
}
.form-btn--primary .hs-submit input:hover,
.form-btn--primary .hs-submit input:focus {
  background-color:  #055ec2;
  border-color:  #055ec2;
}
.form-btn--primary .hs-submit input:active {
  background-color:  #002c90;
  border-color:  #002c90;
}

/* Green/Secondary */
.form-btn--secondary .hs-submit input {
  background-color: #5DC435;
  border-color: #5DC435;
  color: #FFFFFF;
}
.form-btn--secondary .hs-submit input:hover,
.form-btn--secondary .hs-submit input:focus {
  background-color:  #2b9203;
  border-color:  #2b9203;
}
.form-btn--secondary .hs-submit input:active {
  background-color:  #006000;
  border-color:  #006000;
}

/* Orange/Tertiary */
.form-btn--tertiary .hs-submit input {
  background-color: #FF9900;
  border-color: #FF9900;
  color: #FFFFFF;
}
.form-btn--tertiary .hs-submit input:hover,
.form-btn--tertiary .hs-submit input:focus {
  background-color:  #cd6700;
  border-color: #cd6700;
}
.form-btn--tertiary .hs-submit input:active {
  background-color:  #9b3500;
  border-color: #9b3500;
}

/* Rust */
.form-btn--rust .hs-submit input {
  background-color: #DC562E;
  border-color: #DC562E;
  color: #FFFFFF;
}
.form-btn--rust .hs-submit input:hover,
.form-btn--rust .hs-submit input:focus {
  background-color:  #aa2400;
  border-color: #aa2400;
}
.form-btn--rust .hs-submit input:active {
  background-color:  #780000;
  border-color: #780000;
}

/* Blue Outline */
.form-btn--blue-reverse .hs-submit input {
  background-color: transparent;
  border-color: inherit;
  color: #3790F4;
  border: 2px solid #3790F4;
  background: transparent;
}
.form-btn--blue-reverse .hs-submit input:hover,
.form-btn--blue-reverse .hs-submit input:focus,
.form-btn--blue-reverse .hs-submit input:active {
  background-color:  #055ec2;
  border-color:  #055ec2;
  color: #FFFFFF;
}

/* Green Outline */
.form-btn--green-reverse .hs-submit input {
  background-color: transparent;
  border: 2px solid #5DC435;
  color: #5DC435;
}
.form-btn--green-reverse .hs-submit input:hover,
.form-btn--green-reverse .hs-submit input:focus,
.form-btn--green-reverse .hs-submit input:active {
  background-color: #5DC435;
  border-color: #5DC435;
  color: #FFFFFF;
}

/* Orange Outline */
.form-btn--orange-reverse .hs-submit input {
  background-color: transparent;
  border: 2px solid #FF9900;
  color: #FF9900;
}
.form-btn--orange-reverse .hs-submit input:hover,
.form-btn--orange-reverse .hs-submit input:focus,
.form-btn--orange-reverse .hs-submit input:active {
  background-color: #FF9900;
  border-color: #FF9900;
  color: #fff;
}

/* Rust Outline */
.form-btn--rust-reverse .hs-submit input {
  background-color: transparent;
  border: 2px solid #DC562E;
  color: #DC562E;
}
.form-btn--rust-reverse .hs-submit input:hover,
.form-btn--rust-reverse .hs-submit input:focus,
.form-btn--rust-reverse .hs-submit input:active {
  background-color: #DC562E;
  border-color: #DC562E;
  color: #fff;
}

/* Blue Gradient */
.form-btn--blue-gradient .hs-submit input {
  background-color: #3790F4;
  background: linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
  border-color: transparent;
  color: #FFFFFF;
  border: 0px;
}
.form-btn--blue-gradient .hs-submit input:hover,
.form-btn--blue-gradient .hs-submit input:focus,
.form-btn--blue-gradient .hs-submit input:active {
  opacity: .7;
  border-color:  transparent;
  border: 0px;
}

/* Green Gradient */
.form-btn--green-gradient .hs-submit input {
  background-color: #5DC435;
  background: linear-gradient(274.11deg, #5DC435 3.35%, #2B920A 96.65%);
  border-color: transparent;
  color: #FFFFFF;
  border: 0px;
}
.form-btn--green-gradient .hs-submit input:hover,
.form-btn--green-gradient .hs-submit input:focus,
.form-btn--green-gradient .hs-submit input:active {
  opacity: .7;
  border-color:  transparent;
  border: 0px;
}

/* Orange Gradient */
.form-btn--orange-gradient .hs-submit input {
  background-color: #FF9900;
  background: linear-gradient(94.11deg, #DC562E 3.35%, #FF9900 96.65%);
  border-color: transparent;
  border: 0px;
  color: #FFFFFF;
}
.form-btn--orange-gradient .hs-submit input:hover,
.form-btn--orange-gradient .hs-submit input:focus,
.form-btn--orange-gradient .hs-submit input:active {
  opacity: .7;
  border-color:  transparent;
  border: 0px;
}


/* Rust Gradient */
.form-btn--rust-gradient .hs-submit input {
  background-color: #DC562E;
  background: linear-gradient(94.11deg, #A42500 3.35%, #DC562E 96.65%);
  border-color: transparent;
  border: 0px;
  color: #FFFFFF;
}
.form-btn--rust-gradient .hs-submit input:hover,
.form-btn--rust-gradient .hs-submit input:focus,
.form-btn--rust-gradient .hs-submit input:active {
  opacity: .7;
  border-color:  transparent;
  border: 0px;
}
form input[type=checkbox]:checked{
  background: #3790f4;
    border-color: #3790f4;
}
form .inputs-list label > span{
  text-transform: unset;
  font-weight: 400;
}
.lw_contact_form .hs-form-booleancheckbox span{
  font-size: 10px;
}
.lw_contact_form .hs-form-booleancheckbox input[type=checkbox]:checked{
background: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/Website/167x167%20check.png);
    background-size: contain;
    border: none;
      background-repeat: no-repeat;

}
.lw_contact_form .hs-form-booleancheckbox .hs-input:focus,.lw_contact_form .hs-form-booleancheckbox .hs-input{
  outline-color: #3790F4;
  border-color: #3790f4;
}
figure {
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}
.has-shadow img,
img.has-shadow {
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
}
.after__rating img[src*="/cents_five-stars"] {
    min-width: 86px;
}

.image--citation { }
.image--citation span { }
.image--citation img { }
.iframe--resize iframe {
    max-width: 100%;
}

iframe {
    max-width: 100%;
}

.image--cover {
    overflow: hidden;
}

.image--cover img {
    object-fit: cover;
}

.image--avatar {
    width: 100%;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.image--rounded {
    border-radius: 16px;
}

.image--absolute {
    position: relative;
}

.image--absolute > div {
    position: relative;
    z-index: 1;
}

.image--absolute img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.image--fullwidth img {
    width: 100%!important;
}

.img-shadow {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.img-radius {
    border-radius: 16px;
}

.image--max {
    width: 100%;
    height: 100%;
}

.image--max img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-holder {
    width: 124px;
    height: 72px;
}

.logo-holder img {
    width: auto!important;
}

.hs-embed-wrapper {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%) !important;
    border-radius: 16px;
    margin: 15px auto!important;
}

img.rounded,
.rounded video {
    border-radius: 10px;
}
.section--spacer svg {
    width: 100%;
}
/* IMAGE MASK */
img.img-mask {
    -webkit-mask-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/cents_img-mask.svg);
    mask-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/cents_img-mask.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}
table {
  margin-bottom: 1rem;
  border: 1px solid #dee2e6;
}

th,
td {
  padding: 0.75rem;
  vertical-align: top;
  border: 1px solid #dee2e6;
}

thead th,
thead td {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
  border-bottom-width: 2px;
}

thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

tbody + tbody {
  border-top: 2px solid #dee2e6;
}


.banner--blog .banner__item {
  align-items: center;;
  padding: 0 90px;
}
.article__content {
  border-radius: 4px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-bottom: 7rem;
  max-width: 1340px!important;
}

.content__main,
.content__aside {
  padding: 4rem 6rem;
}

.content__aside {
  background-color: #efefef;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding:0rem!important;
  overflow: hidden;
}

.content__aside .content__inner {
  padding:4rem!important;
}

.blog {}
.blog--listing {}
.blog--post {}
.banner--blog .banner__item {
  align-items: center;;
  padding: 0 90px;
}
.article__content {
  border-radius: 4px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin-bottom: 7rem;
}

.content__main,
.content__aside {
  padding: 4rem 6rem;
}

.back i {
  font-size: 13px;
}
.link--back {
  opacity: .5;
  color: #fff!important;
  text-decoration: none!important;
}


.post-meta > div:not(:last-child) {
  border-right: 1px solid #FF9900;
}

.social--share a {
  cursor: pointer;
}

.container--author {
  border-top: 1px solid ;
  padding: 4rem 6rem;
}

.recent-resources__item {
  border-bottom: 1px solid #F1F4FA;
  text-decoration: none!important;
  color: #6B6B6B;
  font-family: Sora, serif;
}

.recent-resources__item img {
  transition: .5s;
  opacity: 0;
  visibility: hidden;
}

.recent-resources__item:hover {
  color: #FF9900;
}

.recent-resources__item:hover img {
  opacity: 1;
  visibility: visible;
}

.recent-resources__item h5 {

}

.recent-resources__item h6 {
  color: #F1F4FA;
}


.related-resources [class^="col"] {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.related-resources .tile {
  margin-bottom: 0;
}

.header--form {
  border-bottom: 1.5px solid rgba(34,34,34,.2)
}

@media (max-width: 1200px) {
  .content__main,
  .container--author {
    padding: 3rem 4rem;
  }
  .content__aside .content__inner {
  padding: 3rem !important;
  }
}

@media (max-width: 991px) {
  .post-meta > div {
    border: none!important;
  }
}

@media (max-width: 767px) {
  .content__main,
  .container--author {
    padding: 3rem 2rem;
  }
  .content__aside .content__inner {
  padding: 3rem 2rem !important;
  }
}
section {
    margin-top: -1px;
}
.section {}

.section__header--special {
    display: flex;
    align-items: flex-start;
}

.section__header--special .header__line {
    flex: 1;
    border-bottom: 1px solid;
    padding-top: 30px;
    margin-right: 2rem;
    margin-left: 2rem;
}

.section__header--special .header__subtitle {
    flex: 3;
}

/* COMPARISON MODULE */
.comparison--section .item--row {
    border-top: 1px solid #ECEDEF;
}
.comparison--section .comparison--item {
    background-color: #F1F4FA;
}
.comparison--section .comparison--item:first-of-type {
    background-color: #FFFFFF;
}
.comparison--section .item--row .item--right h5.item--gray {
    color: #9599A7;
}
.comparison--section .item--row .item--right h5.item--green {
    color: #5DC435;
}
.comparison--section .item--row .item--right h5.item--red {
    color: #DC562E;
}
.comparison--section .toggletip-container {
    position: relative;
    display: inline-block;
    display: flex;
}
.comparison--section .toggletip-bubble {
    display: inline-block;
    position: absolute;
    left: 110%;
    top: -100%;
    width: 200px;
    padding: 0.5rem;
    font-size: 14px;
    background: #F1F4FA;
    color: #6B6B6B;
    border-radius: 10px;
    border: 1px solid #ECEDEF;
}
.comparison--section button {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    border: 0;
    background: transparent;
    border: 1px solid #D9D9D9;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 3px;
}

.comparison--section button img {
    width: 100%;
}
.comparison--section h5 {
    width: fit-content;
    font-size: 14px;
}
.comparison--section .item--list-check ul,
.comparison--section .item--list-cross ul {
    margin: 0;
}
.comparison--section .item--list-check ul li,
.comparison--section .item--list-cross ul li {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    font-size: 14px;
}
.comparison--section .item--list-check ul li::before {
    display: block;
    content:'';
    height: 15px;
    width: 15px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_check_blue.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1rem;
}
.comparison--section .item--list-cross ul li::before {
    display: block;
    content:'';
    height: 15px;
    width: 15px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_x.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 1rem;
}

.anchor-menu .dropdown {
    position: relative;
    display: inline-block;
    box-shadow: none;
    padding: 0;
  }
  
  .anchor-menu .dropdown .dropdown-toggle{
    padding:15px;
    border:1px solid #F1F4FA;
    display:inline-block;
    width:100%;
    border-radius: 25px;
  }
  
  .anchor-menu .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    z-index: 1;
    overflow:auto;
    width: 90%;left: 50%;
    transform: translateX(-50%);
  }
  
  .anchor-menu .dropdown-content a{
    display:block;
  }
  
  .anchor-menu .dropdown:hover .dropdown-content {
    display: block;
  }

  .anchor-menu--module .anchor-menu--item {
    border-bottom: 1px solid #F1F4FA;
  }
  .anchor-menu--module .anchor-menu--item:last-of-type {
    border-bottom: 0;
  }
.section--banner h1 {
  margin: 0 0 .25rem;
}

.section--banner h2 {
  margin: 0 0 1.75rem;
}

.section--banner h3 {
  margin: 0 0 1.75rem;
}

.section--banner h4 {
  margin: 0 0 1.75rem;
}

.section--banner .banner-image {
  position: relative;
  z-index: 1;
  padding: 4rem;
  background-color: #fff;
}
@media (min-width: 767px) {
.section--banner .banner-image.img-pulldown {
  margin-bottom: -100px;
}
}

.section--banner .banner-image img {
  width: 100%;
}

/*** contact banner ***/
.bubble {
  text-decoration: none!important;
  background-color: rgba(15,22,64,.3);
  padding: 12px 20px;
  margin-bottom: 26px;
  border-radius: 9999px;
  display: block;
  transition: .4s ease;
  transform: scale(1);
  color: inherit!important;
}

.bubble:hover {
  transform: scale(1.1);
}

.bubble__icon {
  width: 24px;
}

.bubble__icon svg path {
  fill: ;
}

@media (min-width: 992px) {
  .section--banner-contact:before {
    content: '';
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
  }
}


/*** Section Banner TC ***/
.section--banner-tc h1 {
  font-size: 60px;
  font-weight: 600;
}

.section--banner-tc p {
  font-size: 22px;
  font-weight: 300;
}

.form-cta-wrap {
  margin-top: 46px;
}

svg.section-top  {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  /* z-index: 1; */
  /* bottom: 4px; */
}
.banner-img:not(.banner-img-noConfine) {
  position: relative;
  /* padding-bottom: 42.29%; */
}
.banner-img:not(.banner-img-noConfine) img {
  border-radius: 10px;
  /* position: absolute; */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-img img {
  border-radius: 10px;
}

.banner-img-form img {
  border-radius: 10px 10px 0 0;
}

.form--withImage {
  border-radius: 0 0 10px 10px; 
}

@media (max-width: 767px) {
  .section--banner-tc h1 {
    font-size: 2.5rem;
  }

  .form-cta-wrap .form {
    margin: 0 auto;
  }

  .cta-group {
    /* text-align: center; */
    margin-bottom: 20px;
  }
  .banner--careers br {
    display: none;
  }
}
@media screen and (max-width: 576px){
  .cta-group {
    text-align: center;
  }
}
@media (min-width: 992px) {

.banner--demo {
  border-bottom: 80px solid #fff;
}

.banner--demo .col-image {
  position: absolute;
  z-index: 1;
  right: -10vw;
  height: 130%;
  max-width: 60vw;
  bottom: -70px;
}

.banner--demo .col-image .banner-img {
  height: 100%
}

.banner--demo .col-image .banner-img img {
  height: 100% !important;
  object-fit: cover;
  width: 100%;
  object-position: left bottom;
}

}

.section--banner .post-category {
  background-color: #3790F4;
  background: linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
  color: #fff;
  border-radius: 25px;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  width: fit-content;
}
.section--banner-blog h1,
.banner-post-font h1 {
  font-size: 35px;
}
.section--banner-blog p,
.banner-post-font p {
  font-size: 18px;
}

.text-meta {
  font-size: 12px;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}
.resource--header span.text-meta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #6B6B6B;
}

.author {
  font-weight: bold;
    color: #171717;
    text-transform: uppercase;
}
.author-date {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-divider {
  margin: 0 13px;
  width: 2px;
  height: 14px;
  opacity: .2;
  background-color: #6F7090;
}

.post-breadcrumb {
  border-bottom: 1px solid #E7EAF0;
}
.post-breadcrumb .breadcrumb svg {
  width: 5px;
  height:15px
}

.blog-post__body h2 {
  font-size: 28px;
}

.blog-post__body h3 {
  font-size: 22px;
}
@media screen and (max-width: 600px) {
  .blog-post__body img {
    width: 100%;
    margin: 30px 0;
  }
}
.section--banner h4.stat-num {
  margin-bottom: 0;
}
.blog-banner-subtext p {
  font-size: 14px;
  font-style: italic;
  text-align: center;
}
.resource--contact.rounded {
  border-radius: 100px;
}
.resource--contact,
.resource--contact p {
  font-size: 12px;
  color: #303651;
  font-weight: 700;
}
.resource--contact .contact--info {
  border-right: 1px solid #F1F4FA;
}
.resource--contact .contact--info a,
.resource--contact .contact--info p {
  color: #303651;
}
.resource--contact .contact--info:last-of-type {
  border-right: 0px;
}
@media screen and (max-width: 992px) {
  .resource--contact .contact--info {
    border-right: 0px;
  }
  .resource--contact.rounded {
    border-radius:16px;
  }
}
.card {
  position: relative;
  transition: all 300ms ease-in-out;
  width: 100%;
  overflow: hidden;
  /* border-radius: 10px; */
  /* box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%) !important; */
  margin-bottom: 30px;
  /* background-color: #fff; */
  color: inherit!important;
}

.card-padding {
  padding: 24px;
}


.card a:not(.btn) {
  text-decoration: none!important;;
  color: inherit;
}

a.card:hover,
a.card:active,
a.card:focus {
  text-decoration: none;
  box-shadow: 0px 2px 45px rgba(0, 0, 0, 0.15);
}

.card__bg-img {
  object-fit: cover;
  transform: scale(1);
  object-position: 50% 50%;
  transition: all 1500ms ease;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.card:hover .card__bg-img {
  transform: scale(1.15);
  transition: all 500ms ease;
}

.card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card__content {
  position: relative;

}

.card__title {

}

/*** Card Download ***/
.card--download {
  min-height: 450px;
  color: #fff;
  padding-top: 100%;
}


/*** Card Video ***/
.card--video {
  color: #fff;
  min-height: 450px;
}

.card--video .card__cta {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

/*** Card Related ***/
.card--related {
  background-color: #fff;
}

.u-bg--white .card__related {
  background-color: #F1F4FA;
}

.card__top {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card--related .card__tag {
  text-transform: uppercase;
  letter-spacing: 2px;
}

.card--related .card__title {
  font-weight: 400;
}

.card__cta {
  font-weight: 600;
}
.icon--play {
  background-color: rgba(255,255,255,.9);
  width: 66px;
  height: 66px;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media(max-width: 767px) {
  .card--video {
    min-height: 350px!important;
  }

}


/*** Card Resource ***/
.card--resource a {
  height: 340px;
  color: #fff;
  padding: 20px 30px;
}

.card__tag {
  font-size: 12px;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: .4px;
  color: #fff;
  padding: 7.5px;
  margin-right: 10px;
  background-color: #F1F4FA;
  text-transform: uppercase;
  display: inline-block;
  width: auto;
}

.card__title {
  font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    max-width: calc(100% - 40px);
    color: #fff;
    bottom: 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    transition: color 500ms;
}

.card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .68;
  transition: opacity 500ms;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
}

.card:hover .card__overlay {
  opacity: 1;
}

/**** Card Icon ****/
.card--icon {
  padding: 1rem;
  box-shadow: 0px 2px 45px rgb(0 0 0 / 15%);
}

.card--icon .card__title {
  color: inherit;
}

.icon-group {
  color: inherit;
}

.icon-border,
.icon-holder {
  width: 100%;
  max-width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(207,208,213,.5);
  background-color: transparent;
  transition: .4s ease;
  border-radius: 50%;
  margin: 0 auto 30px;
}

.icon-border {
  margin: 0 1.5rem 0 0;
}

.icon-group:hover {
  color: inherit;
}

.icon-group:hover .icon-holder {
  background-color: #fff;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}

/** Resource Card **/
.card--margin {
  margin-bottom: 30px;
}

.align-items-stretch .card--main,
.align-items-stretch .card--main a {
  height: 100%
}

.card--main {
  box-shadow: none !important;
}

.card--main:hover {
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 10%), 0 4px 6px -2px rgb(0 0 0 / 5%) !important;
}

.card--image {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  padding: 50% 0 0 0;
}

.card--image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: scale(1.0);
  transition: .4s ease;
  object-fit: cover;
}

a:hover .card--image img {
  transform: scale(1.2);
}

.card-category {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #303651;
  color: #fff;
  border-radius: 0 0 10px;
  padding: 5px 20px 7px;
  font-weight: 700;
  font-size: 16px;
}

.card--lower {
  padding: 40px 50px;
  background-color: #F1F4FA;
  font-weight: 400;
}

.card--lower h4 {

}

.card--date {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/*** Featured Card ****/
.card--featured a {
  position: relative;
  height: 100%;
}
.card--featured a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 2, 50, 0.3) 0%, #000232 100%);
  transition: .6s ease;
}

.card--featured a:hover:before {
  background: linear-gradient(180deg, rgba(0, 2, 50, 0.73) 0%, #000232 100%);
}

.card--featured .card-category {
  background-color: #3790F4;
}

.card__bg-image {
  background-size: cover;
  background-position: center;
  padding: 80px 40px 40px;
  min-height: 350px;
}

.card__meta-overlay {
  color: #fff;
  position: relative;
}

.card__meta-overlay h4 {
  color: #fff!important;
  margin-bottom: 0!important;
}

.card__meta-overlay .card--date {
  margin-bottom: 30px;
}

.card.u-bg--white {
  color: #171717!important;
}


.card.card--board h3 {
  color: #3790F4!important;
  font-size: 20px;
}


.card--simple h3 {
  font-size: 20px;
  color: #3790F4!important ;
}

/* BLOG CARDS */
.card--blog .card--lower {
  background-color: transparent;
  padding: 25px 0px;
}
.card--blog .card--lower div.card-title {
  word-break: break-word;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}
.card--blog:hover {
  box-shadow: none !important;
}
.card--blog a:hover .card--image img {
  transform: scale(1);
  opacity: .8;
}
.card--blog .card-category {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #3790F4;
  background: linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
  color: #fff;
  border-radius: 25px;
  padding: 5px 10px;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
.card--btn {
  margin-top: -25px;
}

/* CARD FEATURED */
.card--feat .card--left-content h3 {
  font-size: 30px;
  font-weight: 600;
  color: #171717;
}
.card--feat .card--left-content p {
  font-size: 14px;
}
.card--feat .card--right {
  background-size: cover;
  background-position: center;
}
.card--feat-horizontal {
  overflow: revert !important;
}
.card--feat-horizontal .card--left {
  float: left;
  z-index:20;
  margin-top:10%
}
.card--feat-horizontal .card--right {
  float: right;
  margin-left: -60%;
  margin-top: -10%;
}
@media screen and (max-width: 992px) {
  .card--feat-horizontal .card--left {
    margin-top: -30%;
  }
  .card--feat-horizontal .card--right {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .card--feat-horizontal .card--right {
    margin-top: 0;
  }
}

/* CARD OVERLAP */
h3.card-overlap--title {
  color: #303651 !important;
}

/* CARD CALLOUT (BLUE GRADIENT) ON RESOURCE LISTING */
.card--callout .card-category {
  position: relative;
  width: fit-content;
  background: #fff;
  color: #3790F4;
}

/* CARDS SIMPLE // IMAGES */
@media (max-width: 767px) {
  .card--simple .card__image {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
}

.card--simple .card__image img {
  min-width: 30px;
  min-height: 30px;
}

/* CARD -- PRICING */
.card--pricing .cp--img img {
  /* max-width: 90px; */
  margin: auto;
}
.card--pricing .cp--title {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  font-family: Sora, serif;
}
.card--pricing .cp--price {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.card--pricing .cp--price .cp--monthly,
.card--pricing .cp--price .cp--annual {
  font-size: 3rem;
  color: #3790F4;
  font-weight: 600;
}
.card--pricing .cp--price .cp--monthly.has--annual,
.card--pricing .cp--price .cp--monthly.has--annual .cp--num,
.card--pricing .cp--price .cp--monthly.has--annual  .cp--label {
  font-size: 1.125rem;
  color: #af2a18;
  font-weight: 600;
  text-decoration: line-through;
}
.card--pricing .cp--price .cp--label {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Inter, sans-serif;
  line-height: 1.5em;
  font-weight: 400;
  font-size: 1rem;
}
.cp--subtext {
  color: #6B6B6B;
}
.card--pricing .cp--features .cpf--label {
  color: #3790F4;
}
.card--pricing .cp--features .cpf--name {
  font-family: Sora, serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}
.card--pricing .cp--feat .cp-feat--img {
  height: 30px !important;
  width: 30px !important;
  aspect-ratio: 1;
}
.card--pricing .cp--feat .cp-feat--img img {
  object-fit: contain;
}
.card--pricing .cp--feat .cp-feat--content {
  display: flex;
  align-items: center
}
.card--pricing .cp--feat .feat-content {
  font-weight: 300;
  font-size: 1.125rem;
  color: #6B6B6B;
}

/* STORY CARDS */
.story-card-item div.card-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Sora, serif;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}
footer.footer {
  position: relative;
  z-index: 100;
}

.footer a:not([href^='javascript:']):hover {
  color: #1592ff;
  text-decoration: underline;
}

.footer p {
  margin: 0;
}

.footer-contact {
  -ms-flex-align: center;
  align-items: center;
}
.footer__contact p {
  margin-bottom: 10px;
}

.footer__contact a {
  color: #3790F4;
  text-decoration: underline;
  transition: ease 300ms all;
}
.footer__contact a:hover {
  opacity: .5;
  transition: ease 300ms all;
}

.footer__nav h5 {
  font-weight: 600;
}

.footer__nav__col {
}

.footer__nav .hs-menu-wrapper ul {
  visibility: visible;
  opacity: 1;
  position: relative;
  list-style: none;
  padding: 0;
}

.footer__nav .hs-menu-wrapper ul li a {
  padding: 0;
  transition: .25s;
  color: #fff;
}

.footer__nav .hs-menu-wrapper ul li a:not([href^='javascript:']):hover {
  color: inherit;
  text-decoration: underline;
}

.footer__nav .hs-menu-wrapper ul li a:hover {
 
}

.footer__nav .hs-menu-wrapper li.hs-menu-depth-1 {
  padding-bottom: 20px;
}

.footer__nav .hs-menu-wrapper li.hs-menu-depth-1 > a {
  font-weight: 700;
  font-size: 18px;
} 

.footer__nav .hs-menu-wrapper li.hs-menu-depth-2 {
  margin-bottom: 5px;
}

.footer__nav .hs-menu-wrapper li.hs-menu-depth-2 a {
  font-size: 14px;
  opacity: .7;
  font-weight: 300;
}

.footer__nav ul.hs-menu-children-wrapper {
  padding: 15px 0 10px;
}



.footer__cta > span:last-child a.cta_button:hover {
  background-color: transparent;
}

.footer__logo {
  max-width: 120px;
}
.footer__logo a, 
.lp_footer .footer_logo a {
  stroke: none;
}
.footer__logo svg {
  width: 100%;
}
.footer__social {
  display: -ms-flexbox;
  display: flex; 
}

.footer__social a {
  color: #fff;
  margin: 0 8px;
  display: -ms-flexbox;
  display: flex; 
  -ms-flex-pack: center !important;
    justify-content: center !important;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    transition: .25s;
}

.footer__social a svg {
  max-height: 19px;
  max-width: 19px;
  width:100%;
  fill: #fff;
  display: block;
}

.footer__social a:hover {
  background-color: transparent;
}

.footer__social a:hover svg {
  fill: #3790F4;
}

.footer__bottom {
  padding: 8px 0;
}

.footer__bottom,
.footer__bottom p {
  font-size: 12px;
  font-weight: 300;
}

.footer__bottom a {
  color: #F1F4FA;
  text-decoration: none;
  font-weight: 300;
}

@media (min-width: 992px) {
  .footer-flex {
    display: -ms-flexbox;
    display: flex; 
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

}
@media screen and (max-width: 992px) {
  .footer__bottom {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .footer {
    text-align: center;
  }
  .footer__nav__col {
    text-align: left;
  }

  .footer__cta,
  .footer__social {
    margin-top: 25px;
  }

  .footer__social {
    -ms-flex-pack: center;
    justify-content: flex-start;   
  }

  .footer__nav .hs-menu-wrapper ul {
    display: block;
  }
  .footer__nav .hs-menu-wrapper li.hs-menu-depth-1>a {
    padding: 5px 0;
  }

}

@media (max-width: 767px) {
  .footer__nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__nav__col {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .footer__nav .hs-menu-wrapper li.hs-menu-depth-1 {
    margin-bottom: 0px;
  }
  .footer__nav .hs-menu-wrapper ul {
    margin: 0;
  }
}

/* LANDING PAGE */
.lp_footer .footer_logo svg {
  max-width: 100px;
}
/* OPEN POSITIONS */
#jobs-container {
    border: 1px solid #dae8f9;
}
#jobs-container .job--item {
    background-color: #FFFFFF;
    border-bottom: 1px solid #dae8f9;
}
#jobs-container .job--item:last-of-type {
    border-bottom: 0px;
}
#jobs-container .job--item .job--desc {
    margin-top: 0;
    margin-bottom: 1rem;
    font-family: Inter, sans-serif;
    line-height: 1.5em;
    font-weight: 400;
    font-size: 14px;
}
#jobs-container a.card:hover,
#jobs-container a.card:active,
#jobs-container a.card:focus {
    box-shadow: none;
}
/* PSEUDO ELEMENT DECORATIONS */
.module_wrapper {
    position: relative;
    /* overflow: hidden; */
}
.row > div {
    z-index: 11;
}
.module_wrapper section .container--xl, .module_wrapper section .container--lg, .module_wrapper section .container--md, .module_wrapper section .container--sm, .module_wrapper section .container--fluid {
    z-index:10;
}
/* BACKGROUND DECORATIONS */
.background-decor-b1,
.background-decor-b2,
.background-decor-b3,
.background-decor-o1,
.background-decor-r1,
.background-decor-g1,
.background-circles-blue-1,
.background-circles-blue-2,
.background-circles-blue-pulse,
.background-circles-orange-1,
.background-circles-orange-2,
.background-circles-green-1,
.background-circles-green-2,
.background-dec-orange-1,
.background-dec-orange-2,
.blue-circle-2,
.orange-circle-2,
.green-circle-2 {
    position: relative;
}
.background-decor-b1::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: -25vh;
    right: -30%;
    width: 100%;
    height: 200%;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_background-gradient.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .background-decor-b1::before {
        top: 0;
        height: 100%;
    }
}
@media screen and (max-width: 576px) {
    .background-decor-b1::before {
        top: 10%;
    }
}
.background-decor-b2::before {
    top: 60%;
    left: 20%;
    transform: translateY(-50%);
    width: 100%;
    height: 90vh;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_background-gradient-b2.svg);
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .background-decor-b2::before {
        top: 54%;
        left: 13%;
        transform: translateY(-50%);
        width: 90%;
    }
}
.background-decor-b3::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: -100%;
    right: -60%;
    width: 150%;
    height: 210%;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_background-gradient.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .background-decor-b3::before {
        top: -50%;
        right: -60%;
        width: 110%;
        height: 210%;
    }
}
.background-decor-o1::before {
    top: -15vh;
    left: 20%;
    width: 100%;
    height: 90vh;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_background-gradient-o1.svg);
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}
.background-decor-r1::before {
    top: -15vh;
    left: 20%;
    width: 100%;
    height: 90vh;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/blobs/cents_background-gradient-r1.svg);
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}
.background-decor-g1::before {
    top: -15vh;
    left: 20%;
    width: 100%;
    height: 90vh;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_background-gradient-g1.svg);
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .background-decor-g1::before,
    .background-decor-o1::before,
    .background-decor-r1::before {
        top: 0;
        height: 100%;
    }
}
@media screen and (max-width: 576px) {
    .background-decor-g1::before,
    .background-decor-o1::before,
    .background-decor-r1::before {
        top: 10%;
    }
}
.background-circles-blue-1::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 40%;
    left: -30%;
    width: 50%;
    height: 50%;
    transform: translateY(-50%);
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_blue-circle.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-circles-blue-2::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 75%;
    transform: translate(-50%, -50%);
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_blue-circle-2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-circles-blue-pulse::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    height: 95%;
    transform: translate(-50%, -50%);
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/cents-pulsing-default.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-circles-orange-1::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 40%;
    left: -10%;
    width: 50%;
    height: 50%;
    transform: translateY(-50%);
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_orange-circle.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-circles-orange-2::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 75%;
    transform: translate(-50%, -50%);
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_orange-circle-2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-circles-rust-1::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 40%;
    left: -10%;
    width: 50%;
    height: 50%;
    transform: translateY(-50%);
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_rust-circle.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-circles-rust-2::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 75%;
    transform: translate(-50%, -50%);
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_rust-circle-2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-circles-green-1::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 40%;
    left: -30%;
    width: 50%;
    height: 50%;
    transform: translateY(-50%);
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_green-circle.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-circles-green-2::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 75%;
    transform: translate(-50%, -50%);
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_green-circle-2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-dec-orange-1::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/blobs/cents_background-element-2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.background-dec-orange-2::before {
    z-index: -1;
    content:"";
    display: block;
    position:absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/blobs/cents_background-element-1.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.blue-circle-2::before {
    z-index: 0;
    content: "";
    display: block;
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_blue-circle-2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.blue-circle-cl::before {
    z-index: 0;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 15%;
    height: 400px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/cents_element_blue-circle-half.svg);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}
.blue-circle-tr::before {
    z-index: 0;
    content: "";
    display: block;
    position: absolute;
    top: -20%;
    right: 0;
    width: 400px;
    height: 400px;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_blue-circle-2.svg);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}
.blue-circle-tl::before {
    z-index: 0;
    content: "";
    display: block;
    position: absolute;
    top: -20%;
    left: 0;
    width: 400px;
    height: 400px;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_blue-circle-2.svg);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}
.blue-circle-cr::after {
    z-index: 0;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) scaleX(-1);
    width: 15%;
    height: 400px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/cents_element_blue-circle-half.svg);
    background-size: contain;
    background-position: center left;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .blue-circle-tl::before {
        top: -15%;
        /* left: 50%; */
        transform: translateX(-50%);
        width: 200px;
        height: 200px;
    }
    .blue-circle-cr::after {
        width: 400px;
    }
    .blue-circle-cl::before {
        width: 400px;
    }
}
.orange-circle-2::before {
    z-index: 0;
    content: "";
    display: block;
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_orange-circle-2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.green-circle-2::before {
    z-index: 0;
    content: "";
    display: block;
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/circles/cents_element_green-circle-2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
@media screen and (max-width:767px) {
    .blue-circle-2::before, .orange-circle-2::before, .green-circle-2::before {
        display: none;
    }
}
.gradient-wave-bl::after {
    z-index: 0;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/waves/cents-gradient-wave.svg);
    background-size: contain;
    background-position: bottom left;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .gradient-wave-bl::after {
        display: none;
    }
}

/* TOP DECORATIONS */
.top-decoration_wave-1::before {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    top: -50vh;
    width: 100%;
    height: 50vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_top-wave_1.svg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.top-decoration_wave-2::before {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    top: -65vh;
    width: 100%;
    height: 65vh;
    /* mix-blend-mode: multiply; */
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_top-wave_2.svg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.top-decoration_wave-3::before {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    top: -120vh;
    width: 100%;
    height: 120vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_top-wave_3.svg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.top-decoration_wave-4::before {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    top: -165vh;
    width: 100%;
    height: 165vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_top-wave_4.svg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.top-decoration_wave-5::before {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    top: 0;
    width: 100%;
    height: 85vh;
    mix-blend-mode: multiply;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/waves/cents_top-wave_5.svg);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}
.top-decoration_wave-color::before {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 140vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_top-wave-color.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}



/* BOTTOM DECORATIONS */
.bottom-decoration_wave-1::after {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    bottom: -60vh;
    width: 100%;
    height: 60vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_bottom-wave_1.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.bottom-decoration_wave-2::after {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    bottom: -60vh;
    width: 100%;
    height: 60vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_bottom-wave_2.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.bottom-decoration_wave-3::after {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    bottom: -62vh;
    width: 100%;
    height: 62vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_bottom-wave_3.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.bottom-decoration_wave-color::after {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 140vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_top-wave-color.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.bottom-decoration_wave-color2::after {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 85vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_top-wave-color2.svg);
    background-size: cover;
    background-position: top right;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .bottom-decoration_wave-color2::after {
        height: 35vh;
    }
}
.bottom-decoration_wave-large::after {
    z-index: 1;
    content:"";
    display: block;
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 115vh;
    mix-blend-mode: multiply;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_top-wave_4.svg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

/* FULL WAVE ELEMENTS */
.bottom-decoration_full-wave-1::after {
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    top: -30vh;
    width: 100%;
    height: 180vh;
    mix-blend-mode: multiply;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_wave-1.svg);
}
.bottom-decoration_full-wave-2::after {
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    top: -30vh;
    width: 100%;
    height: 160vh;
    mix-blend-mode: multiply;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/backgrounds/waves/cents_wave-2.svg);
}
.bottom-decoration_full-wave-swoop-blue::after {
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    bottom: 20vh;
    width: 100%;
    height: 150vh;
    mix-blend-mode: multiply;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/waves/cents_wave-with-curve_blue.svg);
}
@media screen and (max-width: 922px) {
    .bottom-decoration_full-wave-swoop-blue::after {
        bottom: 0vh;
    }
}
.bottom-decoration_full-wave-swoop-blue-2::after {
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    bottom: 20vh;
    width: 100%;
    height: 205vh;
    mix-blend-mode: multiply;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/waves/cents_wave-with-curve_blue-2.svg);
}
.bottom-decoration_swoop-blue-gray::after {
    z-index: 1;
    content: "";
    display: block;
    position: absolute;
    bottom: -50vh;
    width: 100%;
    height: 50vh;
    mix-blend-mode: multiply;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/backgrounds/swoop/cents_bottom_swoop_blue-gray.svg);
}


/* MACRO STYLING */
.top-wave {
    position: absolute;
    z-index: 0;
    top: -140%;
    width: 100%;
    display: block;
    height: auto;
}

.bottom-wave-gradient {
    position: absolute;
    z-index: 0;
    bottom: 0;
    width: 100%;
    display: block;
    height: auto;
}
@media screen and (max-width: 992px) {
    .bottom-wave-gradient {
        bottom: 0;
        height: 50vh;
        width: auto;
        right: 0;
    }
}
@media screen and (max-width: 767px) {
    .bottom-wave-gradient {
        bottom: 0;
        height: 40vh;
        width: auto;
        right: 0;
    }
}
svg.bg--element {
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}

/* BULLET STYLES */
.ls--blue-check ul li,
.ls--green-check ul li,
.ls--orange-check ul li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    line-height: 1.25;
}
.ls--blue-check ul li::before {
    content:"";
    display: block;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_check_blue.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ls--green-check ul li::before {
    content:"";
    display: block;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_check_green.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ls--orange-check ul li::before {
    content:"";
    display: block;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_check_orange.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.ls--rust-check ul li::before {
    content:"";
    display: block;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_check_rust.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.ls--lw-check ul li::before {
    content:"";
    display: block;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/LW_Icon_storedvaluecards2.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.tile-flex {
  display: -ms-flexbox;
  display: flex;
}

.tile {
  color: inherit!important;
  text-decoration: none!important;
  display: block;
  box-shadow: 0px 2px 45px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  margin-bottom: 40px;
  position: relative;
  transform: none;
  transition: all 500ms ease;
}

.tile:hover {
  transform: scale(1.025);
}

.tile h3 {
  font-weight: 700;
}

.tile h5 {
  line-height: 1.35;
}

.tile--image {
  position: relative;
  height: 340px;
  width: 100%;
  overflow: hidden;
}

.tile--blog-small .tile--image {
  height: 255px;
}

.tile--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 2.75s;
}

.tile:hover .tile--image img {
  transform: scale(1.05);
}

.tile--content {
  background-color: #F1F4FA;
  padding: 35px 40px;
  position: relative;
}

.tile--blog .tile--content {
  padding-bottom: 85px;
}

.tile--meta h6 {
  color: #6B6B6B;
}

.tile--resource {
  background-color: #3790F4;
  padding: 40px;
  padding-bottom: 85px;
  color: #fff!important;
  background-size: cover;
  background-position: center bottom;
  height: 100%;
}

.tile--subscribe {
  background-color: #5DC435;
  padding-bottom: 120px;
}

.tile--resource h6 {
  color: #6B6B6B;
}

.tile--resource .cta--text {
  color: #3790F4
}

.tile--resource .btn {
  padding-left: 15px;
  padding-right: 15px;
}

.cta--bottom {
  position: absolute;
  bottom: 40px;
  width: calc(100% - 80px);
}

.cta--text {
  font-weight: bold;
  font-family: 'Bitter', sans-serif;
  color: #FF9900;
}

.tile--resource .cta--text {
  color: #3790F4;
}

.arrow {
  position: relative;
  transition: .5s;
}

.tile .arrow {
  top: 2px;
}

.arrow--right {
  right: 0;
}

a:hover .arrow--right {
  right: -10px;
}
.arrow--left {
  left: 0;
}

a:hover .arrow--left {
  left: -10px;
}


@media (max-width: 767px) {
  .section--filters h6 {
    font-size: 16px;
    color: rgba(255,255,255,.4);
    padding: 8px 0;
    position: relative;
    margin: 0;
    cursor: pointer;
  }

  .section--filters h6:after {
    content: '';
    background-image: url("");
    width: 16px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(540deg);
    transition: .25s;
    position: absolute;
    right: 0;
    top: 7px;
  }

  .section--filters h6.open:after {
    transform: rotate(0deg);
  }

  .section--filters h6 span {
    color: rgba(255,255,255,1);
  }

  .filter-dropdown {
    display: none;
    font-size: 16px;
  }
  .filter-dropdown button {
    margin: 0 0 12px 0;
    display: block;
  }
}


.filter-top {

}

.dropdown-mask {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
}

.fieldset__header {
  font-size: .938rem;
  color: #5DC435;
  font-weight: 600;
}

.fieldset-wrap {
  width: 100%;
  font-size: 0px;
}

fieldset[data-filter-group] {
  padding: 0; 
  border: none; 
  display: inline-block; 
  margin: 0px;
  width: 100%;
}

fieldset.filters--button {
  width: auto;
}

fieldset.filters--button button {
  margin-right: 15px;
}

fieldset.checkbox-dropdown {
  position: relative;
  
  cursor: pointer;
}

.mix-nav {
  background: #F1F4FA;
  border-radius: 25px;
  width: fit-content;
  padding: 5px;
  margin: 0 auto;
}
.mix-nav button {
  padding: 10px 20px;
  border-radius: 25px;
  color: rgba( 48, 54, 81, .8);
  background-color: transparent;
  -webkit-appearance: none;
  transition: ease 300ms all;
  margin: 0 10px;
}
.mix-nav button:first-of-type {
  margin-left: 0px;
}
.mix-nav button:last-of-type {
  margin-right: 0px;
}
.mix-nav button:focus,
.mix-nav button:hover {
  color: #303651;
  transition: ease 300ms all;
}
.mix-nav button.mixitup-control-active {
  background-color: #FFFFFF;
  /* opacity: 1; */
  color: #3790F4;
  transition: ease 300ms all;
}

.mix-nav button:focus {
  outline: none!important;
}

@media (max-width: 767px) {
  .mix-nav {
      width: 100%;
  }
  .mix-nav button {
      display: block;
      margin: 0 10px!important;
      text-align: left;
  }
}

.dropdown-toggle {
  border: 1px solid rgba(255,255,255, .2);
  padding: 14px 20px;
  text-align: left;
}

.dropdown {
  display: none;
  position: absolute;
  background-color: #fff;
  padding: 12px 20px;
  min-width: 300px;
  left: 0px;
  top: 100%;
  box-shadow: 0px 13.5725px 23.7518px rgb(0 0 0 / 4%);
  border-radius: 0 0 10px 10px;
}

.checkbox-set {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
  text-align: left;
}


input[type="text"]:not([type=checkbox]):not([type=radio]):not([type=submit]).mix-search {
  border-radius: 0px;
  background-color: transparent;
  border-bottom: 1px solid #c3ccbd;
  box-shadow: none;
  background-image: url();
  background-repeat: no-repeat;
  background-position: right center;
  padding: 15px 30px 15px 0;
  color: #737b7d;
  font-size: .938rem;
  font-weight: 600;
  min-width: 350px;
}

.filter-bottom {
  padding: 50px 0 0;
}

.active-filters span {
  background: #F7F8FD;
  border: 1px solid #E3E4E9;
  border-radius: 10px;
  padding: 7px 20px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 12px;
  margin: 0 20px 10px 0;
}

.active-filters span svg {
  margin-left: 10px;
}

.mixitup-page-list {

}

.mixitup-page-list button {
  font-size: .75rem;
  font-weight: bold;
  padding: 3px 8px;
  background-color: transparent;
  border: 1px solid #5DC435;
  color: #3790F4;
  text-align: center;
  margin: 0 3px;
  border-radius: 0px;
  box-shadow: none;

}

.mixitup-page-list button.mixitup-control-active {
  border-color: #FF9900;
  background-color: #FF9900;
}

.mixitup-page-list button:hover {
  background-color: var(--tertiary100);
}

button.mixitup-control.mixitup-control-prev,
button.mixitup-control.mixitup-control-next {
  background-image: url(https://6829227.fs1.hubspotusercontent-na1.net/hubfs/6829227/theme-swizznet/icons/Small.svg);
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0px;
  height: 24px;
  vertical-align: top;
}

button.mixitup-control.mixitup-control-prev {
  transform: rotate(180deg)
;}
.mixitup-page-list-disabled {
  display: none!important;
}

.filter-reset {
  color: #0a2645!important;
  border-radius: 0px;
  background-color: transparent!important;
  text-transform: none;
  padding: 14px 20px;
  box-shadow: none;
  display: none;
}
.filter-reset span {
  color: #3790F4;
  margin-left: .5rem;
}

@media (max-width: 992px) {
  .dropdown-toggle {font-size: 14px;}
  input[type="text"]:not([type=checkbox]):not([type=radio]):not([type=submit]).mix-search {
    min-width: 1px;
  }
}

@media (max-width: 767px) {
  fieldset.filters--button button {
    margin-right: 15px;
    display: block;
    width: 100%;
    margin: 0 auto 20px;
  }  
  fieldset[data-filter-group] {
    width: 280px;
  }

  .banner--filter-bar {
    position: static;
  }
  .dropdown-toggle {
    padding-left: 0;
  }

}

/* RESOURCE LISTING */
@media screen and (max-width: 767px) {
  .banner--filter-bar form fieldset {
    width: 100%;
  }
  .banner--filter-bar form fieldset .mix-nav button {
    margin: auto !important;
    width: 95%;
  }
}
.section--tabs h3 {
    margin-bottom: 20px;
}
.tab_title-container h3 {
    margin-bottom: 0px !important;
}
.tab_title-container img {
    width: 80px;
}
.section--tabs ul li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 14px;
}
.section--tabs ul {
    margin-left: 0px;
}
/* .section--tabs ul li::before {
    content:"";
    display: block;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    background-image: url(https://www.trycents.com/hubfs/theme-cents2022/assets/icon_checkmark.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
} */


/* TABS NAVIGATION */
.tab-nav {
    background: rgba(0,0,0,.05);
    border-radius: 25px;
    width: fit-content;
    padding: 5px;
}
.tab-nav a {
    padding: 10px 20px;
    border-radius: 25px;
    color: rgba( 48, 54, 81, .8);
    /* opacity: .8; */
    transition: ease 300ms all;
    margin: 0 10px;
}
.tab-nav a:first-of-type {
    margin-left: 0px;
}
.tab-nav a:last-of-type {
    margin-right: 0px;
}
.tab-nav a:hover {
    color: #303651;
    background: #ffffff80;
    transition: ease 300ms all;
}
.tab-nav a.tab-active {
    background-color: #FFFFFF;
    /* opacity: 1; */
    color: #3790F4;
    transition: ease 300ms all;
}

@media (max-width: 767px) {
    .tab-nav {
        width: fit-content;
    }
    .tab-nav a {
        /* display: block; */
        /* margin: 0 10px!important; */
        text-align: center;
    }
}
@media (max-width: 567px) {
    .tab-nav {
        width: 100%;
    }
    .tab-nav a {
        display: block;
        margin: 0 10px!important;
        text-align: left;
    }
}


/* TABS WITH CARD */
.section--tabs-card h3, .section--card-overlap h3 {
    margin-bottom: 20px;
}
.section--tabs-card .tabs_container, .section--card-overlap .tabs_container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.section--tabs-card .tabs_image , .section--card-overlap .tabs_image {
    float: right;
}
.section--tabs-card .tabs_card, .section--card-overlap .tabs_card {
    position: absolute;
    z-index: 10;
    background: white;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.tabs_card .card--feature-item:first-of-type {
    border-right: 2px solid #F1F4FA;
    border-bottom: 2px solid #F1F4FA;
}
.tabs_card .card--feature-item:nth-of-type(2) {
    border-bottom: 2px solid #F1F4FA;
}
.tabs_card .card--feature-item:nth-of-type(3) {
    border-right: 2px solid #F1F4FA;
}
@media screen and (max-width: 992px) {
    .section--tabs-card .tabs_container, .section--card-overlap .tabs_container {
        justify-content: flex-start;
    }
    .section--tabs-card .tabs_card, .section--card-overlap .tabs_card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    .section--tabs-card .tabs_image, .section--card-overlap .tabs_image  {
        position: absolute;
        right: 0;
        top: 30%;
    }
}
@media screen and (max-width: 768px) {
    .section--tabs-card .tabs_container, .section--card-overlap .tabs_container {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .section--tabs-card .tabs_image, .section--card-overlap .tabs_image  {
        position: relative;
    }
    .tabs_card .card--feature-item:first-of-type, .tabs_card .card--feature-item:nth-of-type(2), .tabs_card .card--feature-item:nth-of-type(3) {
        border: 0px;
        border-bottom: 2px solid #F1F4FA;
    }
    .tabs_card .card--feature-item:last-of-type {
        border: 0px;
    }
}

/* TABS -- PRICING  */
.section--tabs-pricing h3 span.monthly--price {
    color: #3790F4;
}

.u-bg--blue.section--tabs-pricing h3 span.monthly--price {
    color: #FFFFFF;
}
.quote {
  text-align: center;
  color: #6B6B6B;
  font-weight: 500;
  font-size: 18px;
}

.quote__top {
  font-size: 1.875rem;
  font-style: italic;
  background-image: url('');
  background-size: contain;
  background-position: 50%;
  background-repeat: no-repeat;
  padding: 0 4rem;
}

.quote--small {

}

.attribution {
  padding-left: .875rem;
  padding-right: .875rem;
}

.attribution h6 {
  margin: 0;
  text-transform: none;
  color: #5DC435;
}

.u-bg--secondary .attribution h6 {
  color: #3790F4;
}

.attribution h5 {
  margin: 0;
  font-size: 1rem;
  color: #c0c0c0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.u-bg--primary .attribution h5,
.u-bg--secondary .attribution h5 {
  color: #FFFFFF;
}

.arrow--testimonial {
  margin-top: 30px;
}

.arrow--default button {
  padding: 0;
  font-size: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border: 1px solid #3790F4;
  background-color: transparent;
  transition: .25s;
  position: relative;
  margin: 0 10px;
}

.arrow--default button:hover {
  background-color: #3790F4;
}

.arrow--default button:before {
  content: '';
  background-image: url("");
  width: 40px;
  height: 40px;
  background-size: 23%;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: -2px;
  top: 0;
}


.arrow--default button.slick-next:before {
  background-image: url("");
  left: 0;
}

.quotemark {
  font-size: 48px;
}

.quote-bg {
  font-size: 25px;
  font-weight: 300;
  color: #303651;
}

.blockquote--card {
  background-color: #F1F4FA;
  border-radius: 10px;
}

.testimonial--cite {
  font-size: 12px;
  font-weight: 700;
  color: #303651;
  text-transform: uppercase;
}

.u-bg--blue .testimonial--cite {
  color: #fff;
}

@media (max-width: 767px) {


}
.features--toggles {
    z-index: 3;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
.features--toggles .feat-nav a {
    position: absolute;
}
.features--container .features--card {
    top: 40px;
    left: 40px;
    z-index: 4;
    position: absolute;
}
.features--container .features--card .card_container {
    border-radius: 10px;
}

.features--toggles .feat-nav a svg {
    overflow: visible;
}

.features--toggles .feat-nav a svg path.svg-blob {
    transition: 1s ease-out;
    transform: rotate(0deg);
    transform-origin: center;
}

.features--toggles .feat-nav a.feat-active svg path.svg-blob {
    transform: rotate(180deg);
    fill: #797EF6!important;
}

.features--toggles .feat-nav a svg path.svg-vert-line {
    opacity: 1;
    visibility: visible;
    transition: .4s ease;
}

.features--toggles .feat-nav a.feat-active svg path.svg-vert-line {
    opacity: 0;
    visibility: hidden;
}
@media screen and (max-width: 992px){
    .features--container {
        display: flex;
        flex-direction: column-reverse;
    }
    .features--container .features--card {
        position: relative;
        left: 0;
    }
}
.mfp-content,
.mfp-content > div {
  outline: none!important;
}

.mfp-close-btn-in .mfp-close {
  background-color: #fff!important;
  opacity: 1!important;
}

.section--cta h2 {
  margin: 2rem 0;
}

.cta-block {
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 2rem 3rem;
}
/* GRID ITEM */
.section--two-col--grid .grid-item img {
  width: 100%;
}
/* STATS BLOCK */
.stat-block img.stat-img {
  width: 30px;
}
.stat-block h4.stat-num {
  color: #303651;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 0px;
}
.stat-block h6.stat-txt {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0px;
  color: #303651;
  font-size: 14px;
}
.stat-block .stat-container {
  height: 100%;
}

/** Partner Page **/

@media (min-width: 768px) {
  .partner-left {
    border-right: 2px solid rgb(156,163,175);
    padding-right: 3rem;
    margin-right: 3rem;
    text-align: right;
    height: 100%;
  }
  
}

.partner-item h4 {
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .partner-left {
    text-align: center;
  }
}


.section__header h2 {
  margin-bottom: 25px;
}

.section--subscribe {
  border-top: 1px solid #e3e4e9;
}

.section--subscribe input:not([type=checkbox]):not([type=radio]):not([type=submit]) {
  background-color: #fff;
}

/* TWO COL WITH VIDEO */
.after__content .after__rating p {
  font-size: 14px;
}

/* STORY CARDS */
.story-card-container .card-item-body p.card-body {
  font-size: 14px;
}

.section--two-col .card--sc .card-header--price h2,
.section--two-col .card--sc .card-header--price h3,
.section--two-col .card--sc .card-header--price h4,
.section--two-col .card--sc .card-header--price h5 {
  width: fit-content;
}
.section--two-col .card--sc .card-header--price h5 {
  color: #303651;
  opacity: .5;
}
.section--two-col .card--sc {
  border: 1px solid #DAE8F9;
}

/* SPOTLIGHT */
.spotlight-card h3.spotlight-quote {
  font-size: 30px;
  font-weight: 300;
  color: #303651;
}
.spotlight--left .cta-group {
  /* margin-top: -15px; */
}
.spotlight--left {
  float: left;
  z-index: 13 !important;
}
.spotlight--right {
  position: absolute;
  z-index: 1;
  /* margin-right: 10%; */
  right: 0;
}
@media screen and (max-width: 767px) {
  .spotlight--right {
    position: relative;
    margin-right: 0;
  }
}

.section--two-col .two-col-body ul li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  /* font-size: 14px; */
  line-height: 1.25;
}
.section--two-col .two-col-body p {
  /* font-size: 14px; */
}
.section--two-col .two-col-body ul {
  margin-left: 0px;
}
.section--two-col .two-col-body ul li::before {
  content:"";
  display: block;
  margin-right: 10px;
  height: 20px;
  width: 20px;
}
/*   background-image: url(https://www.trycents.com/hubfs/theme-cents2022/assets/icon_checkmark.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
} */
.anchor-menu--module {
  height: fit-content;
}
.anchor-menu--container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

/* EYEBROW IMAGES */
img.eyebrow_img {
  width: 80px;
}
.slick-slide:focus {
  outline: none!important;
}

/**** Dots ****/
ul.slick-dots {
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
  top: auto;
  bottom: auto;
}
ul.slick-dots li {
  width: fit-content !important;
}

ul.slick-dots li button {
  padding: 0;
}

ul.slick-dots li button:before {
  font-size: 20px;
  color: #ffffff;
  opacity: .25;
}

ul.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ffffff;
}

@media (min-width: 768px) {
  .dots--pull {
    margin-top: -55px;
  }
  .dots--left ul.slick-dots {
    text-align: left;
    padding: 0;
    margin: 0;
  }
}

.video-testimonial ul.slick-dots li button:before {
  color: #6B6B6B;
  transform: scale(.5);
  transition: ease 400ms all;
  font-size: 16px;
}
.video-testimonial ul.slick-dots li.slick-active button:before {
  color: #3790F4;
  transform: scale(1);
  transition: ease 400ms all;
}
/**** Arrows ****/

.slick-has-arrows {
  padding: 0 40px;
}
.slick-next {
  right: 0!important;
}

.slick-prev {
  left: 0!important;
}
@media screen and (max-width: 576px) {
  .video-testimonial .slide__nav .cta-group {
    text-align: left;
  }
  .slide__body .img-block {
    /* padding: 0 !important; */
  }
}
.slick-has-arrows .slick-next,
.slick-has-arrows .slick-prev {
  width: 40px;
  height: 40px;
}

.slick-has-arrows .slick-next:before, 
.slick-has-arrows .slick-prev:before {
  font-size: 40px;
  color: #6B6B6B;
}

.custom-arrows {
  padding: 0 80px;
}

.custom-arrows .slick-prev {
  left: 0px!important;
}

.custom-arrows .slick-next {
  right: 0px!important;
}

.custom-arrows .slick-arrow {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3790F4;
  border: 1px solid #3790F4;
  border-radius: 50%;
}

.custom-arrows .slick-arrow:before {
  content: '';
  background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/arrow-white.svg);
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.custom-arrows .slick-arrow.slick-next:before {
  transform: rotate(180deg);
}

.custom-arrows .slick-arrow:focus,
.custom-arrows .slick-arrow:hover {
  background-color: #fff;
}

.custom-arrows .slick-arrow:focus:before,
.custom-arrows .slick-arrow:hover:before {
  background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/arrow-blue.svg);
}

.custom-arrows .slick-arrow.slick-next:focus:before,
.custom-arrows .slick-arrow.slick-next:hover:before {
  transform: rotate(0deg);
}

.custom-arrows .slick-arrow.slick-prev:focus:before,
.custom-arrows .slick-arrow.slick-prev:hover:before {
  transform: rotate(180deg);
}

@media (min-width: 1400px) {
  .custom-arrows {
    padding: 0px;
  }
  .custom-arrows .slick-prev {
    left: -80px !important;
  }
  .custom-arrows .slick-next {
    right: -80px !important;
  }
}

@media (max-width: 767px) {
  .custom-arrows .slick-next, 
  .custom-arrows .slick-prev {
    top: -50px;
    transform: none;
  }
  .custom-arrows {
    padding: 30px 0 0;
  }  
}
/* SLIDER TESTIMONIAL */

.slider--testimonial ul.slick-dots {
  padding: 0;
}
.slider--testimonial ul.slick-dots li button:before {
  color: #6B6B6B;
  transform: scale(.5);
  transition: ease 400ms all;
  font-size: 16px;
}
.slider--testimonial ul.slick-dots li.slick-active button:before {
  color: #3790F4;
  transform: scale(1);
  transition: ease 400ms all;
}
.slider--testimonial button.slick-arrow {
  padding: 0;
  height: 40px;
  width: 40px;
  margin: 0 5px;
  text-align: center;
  border: 2px solid #3790F4;
  background-color: transparent;
}
.slider--testimonial button.slick-arrow:hover {
  background-color: #3790F4;
  fill: #3790F4;
  color: #3790F4;
}
.slider--testimonial button.slick-arrow:hover path {
  fill: #3790F4;
  stroke: #3790F4;
}


/* SLIDER TWO COLUMN TESTIMONIAL */
.video-testimonial h2.slide_title {
  color: #303651;
}
.video-testimonial p.slide_quote {
  font-size: 20px;
  line-height: 1.5;
  color: #303651;
}
.video-testimonial div.slide_cite {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
.video-testimonial div.slide_cite span {
  font-weight: 700;
}
.video-testimonial .slide__stats-container .stat:nth-of-type(odd) {
  padding: 0;
  padding-right: 15px;
}
.video-testimonial .slide__stats-container .stat:nth-of-type(even) {
  padding: 0;
  padding-left: 15px;
}
.video-testimonial .slide__stats-container .stat_icon {
  width: 25px;
  min-height:25px;
}
.video-testimonial .slide__stats-container h4.stat_num {
  color: #303651;
  font-size: 1.7em;
  font-weight: 700;
}
.video-testimonial .slide__stats-container p.stat_text {
  font-size: 14px;
  opacity: .7;
}

.video-testimonial button.slick-arrow {
  padding: 0;
  height: 40px;
  width: 40px;
  margin-right: 10px;
  text-align: center;
  border: 2px solid #3790F4;
  background-color: transparent;
}
.video-testimonial button.slick-arrow:hover {
  background-color: #3790F4;
  fill: #3790F4;
  color: #3790F4;
}
.video-testimonial button.slick-arrow:hover path {
  fill: #3790F4;
  stroke: #3790F4;
}

.video-testimonial .slide__body .slick-list {
  padding: 90px 50px 90px 10px!important;
}

.video-testimonial .slide__body .slick-slide {
  transform: scale(1);
  transition: .4s ease;
}
.video-testimonial .slide__body .slick-slide.slick-current {
  transform: scale(1.4);
}
.slider--video .slide__body .slick-slide {
  transform: scale(.85);
  opacity: .5;
}
.slider--video .slide__body .slick-slide.slick-current {
  transform: scale(1);
  opacity: 1;
}


.video-testimonial .slide__item a.open_modal {
  display: flex;
  align-items: center;
  max-height: 500px;
}
.slide__mobile {
  display: none !important;
}
@media screen and (max-width: 767px) {
  ul.slick-dots {
    padding-top: 30px;
    padding-left: 0;
  }
  .video-testimonial .slide__body .slick-slide.slick-current {
    transform: scale(1);
  }
  .video-testimonial .slide__body .slick-list {
    padding: 0px !important;
  }
  .slide__desktop {
    display: none !important;
  }
  .slide__mobile {
    display: block !important; 
  }
 }


/* VIDEO SLIDER MODAL */
.video-testimonial--modal .vtm--video iframe {
  width: 100%;
  height: 450px;
}
.video-testimonial--modal button.mfp-close {
  display: none;
}
.system-error .error-num {
    background: #0567D5;
    background: linear-gradient(273.97deg, #0567D5 14.44%, #797EF6 78.81%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-background-clip: text;
    -moz-text-fill-color: transparent;
}
.system-error h1 {
    font-size: 10em;
}
.system-error h2 {
    font-family: Inter;
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0em;
    text-align: center;
}
video.video--full-width {
  width: 100%;
  height: auto;
  display: block;
}

.video-launch {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  cursor: pointer;
}

.vid-playing .video-launch {
  display: none;
}

.video-module {
  position: relative;
}

.video-module--in-place .video-holder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
}

.video-module--in-place.active .video-holder {
  opacity: 1;
  visibility: visible;
}

.video-module--in-place.active .card {
  opacity: 0;
  visibility: hidden;
}

.modal {
  z-index: -1; 
  visibility: hidden;
  /* display: none; */
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.mfp-ready .modal {
  opacity: 1;
  /* display: block; */
  position: static;
  visibility: visible;
}

.mfp-content {
  max-width: 900px;
    margin: 0 auto;
}

/* VIDEO PLAY BUTTONS */
.video-play__text::before {
  z-index:20;
  content:"";
  display: block;
  position: absolute;
  background-image: url(https://www.trycents.com/hubfs/theme-cents2022/assets/play_video_btn.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height:50px;
  width: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: ease 300ms all;
}
.video-play__icon::before {
  z-index:20;
  content:"";
  display: block;
  position: absolute;
  background-image: url(https://www.trycents.com/hubfs/theme-cents2022/assets/play_btn.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height:80px;
  width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  transition: ease 300ms all;
}
.video-play__text:hover::before, .video-play__icon:hover::before {
  opacity: .85;
  transition: ease 300ms all;
}

.video-play__text:hover, .video-play__icon:hover {
  cursor: pointer;
} 
.vid-playing .video-launch,
.vid-playing.video-play__icon::before,
.vid-playing.video-play__text::before {
  display: none;
}
.hide--video {
  display: none !important;
}
.show--video {
  display: block !important;
}
.mfp-iframe-holder button.mfp-close {
  top: -50px;
  right: -50px;
  color: #6B6B6B;
  text-align: center;
  padding: 0;
  height:50px;
  width: 50px;
}
.stats__title {
  font-size: 30px;
  text-transform: uppercase;
  color: #5DC435;
  font-weight: bold;
  font-size: 5.214rem;
}



.stats__description {
  color: #000;
  opacity: 1;
}
.acc-item {
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid #6B6B6B;
}

.acc-item:last-of-type {
border-bottom: 0px;
}

.acc-toggle {
  font-size: 20px;
  position: relative;
  cursor: pointer;
  padding-right: 70px!important;
  color: #303651;
}

.acc-toggle::after {
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -12px;
  content: '';
  background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/menu-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.acc-body {
  /* padding-left: .5rem; */
  padding-right: .5rem;
  display: none;
  color: #6B6B6B;
}
.acc-body p {
  font-size: 14px;
}

@media (max-width: 767px) {
  .acc-body {
    padding-left: 2.0rem;
    padding-right: 2.0rem;
  }
}
.banner--team {
  padding-bottom: 260px!important;
}

.team-module {
  background-color: transparent!important;
  margin-top: -220px;
}

/**** Card Team ****/
.card--team {
  font-size: 18px;
}

.card--team h4 {
  margin: 0px 0 10px 0;
  color: #6B6B6B!important;
  font-size: 14px;
  font-weight: 400;
}

.card--team h3 {
  font-size: 20px;
  color: #303651;
  font-weight: 600;
}

.card--team p {
  font-size: 14px;
}

.card--team-wide {
  padding: 20px;
}
.card--team .card__lower {
  margin-top: -50px !important;
  isolation: isolate;
}

.headshot {
  width: 100%;
  height: 100%;
  /* max-height: 400px; */
}

.headshot--ceo {
  width: 100%;
  height: 100%;
  max-width: 145px;
  min-width: 145px;
}

.social-small {
  font-size: 16px;
  transition: ease 300ms all;
}
.social-small a i {
  color: #3790F4!important;
}
.social-small a:hover i:hover {
  opacity: .5;
  transition: ease 300ms all;
}

.social-large {
  font-size: 36px;
}

.social-large a {
  color: #3790F4!important;
}

@media (min-width: 768px) {

  .headshot--ceo {
    min-width: 240px;
    max-width: 240px;
    max-height: 234px;
  }

}

.modal--bio {
  background: rgb(0,28,64,.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
}

.modal--bio.modal-open {
  display: flex;
}

.modal-body {
  flex: 1;
}

.modal-body__inner {
  display: none;
}

.modal-body__inner.inner-open {
  display: block;
}

.modal-team-left {
  width: 40%;
}

.modal-team-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-team-right {
  width: 60%;
  padding: 40px;
  font-size: 16px;
  position: relative;
}

.arrow {
  font-size: 36px;
  color: #fff;
}

.team-modal-close {
  color: #6B6B6B;
  font-size: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.arrow,
.team-modal-close {
  transition: .4s ease;
  transform: scale(1);
  cursor: pointer;
}

.arrow:hover,
.team-modal-close:hover {
  transform: scale(1.15);
}

@media (max-width: 767px) {  
  .card--team {
    align-items: center;
    justify-content: center;
  }
  .headshot {
    max-width: 200px;
    max-height: initial;
    height: auto;
  }
  .headshot img {
    display: block;
    object-fit: cover;
    height: 100% !important;
    width: 100%;
  }
  .card--team .card__lower {
    width: 50%;
    margin-top: 0px !important;
    margin-left: -20px !important;
  }

  .card--team-modal {
    padding: 40px 20px 20px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-team-left {
      width: 100%;
  }
  .modal-team-right {
    width: 100%;
    padding: 25px 0;
    position: static;
  }

  .team-modal-close {
    top: 2px;
    right: 2px;
  }


}
.acc-toggle .pill {
  min-width: 150px;
}

.acc-body--career {
  border: 2px solid #6B6B6B;
  border-top: none;
}

.acc-body--career h4 {
  margin-bottom: 2rem;
  color: #3790F4!important;
}

.acc-body--career h3 {
  margin-bottom: 1rem;
}
.who-left,
.who-left p {
  font-size: 15px;
}


@media (min-width: 992px) {
  .career--second .img-block {
    margin-top: -250px;
  }
  .who-left {
    border-right: 2px solid #3790F4;
  }
}

@media (max-width: 991px) {
  .who-left {
    border-bottom: 2px solid #3790F4;
    margin-bottom: 20px;
  }
}



header.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0px 0px 16px rgb(0 0 0 / 4%);
  transition: .4s ease;
}

.header__upper {
  background-color: #3790F4;
  background: linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
  font-size: 13px;
  color: #fff;
}

.header__upper p {
  font-size: 13px;
  margin: 0;
}

.header__upper__section {
  padding: 10px 0;
}

.header__upper__left {
  /* padding-right: 15px; */
}
.header__upper .btn {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 400;
}
.header__upper .header__util-cont a {
  color: #ffffff;
  weight: 800;
  transition: ease 300ms all;
}
.header__upper .header__util-cont a:hover {
  opacity: .5;
  transition: ease 300ms all;
}
.header__close {
  display: block;
  /* margin-left: 30px; */
  transition: ease 300ms all;
}
.header__close:hover {
  opacity: .5;
  transition: ease 300ms all;
  cursor: pointer;
}
.header__close svg {
  height: 15px;
  width: 15px;
}
.hs-menu-flow-horizontal ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-menu-flow-horizontal > ul {
  display: flex;
  align-items: center;
}

.header__lower .flyouts .hs-menu-children-wrapper {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: .4s ease;
  background-color: #fff;
  padding: 25px 30px 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 0px 0px 10px 10px;
  top: 100%;
}

.header__lower,
.header__lower--lp {
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .header__lower--lp {
    background-color: #FFFFFF;
    box-shadow: 0px 0px 16px rgb(0 0 0 / 4%);
  }
}
.header__lower .header__logo,
.header__lower--lp .header__logo {
  max-width: 120px;
}

.header__lower .header__logo svg,
.header__lower--lp .header__logo svg {
  width: 100%;
}

.header__lower a, 
.header__lower--lp a {
  font-weight: 400;
}
.header__lower a.btn,
.header__lower--lp a.btn {
  font-weight: 600;
}

.header__lower li.hs-menu-item.hs-menu-depth-1, .header__lower .cta-group .btn, .header__lower .cta-group .text-link {
  margin: 0 15px;
}

.header__lower li.hs-menu-item.hs-menu-depth-1:last-of-type a {
  color: #3790F4;
}

.header__lower li.hs-menu-item.hs-menu-depth-1 a {
  color: #171717;
  position: relative;
}
.header__lower li.hs-menu-item.hs-menu-depth-1 a:hover {
  color: inherit;
}

.flyouts li.hs-menu-item:hover .hs-menu-children-wrapper {
  visibility: visible;
  opacity: 1;
}

.header__lower li.hs-menu-item .hs-menu-children-wrapper li {
  margin-bottom: 16px;
}

.header__lower li.hs-menu-item .hs-menu-children-wrapper li a {
  color: #6f7090;
  font-weight: 400;
}

.header__lower li.hs-menu-item .hs-menu-children-wrapper li a:hover {
  color: #171717;
}


.header__lower li.hs-menu-item.hs-menu-depth-1.hs-item-has-children {

}

.header__lower li.hs-menu-item.hs-menu-depth-1.hs-item-has-children > a:after {
  content: '';
  background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/menu-arrow.svg);
  width: 16px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 8px;
}

.header__lower li.hs-menu-item.hs-menu-depth-1.hs-item-has-children:hover > a:before {
  content: '';
  width: calc(100% + 30px);
  left: -15px;
  height: 36px;
  top: 20px;
  position: absolute;
}

.child-trigger {
  display: none;
}

.header button.hamburger {
  display: none;
  padding: 0;
  background-color: transparent!important;
}

.header button.hamburger:hover, 
.header button.hamburger:focus {
  background-color: transparent; 
  border: none;
  color: transparent;
  outline: none;
}

.header .hamburger-inner, 
.header .hamburger-inner:after, 
.header .hamburger-inner:before {
  background-color: #6B6B6B!important;

}

@media (max-width: 1039px) {

  .header button.hamburger {
    display: block; 
    margin-top: 10px;
}

  .header__upper__left {
    text-align: center;
  }
  .header__upper__right {
    display: none;
  }

  .nav-holder {
    position: absolute;
    width: 100%;
    top: 100%;
    background-color: #F1F4FA;
    left: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    display: none;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

  .nav-holder .custom-menu-primary {
    background-color: #fff;
    padding-bottom: 40px;
  }


  .nav-holder .hs-menu-flow-horizontal>ul {
    display: block;
  }



  .header__lower .nav-holder li.hs-menu-item.hs-menu-depth-1 {
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .header__lower .nav-holder li.hs-menu-item.hs-menu-depth-1 > a {
    display: block;
    padding: 10px 0;
  }
  .header__lower li.hs-menu-item.hs-menu-depth-1.hs-item-has-children > a:after {
    display: none;
  }

  .nav-holder .cta-group {
    text-align: center;
    padding: 30px 0;
  }

  .header__lower .nav-holder .cta-group a {
    display: block;
    text-align: center;
    margin: 15px 15px;
  }

  .header__lower .nav-holder .cta-group a.btn {
    border-radius: 5px;
  }

  .header__lower .flyouts .hs-menu-children-wrapper {
    position: relative;
    visibility: visible;
    opacity: 1;
    top: auto;
    box-shadow: none;
    display: none;
  }

  .child-trigger {
    position: relative;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 10;
  }
  .child-trigger:before {
    content: '';
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/menu-arrow.svg);
    width: 16px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    transform: rotate(-90deg);
}

}

/* LANDING PAGE HEADER */
header.lp-header {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* MEGA MENU */

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header--megamenu .menu-container {
  width: 80%;
  margin: 0 auto;
}
.header--megamenu .menu-container p {
  font-size: 12px;
}
.header--megamenu h5.megamenu--title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  color: #303651;
}
.header--megamenu .menu-mobile {
  /* display: none; */
  padding: 20px;
}
.header--megamenu .menu-mobile:after {
  content: "\f394";
  font-family: "Ionicons";
  font-size: 2.5rem;
  padding: 0;
  float: right;
  position: relative;
  top: 50%;
  transform: translateY(-25%);
}
.header--megamenu .menu-dropdown-icon:before {
  content: '';
  background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/menu-arrow.svg);
  width: 50px;
  height: 15px;
  display: none;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
  float: right;
  margin: 25px;
  color: #333;
}
.header--megamenu .menu > ul {
  margin: 0 auto;
  width: 100%;
  list-style: none;
  padding: 0;
  /* position: relative; */
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
}
.header--megamenu .menu > ul:before,
.header--megamenu .menu > ul:after {
  content: "";
  display: table;
}
.header--megamenu .menu > ul:after {
  clear: both;
}
.header--megamenu .menu > ul > li {
  padding: 0;
  margin: 0;
}
.header--megamenu .menu > ul > li a {
  text-decoration: none;
  color: #303651;
  padding: 1.5em;
  display: block;
}
.header--megamenu .menu > ul > li:hover {
  text-decoration: underline;
}
.header--megamenu .menu > ul > li > ul {
  /* display: none; */
  width: 100%;
  background: #FFFFFF;
  border-top: 1px solid #F1F4FA;
  box-shadow: 0px 10px 16px rgb(0 0 0 / 10%);
  padding: 20px;
  position: absolute;
  z-index: 99;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}
@media screen and (max-width: 992px){
  .header--megamenu .menu > ul > li > ul {
    box-shadow: none;
  }
}
.header--megamenu .menu > ul > li > ul:before,
.header--megamenu .menu > ul > li > ul:after {
  content: "";
  display: table;
}
.header--megamenu .menu > ul > li > ul:after {
  clear: both;
}
.header--megamenu .menu > ul > li > ul > li a {
  color: #777;
  padding: 0.2em 0;
  width: 95%;
  display: block;
  border-bottom: 1px solid #ccc;
}
.header--megamenu .menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}
.header--megamenu .menu > ul > li > ul > li > ul:before,
.header--megamenu .menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}
.header--megamenu .menu > ul > li > ul > li > ul:after {
  clear: both;
}
.header--megamenu .menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  font-size: 0.8em;
}
.header--megamenu .menu > ul > li > ul > li > ul > li a {
  border: 0;
}
.header--megamenu .menu > ul > li > ul.normal-sub {
  width: 300px;
  left: auto;
  padding: 10px 20px;
}
.header--megamenu .menu > ul > li > ul.normal-sub > li {
  width: 100%;
}
.header--megamenu .menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 0;
}
.header--megamenu ul.megamenu--dropdown {
  display: flex;
}
.header--megamenu .menu > ul > li > ul.megamenu--dropdown {
  /* margin-top: 34px; */
}
.header--megamenu .menu ul.megamenu--dropdown .megamenu--container li ul {
  padding: 0;
}
.header--megamenu .menu ul.megamenu--dropdown .megamenu--container li ul li {
  list-style: none;
}
.header--megamenu .menu ul.megamenu--dropdown .megamenu--container li ul li a {
  padding: 0;
}
.header--megamenu .menu-container ul li ul li ul li.megamenu--link {
}

.header--megamenu .menu-container ul li ul li ul li.megamenu--link a {
  font-size: 14px;
  color: #303651;
  text-decoration: none;
}
.header--megamenu .menu-container ul li ul li ul li.megamenu--link a:hover {
  color: #3790F4;
  text-decoration: underline;
}

.header--megamenu .header__logo {
  flex-grow: 1;
}
.header--megamenu .nav-holder {
  flex-grow: 2;
}
.header--megamenu .nav-holder .mm--link-img {
  max-width: 50px !important;
  padding-right: 15px;
}
.header--megamenu .nav-holder .mm--link-img img {
  min-width: 30px !important;
  max-width: 35px !important;
}
.header--megamenu .nav-holder img {
  /* max-width: 50px !important; */
}
.header--megamenu .nav-holder .megamenu--img {
  font-size: 14px;
}
.header--megamenu .nav-holder .megamenu--img img {
  width: 100%;
  max-width: 400px;
}
.header--megamenu .nav-holder .megamenu--img a {
  padding-left: 0;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #3790F4;
  transition: ease 300ms all;
}
.header--megamenu .nav-holder .megamenu--img a:hover {
  opacity: .6;
  transition: ease 300ms all;
}
.header--megamenu .nav-holder .megamenu--img a::after {
  content:'';
  display: block;
  background: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/arrow-blue.svg) center center no-repeat;
  background-size: contain;
  height:10px;
  width: 10px;
  margin-left: 10px;
}
.header--megamenu ul li.megamenu--parent a.megamenu--child::after {
  content: '';
  background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/menu-arrow.svg);
  width: 16px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 8px;
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 1039px) {
  .header--megamenu .menu > ul > li:hover {
    text-decoration: none;
  }
  .header--megamenu .menu-container {
    width: 100%;
  }
  .header--megamenu .menu-mobile {
    display: block;
  }
  .header--megamenu .menu-dropdown-icon:before {
    display: block;
  }
  .header--megamenu .menu > ul {
    flex-direction: column;
  }
  .header--megamenu ul li.megamenu--parent a.megamenu--child::after {
    display: none;
  }
  .header--megamenu .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
  }
  .header--megamenu .menu > ul > li a {
    /* padding: 1.5em; */
    width: 100%;
    display: block;
  }
  .header--megamenu .menu > ul > li > ul {
    position: relative;
  }
  .header--megamenu .menu > ul > li > ul.normal-sub {
    width: 100%;
  }
  .header--megamenu .menu > ul > li > ul > li {
    /* float: none; */
    width: 100%;
    margin-top: 20px;
  }
  .header--megamenu .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .header--megamenu .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .header--megamenu .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .header--megamenu .menu .show-on-mobile {
    display: block;
  }
  .header--megamenu ul li.megamenu--parent a.main--link.megamenu--child,
  .header--megamenu ul li a.main--link {
    padding: 1.6em;
    width: fit-content;
  }
  .header--megamenu .menu > ul > li > ul.megamenu--dropdown {
    margin-top: 0px;
  }
}

@media only screen and (max-width: 767px) {
    .header--megamenu ul li ul li.megamenu--column {
    margin-bottom: 20px;
  }
}

.header--megamenu .megamenu--dropdown {
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  transition: ease 300ms all;
}

.header--megamenu .megamenu--parent:hover .megamenu--dropdown,
.header--megamenu .megamenu--parent.focus .megamenu--dropdown {
  clip: auto;
  transition: ease 300ms all;
}
@media screen and (max-width: 1039px) {
  .header--megamenu ul.megamenu--dropdown {
    display: none;
  }
}

/* MM OVERRIDES -- 06 2025 */
/* adjust padding */
@media screen and (max-width: 1179px) {
  .header--megamenu .menu > ul > li a {
    padding: 1.5rem .75rem;
  }
  .header--megamenu .header__lower .cta-group .btn {
    white-space: nowrap;
  }
}

@media screen and (min-width: 1040px) {
  .nav-holder {
    display: flex;
  }
  .megamenu--container {
    display: flex;
  }
}
@media screen and (max-width: 1039px) {
  .header--megamenu .menu > ul {
    flex-direction: column;
  }
  .header--megamenu .menu > ul > li a {
    padding: 1.6rem;
  }
  .header--megamenu .megamenu--column {
    width: 100% !important;
    max-width: unset !important;
  }
}

/*
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
.animated {opacity: 0;}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
body {
    overflow: hidden;
    /* ALLOWS FOR PSEUDO ELEMENTS TO GO OFF SCREEN */
}
/* ACCENT COLOR */

.u-bg--black {
    background-color: #171717;
    color: #FFFFFF;
}

.u-stroke--black path {
    stroke: #171717;
}
.u-fill--black, .u-fill--black path {
    fill: #171717;
}

.u-bg--primary {
    background-color: #3790F4;
    color: #fff;
}

.u-stroke--primary path {
    stroke: #3790F4;
}
.u-fill--primary, .u-fill--primary path {
    fill: #3790F4;
}

.u-bg--transparent {
    background-color: transparent;
    color: #6B6B6B;
    z-index: 10;
}
.u-bg--white {
    background-color: #fff;
    color: #6B6B6B;
}

.u-stroke--white path {
    stroke: #FFFFFF;
}
.u-fill--white, .u-fill--white path {
    fill: #FFFFFF;
}

.u-bg--gray {
    background-color: #6B6B6B;
    color: #ffffff;
}

.u-stroke--gray path {
    stroke: #6B6B6B;
}
.u-fill--gray, .u-fill--gray path {
    fill: #6B6B6B;
}

.u-bg--light_gray {
    background-color: #F1F4FA;
    color: #6B6B6B;
}

.u-stroke--light_gray path {
    stroke: #F1F4FA;
}
.u-fill--light_gray, .u-fill--light_gray path {
    fill: #F1F4FA;
}

.u-bg--blue {
    background-color: #3790F4;
    color:  #ffffff;
}

.u-stroke--blue path {
    stroke: #3790F4;
}
.u-fill--blue, .u-fill--blue path {
    fill: #3790F4;
}

.u-bg--navy {
    background-color: #303651;
    color:  #ffffff;
}

.u-stroke--navy path {
    stroke: #303651;
}
.u-fill--navy, .u-fill--navy path {
    fill: #303651;
}
.u-bg--navy_dark {
    background-color: #1C223D;
    color:  #F1F4FA;
}

.u-bg--blue-gradient {
    background-color: #3790F4;
    background: linear-gradient(270deg, #797EF6 0%, #0567D5 100%);
    color: #fff;
}

/* Header ACCENT  */
.u-bg--transparent h1,
.u-bg--transparent h2,
.u-bg--transparent h3,
.u-bg--transparent h4,
.u-bg--transparent h5,
.u-bg--transparent div.card-title,
.u-bg--transparent div.slide_cite {
    color: #303651;
}

.u-bg--gray h1,
.u-bg--gray h2,
.u-bg--gray h3,
.u-bg--gray h4,
.u-bg--gray h5,
.u-bg--gray div.card-title,
.u-bg--gray div.slide_cite {
    color: #ffffff;
} 
.u-bg--gray p,
.u-bg--gray span {
    color: #FFFFFF;
}

.u-bg--light_gray h1,
.u-bg--light_gray h2,
.u-bg--light_gray h3,
.u-bg--light_gray h4,
.u-bg--light_gray h5,
.u-bg--light_gray div.card-title,
.u-bg--light_gray div.slide_cite {
    color: #303651;
}

.u-bg--primary h1,
.u-bg--primary h2,
.u-bg--primary h3,
.u-bg--primary h4,
.u-bg--primary h5,
.u-bg--primary div.card-title,
.u-bg--primary div.slide_cite,
.u-bg--blue h1,
.u-bg--blue h2,
.u-bg--blue h3,
.u-bg--blue h4,
.u-bg--blue h5,
.u-bg--blue div.card-title,
.u-bg--blue div.slide_cite {
    color: #ffffff;
}

.u-bg--navy h1,
.u-bg--navy h2,
.u-bg--navy h3,
.u-bg--navy h4,
.u-bg--navy h5,
.u-bg--navy div.card-title,
.u-bg--navy div.slide_cite,
.u-bg--navy p,
.u-bg--navy span {
    color: #ffffff;
}

.u-bg--black h1,
.u-bg--black h2,
.u-bg--black h3,
.u-bg--black h4,
.u-bg--black h5,
.u-bg--black div.card-title,
.u-bg--black div.slide_cite,
.u-bg--black p,
.u-bg--black span {
    color: #FFFFFF;
}


.u-bg--white {
    color: #6B6B6B;
}

.u-bg--white h1,
.u-bg--white h2,
.u-bg--white h4,
.u-bg--white h5,
.u-bg--white div.card-title,
.u-bg--white div.slide_cite {
    color: #303651;
}
.u-bg--white h3 {
    /*color: ;*/
}

.u-bg--blue-gradient h1,
.u-bg--blue-gradient h2,
.u-bg--blue-gradient h3, 
.u-bg--blue-gradient h4,
.u-bg--blue-gradient h5,
.u-bg--blue-gradient div.card-title,
.u-bg--blue-gradient div.slide_cite {
    color: #fff;
}


.u-bg--static {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.u-bg--parallax {
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
}
.u-bg--video { position: relative; }
.u-bg--has-shadow {
    box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.05);
}
.u-bg--video > video {
	display: inline-block;
	vertical-align: baseline;
	bottom: 0;
	position: absolute;
	z-index: 0;
	box-sizing: inherit;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
}


.u-color--inherit {
    color: inherit!important;
}
.u-color--gray {
    color: #6B6B6B !important;
}
.u-color--light_gray {
    color: #F1F4FA !important;
}

.u-color--blue {
    color: #3790F4 !important;
}
.u-color--navy {
    color: #303651 !important;
}

.u-color--cobalt {
    color: #0567D5 !important;
}

.u-color--green {
    color: #5DC435 !important;
}

.u-color--white {
    color: #fff !important;
}

.flowIn {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50px;
}

.flowIn--medium {
    height: 100px;
}

.u-inset-shadow {
    box-shadow: inset 0px 13.57px 23.75px 0px rgb(0 0 0 / 4%);
}



.u-position--relative {
    position: relative;
}
.u-position--absolute {
    position: absolute;
}
.u-position--static {
    position: static;
}

.u-ta--center {
    text-align: center;
}
.u-ta--left {
    text-align: left;
}
.u-ta--right {
    text-align: right;
}

@media (max-width: 991px) {
    .u-ta--lg--center {
        text-align: center;
    }
    .u-ta--lg--left {
        text-align: left;
    }
    .u-ta--lg--right {
        text-align: right;
    }
}

@media (max-width: 767px) {
    .u-ta--md--center {
        text-align: center;
    }
    .u-ta--md--left {
        text-align: left;
    }
    .u-ta--md--right {
        text-align: right;
    }
}

.u-tt--uppercase {
    text-transform: uppercase;
}

.u-tt--none {
    text-transform: none;
}

.u-tt--lowercase {
    text-transform: lowercase;
}

.u-tt--capitalize {
    text-transform: capitalize;
}

.u-of--visible {
    overflow: visible!important;
}

.u-of--hidden {
    overflow: hidden!important;
}

.u-margin-remove--p p {
    margin: 0;
}

.u-margin-remove--p p + p {
    margin-top: 1rem;
}

/* THEME SETTINGS */
.u-pt--xxxl {
    padding-top: 160.0px;
}
.u-pt--xxl {
    padding-top: 120.0px;
}
.u-pt--xl {
    padding-top: 100px;
}
.u-pt--md {
    padding-top: 50px;
}
.u-pt--sm {
    padding-top: 29.994001199760046px;
}
.u-pt--none {
    padding-top: 0;
}

.u-pb--xxxl {
    padding-bottom: 160.0px;
}
.u-pb--xxl {
    padding-bottom: 120.0px;
}
.u-pb--xl {
    padding-bottom: 100px;
}
.u-pb--md {
    padding-bottom: 50px;
}
.u-pb--sm {
  padding-bottom: 29.994001199760046px;
}
.u-pb--none {
    padding-bottom: 0;
}
.u-border--top {
    border-top: 1px solid;
}
.u-border--bottom {
    border-bottom: 1px solid;
}
.u-border--left {
    border-left: 1px solid;
}
.u-border--right {
    border-right: 1px solid;
}

.u-custom--anchor {
    position: absolute;
    margin-top: -54px;
}

@media screen and (min-width: 768px) {
    .u-hide--desktop {
        display: none;
        visibility: hidden;
    }
}

@media only screen and (max-width: 767px) {
    .u-hide--mobile {
        display: none;
        visibility: hidden;
    }

    .u-pt--xxxl {
        padding-top: 90px;
    }
    .u-pt--xxl {
        padding-top: 70px;
    }
    .u-pt--xl {
        padding-top: 50px;
    }
    .u-pt--md {
        padding-top: 30px;
    }
    .u-pt--sm {
        padding-top: 20px;
        
    }


    .u-pb--xxxl {
        padding-bottom: 90px;
    }
    .u-pb--xxl {
        padding-bottom: 70px;
    }
    .u-pb--xl {
        padding-bottom: 50px;
    }
    .u-pb--md {
        padding-bottom: 30px;
    }
    .u-pb--sm {
        padding-bottom: 20px;
    }
}

.height-100 {
    height: 100%;
}

.sr--only {
    visibility: hidden;
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}


/* Enabled Animation */

	.sr--invisible {
		visibility: hidden;
    }

    .hs-inline-edit .sr--invisible,
    .sr--invisible.animateNone {
        visibility: visible;
    }

    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
        .sr--invisible {
            visibility: visible;
        }

        .set-height {
            height: 140px;
        }

        .slide__subtext {
            max-width: 100%!important;
        }
    }







/* Blends */
.blend {
    background-blend-mode: soft-light;
}
.blend--primary {
    background-color: #3790F4;
}
.blend--secondary {
    background-color: #5DC435;
}
.blend--tertiary {
    background-color: #FF9900;
}
.blend--tertiary_dark {
    background-color: #FF9900;
}
.blend--green {
    background-color: #5DC435;
}
.blend--black {
    background-color: rgba(23, 23, 23,.75);
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.blend {
    background-color: transparent!important;
}
.blend:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .7;
}

.blend > div {
    position: relative;
    z-index: 1;
}

.blend--primary:before {
    background-color: #3790F4;
  }
  .blend--secondary:before {
    background-color: #5DC435;
  }
  .blend--tertiary:before {
    background-color: #FF9900;
  }
  .blend--tertiary_dark:before {
    background-color: #FF9900;
  }
  .blend--green:before {
    background-color: #5DC435;
  }

  .blend--black:before {
    background-color: #171717;
  }
}
 
[class*="overlap-"] {
    position: relative;
    z-index: 10;
}

[class*="u-border-radius"] {
    overflow: hidden;
}

.u-border-radius--default {
    border-radius: 10px;
}

.u-border-radius--circle {
    border-radius: 50%;
}

@media (min-width: 992px) {
    .overlap-t--lg--sm {
        margin-top: -50px;
    }

    .overlap-b--lg--sm {
        margin-bottom: -50px;
    }

    .overlap-t--lg--md {
        margin-top: -80px;
    }

    .overlap-b--lg--md {
        margin-bottom: -80px;
    }

    .overlap-t--lg--lg {
        margin-top: -120px;
    }

    .overlap-b--lg--lg {
        margin-bottom: -120px;
    }
}

@media (min-width: 768px) {
    .overlap-t--md--sm {
        margin-top: -50px;
    }

    .overlap-b--md--sm {
        margin-bottom: -50px;
    }

    .overlap-t--md--md {
        margin-top: -80px;
    }

    .overlap-b--md--md {
        margin-bottom: -80px;
    }

    .overlap-t--md--lg {
        margin-top: -120px;
    }

    .overlap-b--md--lg {
        margin-bottom: -120px;
    }
}









@media (min-width: 1360px) {
    .container--left {
        padding-left: calc(50vw - 640.0px)!important;
    }
    .container--right {
        padding-right: calc(50vw - 640.0px)!important;
    }
}

@media (max-width: 1359px) {
    .container--left {
        padding-left: 20px!important;
        padding-right: 20px!important;
    }

    .container--right {
        padding-right: 20px!important;
        padding-left: 20px!important;
    }
}
.position-relative {
    position: relative;
}

@media (max-width: 767px) {
  .mobile-text-left {
    text-align: left!important;
  }
}

/* FIT CONTENT */
.u--fit-width {
    width: fit-content;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
body {
    overflow: visible;
    overflow-x: hidden;
}
#whole-body-overlay.active{
position: fixed;
    height: 100%;
    width: 100%;
    background-color: black;
    opacity: .6;
    z-index: 600;
}
.lw_clear_to_yellow, .btn.lw_clear_to_yellow:active,.btn.lw_clear_to_yellow:focus{
    background-color: #fff;
    border-color: #eecb3c;
  color: black;
}
.lw_clear_to_yellow:hover{
    background-color: #eecb3c;
    border-color: #eecb3c;
transition: 200ms;
}
.lw_clear_to_blue, .btn.lw_clear_to_blue:active,.btn.lw_clear_to_blue:focus{
    background-color: #fff;
  border:2px solid #3790f4;
  color: black;
}
.lw_clear_to_blue:hover{
  background-color: #3790f4;
  transition: 200ms;
}
.section--banner .lw-blue-background,.lw-blue-background{
  background-color: #3790f4;
  transition: 200ms;
  background: #3790f4;
}
.lw_blue_to_clear, .btn.lw_blue_to_clear:active,.btn.lw_blue_to_clear:focus{
  background-color: #3790f4;
  border-color: #3790f4;
}
.lw_blue_to_clear:hover{
  background-color: white;
  color: black;
  border-color: #3790f4;
  transition: 200ms;
}
.btn.lw_yellow_to_clear, .btn.lw_yellow_to_clear:active,.btn.lw_yellow_to_clear:focus{
    background-color: #eecb3c;
    border-color: #eecb3c;
  border-color: #eecb3c;
}
.lw_yellow_to_clear .hs-submit input :hover{
    background-color: white;
    color: black;
  transition: 200ms;
  border: 2px solid #eecb3c;
}
.form-btn--lw_clear_to_yellow .hs-submit input{
    background-color: #fff;
    border-color: #eecb3c;
  color: black;
}
.form-btn--lw_clear_to_yellow .hs-submit input:hover{
    background-color: #eecb3c;
    border-color: #eecb3c;
transition: 200ms;
}
.form-btn--lw_clear_to_blue .hs-submit input{
    background-color: #fff;
  border:2px solid #3790f4;
  color: black;
}
.form-btn--lw_clear_to_blue .hs-submit input:hover{
  background-color: #3790f4;
  transition: 200ms;
}
.form-btn--lw_blue_to_clear .hs-submit input{
  background-color: #3790f4;
  border-color: #3790f4;
}
.form-btn--lw_blue_to_clear .hs-submit input:hover{
  background-color: white;
  color: black;
  border-color: #3790f4;
  transition: 200ms;
      border: 3px solid #3790f4
}

.form-btn--lw_yellow_to_clear .hs-submit input{
    background-color: #eecb3c;
    border-color: #eecb3c;
}

.form-btn--lw_yellow_to_clear .hs-submit input:hover{
    background-color: white;
    color: black;
  transition: 200ms;
  border: 2px solid #eecb3c
}
.lw_gear ul li::before {
      min-width: 20px;
    max-width: 20px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_check_rust.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  background-image: url(//8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/raw_assets/public/theme-cents22/images/lw-images/Bluegear_01.svg);
}
.lw_white_gear ul li::before {
      min-width: 20px;
    max-width: 20px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_check_rust.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  background-image: url(//8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/raw_assets/public/theme-cents22/images/lw-images/Bluegear_02.svg);
}
.lw_yellow_gear ul li::before {
      min-width: 20px;
    max-width: 20px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_check_rust.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  background-image: url(//8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/raw_assets/public/theme-cents22/images/lw-images/Yellowgear_01.svg);
}
.lw_gear_gray ul li::before {
      min-width: 20px;
    max-width: 20px;
    background-image: url(https://8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/theme-cents2022/assets/icon_check_rust.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
  background-image: url(//8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/raw_assets/public/theme-cents22/images/lw-images/Graygear.svg);
}
.ls--lw-check ul li::before {
    content: "";
    display: block;
    margin-right: 10px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    background-image: url(//8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/raw_assets/public/theme-cents22/images/lw-images/LW_Gear_Bullet_Check.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.lw_blue_eyebrow, .lw_blue{
  color: #3790f4;
}
.lw_yellow_pulsing::before {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 10%;
    width: 95%;
    height: 95%;
    transform: translate(-50%, -50%);
    background-image: url(//8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/raw_assets/public/theme-cents22/images/lw-images/lw_yellow_pulising.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.grid_container.lw_yellow_pulsing::before {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 95%;
    height: 95%;
    transform: translate(-50%, -50%);
    background-image: url(//8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/raw_assets/public/theme-cents22/images/lw-images/lw_yellow_pulising.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
h6.lw_yellow, .lw_yellow{
  color: #eecb3c;
}
h6.lw_gray, .lw_gray{
  color: #3d484a
}
.lw_yellow_blob::before {
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    top: 10%;
    right: -30%;
    width: 100%;
    height: 80%;
    background-image: url(//8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/raw_assets/public/theme-cents22/images/lw-images/laundroworksYellowBlob.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.lw_yellow_single_circle::before{
    z-index: -1;
    content: "";
    display: block;
    position: absolute;
    top: 40%;
    left: -10%;
    width: 50%;
    height: 50%;
    transform: translateY(-50%);
    background-image: url(//8815653.fs1.hubspotusercontent-na1.net/hubfs/8815653/raw_assets/public/theme-cents22/images/lw-images/lwSingle-yellow-circle.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}
.lw_header_button{
  background-color: #3569B2;
  color: white;
  border: 2px solid white;
}
.lw_header_button:hover{
  background-color: white;
  color: #3569B2;
  border: 2px solid #3569b2;
}
.lw-header .header__lower li.hs-menu-item.hs-menu-depth-1 a:hover {
    font-weight: 600;
    position: relative;
  text-decoration: underline;
}
.lw-header .header__lower li.hs-menu-item.hs-menu-depth-1:last-of-type a:hover {
    color: inherit;
}
.laundroworks .header__upper{
  background: #4068B2
}
@media(max-width: 768px){
.footer-col-3 a{
  display: block;
  padding: 15px;
  margin-bottom: 10px;
}
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
.laundroworks-listing .btn--primary-reverse, .laundroworks-listing .btn.btn--blue-reverse{
  border-color: #3790f4;
  color:#3790f4;
  background-image: unset;
}
.laundroworks-listing .btn--primary-reverse:hover,.laundroworks-listing .btn.btn--blue-reverse:hover{
  background-color: #3790f4;
  color:#fff;
  background: #3790f4;
  background-image: unset;
}
.laundroworks-listing a:hover .btn--primary-reverse{
  background-color: #3790f4;
  color:#fff;
  background: #3790f4;
  background-image: unset;
}
.laundroworks .blog-post__body h1 strong,
.laundroworks .blog-post__body h2 strong,
.laundroworks .blog-post__body h3 strong,
.laundroworks .blog-post__body h4 strong {
    background: #3790f4;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.laundroworks .card--blog .card-category {
  background: #3790f4;
}