/**
 * Bootstrap Basics
 **/
/**
 * Bootstrap
 **/
 .row {
  --lm-gutter-x: 1.5rem;
  --lm-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--lm-gutter-y));
  margin-right: calc(-.5 * var(--lm-gutter-x));
  margin-left: calc(-.5 * var(--lm-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--lm-gutter-x) * .5);
  padding-left: calc(var(--lm-gutter-x) * .5);
  margin-top: var(--lm-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --lm-gutter-x: 0;
}

.g-0,
.gy-0 {
  --lm-gutter-y: 0;
}

.g-1,
.gx-1 {
  --lm-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --lm-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --lm-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --lm-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --lm-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --lm-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --lm-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --lm-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --lm-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --lm-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --lm-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --lm-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --lm-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --lm-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --lm-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --lm-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --lm-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --lm-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --lm-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --lm-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --lm-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --lm-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
  .g-md-0,
  .gx-md-0 {
    --lm-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --lm-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --lm-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --lm-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --lm-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --lm-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --lm-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --lm-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --lm-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --lm-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --lm-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --lm-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --lm-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --lm-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --lm-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --lm-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --lm-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --lm-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --lm-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --lm-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --lm-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --lm-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --lm-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --lm-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --lm-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --lm-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --lm-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --lm-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --lm-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --lm-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --lm-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --lm-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --lm-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --lm-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --lm-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --lm-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --lm-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --lm-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --lm-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --lm-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --lm-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --lm-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --lm-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --lm-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --lm-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --lm-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --lm-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --lm-gutter-y: 3rem;
  }
}

:root {
  --lm-font-sans-serif: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --lm-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --lm-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --lm-body-font-family: var(--lm-font-sans-serif);
  --lm-body-font-size: 1rem;
  --lm-body-font-weight: 400;
  --lm-body-line-height: 1.5;
  --lm-body-color: #6A6C72;
  --lm-body-bg: #fff;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--lm-font-sans-serif);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6A6C72;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h1, h2, h3, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #023E37;
}

h1 {
  font-size: calc(1.4rem + 1.8vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.75rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.0625rem;
}

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

ol,
ul {
  padding-left: 2rem;
}

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

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

b,
strong {
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

a {
  color: #D4EE28;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

a:hover {
  color: #afc80f;
}

img,
svg {
  vertical-align: middle;
}

/*fieldset {
  min-width: 0; // 1
  padding: 0; // 2
  margin: 0; // 2
  border: 0; // 2
}*/
/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
[hidden] {
  display: none !important;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: var(--lm-gutter-x, 0.75rem);
  padding-left: var(--lm-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@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: 1240px;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

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

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar > .container,
.navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  white-space: nowrap;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex;
    flex-basis: auto;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex;
    flex-basis: auto;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex;
    flex-basis: auto;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex;
    flex-basis: auto;
  }
}

@media (min-width: 1400px) {
  .navbar-expand-xxl {
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex;
    flex-basis: auto;
  }
}

.navbar-expand {
  justify-content: flex-start;
}

.navbar-expand .navbar-collapse {
  display: flex;
  flex-basis: auto;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.nav-link:hover, .nav-link:focus {
  color: #0257d5;
}

/*
.tab-content {
  > .tab-pane {
    display: none;
  }
  > .active {
    display: block;
  }
}
*/
/**
 * Tema - Core
 **/
.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.5;
  color: #3F3F3F;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  font-family: var(--lm-font-sans-serif);
  border: 2px solid transparent;
  padding: 0.5rem 1.75rem;
  font-size: 1rem;
  border-radius: 999rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn:hover {
  color: #6A6C72;
}

/* Tipografia */
.titulo span {
  color: #D4EE28;
}

.titulo.det:before {
  content: url("../img/svg/client-assets/lines-bft.svg");
  display: block;
  margin-bottom: 0.33333rem;
  margin-left: 0.33333rem;
}

.headline {
  line-height: 1.5;
  font-weight: 700;
  font-size: 1.0625rem;
}

.fs-sm {
  font-size: 0.875rem;
}

.white {
  filter: brightness(0) invert(1);
}

.fwb {
  font-weight: 700;
}

.fwl {
  font-weight: 300 !important;
}

.fwn {
  font-weight: 700;
}

.fwm {
  font-weight: 500;
}

.t-white {
  color: #fff;
}

.col {
  padding: 0 1rem;
}

.w-100 {
  width: 100%;
  min-width: 100%;
}

.h-100 {
  height: 100%;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.flex {
  display: flex;
}

.d-block {
  display: block;
}

.jcc {
  justify-content: center;
}

.jce {
  justify-content: flex-end;
}

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

.aic {
  align-items: center;
}

.ais {
  align-items: stretch;
}

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

.box-shadow {
  box-shadow: 0 0.4rem 0.5rem rgba(0, 0, 0, 0.2);
}

.border-radius {
  border-radius: 1rem;
}

.hide-desktop {
  display: none !important;
}

.ovf-h {
  overflow: hidden;
}

.svg {
  width: 1rem;
  min-width: 1rem;
  height: 1rem;
  object-fit: contain;
  margin: auto;
}

.border {
  border: 1px solid #F2F3F8;
}

.d-inline-block {
  display: inline-block;
}

.itens-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.itens-lista li {
  display: flex;
  align-items: center;
  margin: 1rem auto;
}

.itens-lista li:before {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1rem;
  background: url("../img/svg/client-assets/check.svg") no-repeat center/contain;
}

.mb-0 {
  margin-bottom: 0;
}

.mbl-3 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-3 {
  margin-top: 1rem;
}

.mtl-3 {
  margin-top: 3rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.myl-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.myl-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__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;
  }
  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}

/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}

.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@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);
  }
}

.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@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);
  }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate__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);
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@keyframes fadeInDownPlus {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
}

.animate__fadeInDownPlus {
  -webkit-animation-name: fadeInDownPlus;
  animation-name: fadeInDownPlus;
}

@-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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__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);
  }
}

.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}

@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}

.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}

@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}

.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}

@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}

.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}

@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}

.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

#cookie-notice {
  position: fixed;
  min-width: 100%;
  height: auto;
  z-index: 1000;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 20px;
  left: 0;
  text-align: center;
  font-weight: normal;
}

#cookie-notice,
#cookie-notice * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#cookie-notice.cn-animated {
  -webkit-animation-duration: 0.5s !important;
  animation-duration: 0.5s !important;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

#cookie-notice.cn-animated.cn-effect-none {
  -webkit-animation-duration: 0.001s !important;
  animation-duration: 0.001s !important;
}

#cookie-notice .cookie-notice-container {
  display: block;
}

#cookie-notice.cookie-notice-hidden .cookie-notice-container {
  display: none;
}

#cookie-notice .cookie-revoke-container {
  display: block;
}

#cookie-notice.cookie-revoke-hidden .cookie-revoke-container {
  display: none;
}

.cn-position-top {
  top: 0;
}

.cn-position-bottom {
  bottom: 0;
}

.cookie-notice-container {
  padding: 15px 30px;
  text-align: center;
  width: 100%;
  z-index: 2;
}

.cookie-revoke-container {
  padding: 15px 30px;
  width: 100%;
  z-index: 1;
}

.cn-close-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
  width: 15px;
  height: 15px;
  opacity: 0.5;
  padding: 10px;
  outline: none;
}

.cn-close-icon:hover {
  opacity: 1;
}

.cn-close-icon:before,
.cn-close-icon:after {
  position: absolute;
  content: ' ';
  height: 15px;
  width: 2px;
  top: 3px;
  background-color: #fff;
}

.cn-close-icon:before {
  transform: rotate(45deg);
}

.cn-close-icon:after {
  transform: rotate(-45deg);
}

#cookie-notice .cn-revoke-cookie {
  margin: 0;
}

#cookie-notice .cn-button {
  margin: 0 0 0 10px;
}

.cn-button.wp-default,
.cn-button.bootstrap {
  font-family: -apple-system,BlinkMacSystemFont,Arial,Roboto,"Helvetica Neue",sans-serif;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.25px;
  line-height: 20px;
  margin: 0;
  text-align: center;
  text-transform: none;
  display: inline-block;
  cursor: pointer;
  touch-action: manipulation;
  white-space: nowrap;
  outline: none;
  box-shadow: none;
  text-shadow: none;
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-decoration: none;
  padding: 8.5px 10px;
  line-height: 1;
}

.cn-button.wp-default:hover,
.cn-button.bootstrap:hover {
  box-shadow: inset 0 0 0 99999px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.cn-button.wp-default {
  color: #fff;
  background: #fbb03b;
}

.cn-button.bootstrap {
  color: #fff;
  background: #20C19E;
}

.cn-text-container {
  margin: 0 0 6px 0;
}

.cn-text-container,
.cn-buttons-container {
  display: inline-block;
}

@media all and (max-width: 900px) {
  .cookie-notice-container #cn-notice-text {
    display: block;
  }
  .cookie-notice-container #cn-notice-buttons {
    display: block;
  }
  #cookie-notice .cn-button {
    margin: 0 5px 5px 5px;
  }
}

@media all and (max-width: 480px) {
  .cookie-notice-container,
  .cookie-revoke-container {
    padding: 15px 25px;
  }
}

#cookie-notice {
  background: #D4EE28;
  z-index: 1000 !important;
}

#cookie-notice.cookie-revoke-hidden.cookie-notice-visible {
  display: block;
}

#cookie-notice.cookie-revoke-hidden {
  display: none;
}

#cookie-notice .cn-button:not(.cn-button-custom) {
  padding: .25rem .5rem;
  background-color: #D4EE28 !important;
}

#cookie-notice .cn-button:not(.cn-button-custom):hover {
  background-color: #afc80f !important;
  color: #fff;
}

#cookie-notice #cn-notice-text {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  #cookie-notice .cn-close-icon {
    top: 1rem;
    right: 0.5rem;
  }
}

/**
 * Tema - Arquivos
 **/
.btn-wpp {
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  z-index: 1070;
  text-align: center;
  animation-iteration-count: infinite;
  animation-name: grow;
  animation-duration: 1.5s;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}

.btn-wpp img {
  margin-bottom: 0;
  width: 3rem;
}

.btn-wpp.offset-wp {
  bottom: 2.8rem;
}

.navbar-toggler {
  display: none;
}

.navbar-fixed-top {
  padding: 1rem;
  padding-right: 2rem;
  position: fixed;
  width: 100vw;
  z-index: 1020;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

.navbar-brand {
  padding: 0;
}

.navbar-brand img, .navbar-brand svg {
  width: 110px;
  transition: all 0.2s ease-in-out;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}

.dropdown-toggle:after {
  content: '';
  border: 0;
  background: url("../img/svg/client-assets/angle.svg") no-repeat center/contain;
  width: 0.5rem;
  height: 0.5rem;
  transition: all 0.2s ease-in-out;
}

header .menu {
  margin: 0 0 0 auto;
  justify-content: flex-end;
}

header .menu .redes-sociais {
  margin-left: 1rem;
}

header .menu .nav-item {
  display: flex;
  align-items: center;
  position: relative;
}

header .menu .nav-item .nav-link {
  color: #fff;
  position: relative;
  padding: 0.2rem 0.8rem;
}

header .menu .nav-item.btn {
  border: 2px solid #D4EE28;
  margin: 0 0.5rem;
  border-radius: 999rem;
  font-weight: 300;
  padding: 0 0.5rem 0;
}

header .menu .nav-item.btn .nav-link {
  padding: 0.25rem 1rem;
}

header .menu .nav-item.area-cliente .nav-link::after {
  content: '';
  filter: brightness(0) invert(1);
  width: 0.66667rem;
  height: 0.66667rem;
  background: url("../img/svg/etc/long-arrow.svg") no-repeat center/contain;
  display: inline-block;
  transform: rotate(225deg);
  margin-left: 0.33333rem;
}

header .menu .nav-item.area-cliente .nav-link:before {
  content: '';
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  height: 3px;
  width: 85%;
  margin: 0 auto;
  border-radius: 999rem;
  background: #fff;
  transition: all 0.2s ease-in-out;
}

header .menu .nav-item:hover .nav-link, header .menu .nav-item:focus .nav-link, header .menu .nav-item.active .nav-link {
  color: #D4EE28;
}

header .menu .nav-item:hover.btn, header .menu .nav-item:focus.btn, header .menu .nav-item.active.btn {
  background: #D4EE28;
}

header .menu .nav-item:hover.btn .nav-link, header .menu .nav-item:focus.btn .nav-link, header .menu .nav-item.active.btn .nav-link {
  color: #fff;
}

header .menu .nav-item:hover.area-cliente .nav-link:before, header .menu .nav-item:focus.area-cliente .nav-link:before, header .menu .nav-item.active.area-cliente .nav-link:before {
  background: #D4EE28;
}

header .sticky {
  background: #023E37;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  top: 0;
}

header .sticky .dropdown-toggle:after {
  filter: none;
}

header .sticky.wow {
  visibility: visible !important;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

.dropdown .dropdown-menu {
  opacity: 0;
  transform: translate3d(0, 10%, 0);
  visibility: hidden;
  top: 130%;
  transition: all 0.2s ease-in-out;
}

.dropdown .dropdown-menu .dropdown-item {
  padding: 1rem;
  border-radius: 0.5rem;
  background: #fff;
  color: #3F3F3F;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}

.dropdown .dropdown-menu .dropdown-item .icone-menu {
  flex-wrap: nowrap;
  display: flex;
  align-items: center;
}

.dropdown .dropdown-menu .dropdown-item .icone-bg-menu .img-ico img {
  min-width: 1rem;
  margin-right: 1rem;
}

.dropdown .dropdown-menu .dropdown-item .tit-menu {
  display: block;
}

.dropdown .dropdown-menu .dropdown-item .desc-menu {
  font-size: 0.875rem;
  color: #6c757d;
  font-weight: 400;
  line-height: 1;
}

.dropdown .dropdown-menu .dropdown-item:hover {
  background: #f8f9fa;
  color: #023E37;
  transform: scale(1.05);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  z-index: 1;
  position: relative;
}

.dropdown .dropdown-menu .current-menu-item .dropdown-item {
  color: #023E37;
  background: #f8f9fa;
}

.dropdown:not(.mega-menu) .dropdown-menu {
  display: block;
  background: #fff;
  border: 1px solid #e9ecef;
  padding: 0;
  min-width: 300px;
  padding: 0;
  border-radius: 0.5rem;
  left: -50%;
}

.dropdown:not(.mega-menu) .dropdown-menu .nav-item:hover:before {
  display: none;
}

.dropdown:not(.mega-menu) .dropdown-menu .nav-item:first-child .dropdown-item {
  margin-top: 0;
}

.dropdown:not(.mega-menu) .dropdown-menu .nav-item:last-child .dropdown-item {
  border-bottom: 0;
  margin-bottom: 0;
}

.dropdown:not(.mega-menu) .dropdown-menu .dropdown-item {
  width: 100%;
  padding: 1rem 0.5rem;
  position: relative;
  border-bottom: 1px solid #e9ecef;
  margin: 0 1rem;
  border-radius: 0;
}

.dropdown:not(.mega-menu) .dropdown-menu .dropdown-item:hover {
  background: #f8f9fa;
}

.dropdown.mega-menu .dropdown-menu {
  min-width: 590px;
  left: -220%;
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-radius: 0.5rem;
  border: 1px solid #e9ecef;
  background: #fff;
  box-shadow: 0 0.4rem 0.5rem rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
}

.dropdown.mega-menu .dropdown-menu .nav-item {
  width: calc(50% - (1rem * 2));
  margin: 0 1rem;
}

.dropdown.mega-menu .dropdown-menu .nav-item:not(:nth-last-child(-n+2)) {
  border-bottom: 1px solid #F2F3F8;
}

.dropdown.mega-menu .dropdown-menu .nav-item:hover:before {
  display: none;
}

.single-post .sbnr:not(.sticky) .navbar-brand svg {
  filter: none;
}

.single-post .sbnr:not(.sticky) .menu .nav-item .nav-link {
  color: #6A6C72;
}

.single-post .sbnr:not(.sticky) .menu .nav-item:hover .nav-link {
  color: #D4EE28;
}

/* Banner Home*/
.banner-home .container,
.banner-padrao .container {
  position: relative;
}

.banner-home .container:before,
.banner-padrao .container:before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  right: -3rem;
  bottom: -10rem;
  top: 0;
  background: url("../img/svg/client-assets/favicon.svg") no-repeat right 80%;
  background-size: 60%;
}
@media only screen and (max-width: 600px) and (min-width: 300px) {
.banner-home .container:before,
.banner-padrao .container:before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  right: -3rem;
  bottom: -17rem;
  top: 0;
  background: url("../img/svg/client-assets/favicon.svg") no-repeat right 80%;
  background-size: 60%;
}
}
.banner-home:before,
.banner-home .single-click,
.banner-padrao:before,
.banner-padrao .single-click {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.banner-home:before,
.banner-padrao:before {
  top: 0;
  z-index: -1;
  width: 98%;
  border-radius: 0 0 7rem 0;
  background: #023E37;
  height: 100%;
}

.banner-home .single-click,
.banner-padrao .single-click {
  background: #fff url("../img/svg/etc/long-arrow.svg") center no-repeat;
  background-size: 25%;
  width: 3rem;
  height: 3rem;
  font-size: 0;
  box-shadow: 0 0.4rem 0.5rem rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  margin: 0 auto;
  transform: translate3d(0, 50%, 0);
}

.banner-home .row[style],
.banner-padrao .row[style] {
  padding: 12rem 0 9rem;
}

.banner-home .row[style] {
  padding: 6rem 0 0;
}

.banner-home .imagem img {
  max-height: 90vh;
  object-fit: contain;
}

.banner-home .single-click {
  bottom: 30%;
}

.rs-sm {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
}

.rs-sm li {
  margin-right: 0.66667rem;
  display: inline-flex;
  transition: all 0.2s ease-in-out;
}

.rs-sm li:last-child {
  margin-right: 0;
}

.rs-sm li:hover {
  filter: brightness(0.5);
}

.rs-sm li.primary {
  filter: invert(0);
}

.rs-sm li.primary:hover {
  filter: invert(0);
}

.rs-sm li.secondary {
  filter: invert(0);
}

.rs-sm li.secondary:hover {
  filter: invert(0);
}

.rs-sm a[href*="facebook"],
.rs-sm a[href*="fb.me"],
.rs-sm a[href*="instagr.am"],
.rs-sm a[href*="instagr.com"],
.rs-sm a[href*="instagram"],
.rs-sm a[href*="youtube"],
.rs-sm a[href*="twitter"],
.rs-sm a[href*="linkedin"],
.rs-sm a[href*="whatsapp"],
.rs-sm a[href*="spotify"],
.rs-sm a[href*="pinterest"] {
  display: block;
  width: calc(1rem * var(--size));
  height: calc(1rem * var(--size));
  background-color: #fff;
}

.rs-sm a[href*="facebook"],
.rs-sm a[href*="fb.me"] {
  background: url("../img/svg/social-media/facebook-f.svg") no-repeat center center;
}

.rs-sm a[href*="instagr.am"],
.rs-sm a[href*="instagr.com"],
.rs-sm a[href*="instagram"] {
  background: url("../img/svg/social-media/instagram.svg") no-repeat center center;
}

.rs-sm a[href*="youtube"] {
  background: url("../img/svg/social-media/youtube.svg") no-repeat center center;
}

.rs-sm a[href*="linkedin"] {
  background: url("../img/svg/social-media/linkedin.svg") no-repeat center center;
}

.rs-sm a[href*="twitter"] {
  background: url("../img/svg/social-media/twitter.svg") no-repeat center center;
}

.rs-sm a[href*="whatsapp"] {
  background: url("../img/svg/social-media/whatsapp-alt.svg") no-repeat center center;
  background-size: contain;
}

.rs-sm a[href*="spotify"] {
  background: url("../img/svg/social-media/spotify.svg") no-repeat center center;
  background-size: contain;
}

.rs-sm a[href*="pinterest"] {
  background: url("../img/svg/social-media/pinterest.svg") no-repeat center center;
}
