@charset "UTF-8";

.has-black-color {
  color: #1D1039;
}

.has-black-background-color {
  background-color: #1D1039;
}

.bg-color--black {
  background-color: #1D1039;
}

.has-gray-color {
  color: #4B515A;
}

.has-gray-background-color {
  background-color: #4B515A;
}

.bg-color--gray {
  background-color: #4B515A;
}

.has-light-gray-color {
  color: #F2F6FC;
}

.has-light-gray-background-color {
  background-color: #F2F6FC;
}

.bg-color--light-gray {
  background-color: #F2F6FC;
}

.has-blue-color {
  color: #2B84C6;
}

.has-blue-background-color {
  background-color: #2B84C6;
}

.bg-color--blue {
  background-color: #2B84C6;
}

.has-red-color {
  color: firebrick;
}

.has-red-background-color {
  background-color: firebrick;
}

.bg-color--red {
  background-color: firebrick;
}

.has-white-color {
  color: #ffffff;
}

.has-white-background-color {
  background-color: #ffffff;
}

.bg-color--white {
  background-color: #ffffff;
}

/*!
 * Bootstrap Grid v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.container, .bs-bp-container,
body.buddypress #page #primary, .learndash_post_sfwd-courses .learndash-wrapper,
.learndash_post_sfwd-courses .bb-grid-cell,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container, .bs-bp-container,
body.buddypress #page #primary, .learndash_post_sfwd-courses .learndash-wrapper,
.learndash_post_sfwd-courses .bb-grid-cell {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container, .bs-bp-container,
body.buddypress #page #primary, .learndash_post_sfwd-courses .learndash-wrapper,
.learndash_post_sfwd-courses .bb-grid-cell {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container, .bs-bp-container,
body.buddypress #page #primary, .learndash_post_sfwd-courses .learndash-wrapper,
.learndash_post_sfwd-courses .bb-grid-cell {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, .bs-bp-container,
body.buddypress #page #primary, .learndash_post_sfwd-courses .learndash-wrapper,
.learndash_post_sfwd-courses .bb-grid-cell {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container, .bs-bp-container,
body.buddypress #page #primary, .learndash_post_sfwd-courses .learndash-wrapper,
.learndash_post_sfwd-courses .bb-grid-cell {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -.5);
  margin-left: calc(var(--bs-gutter-x) * -.5);
}
.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-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.3333333333%;
}

.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.6666666667%;
}

@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.3333333333%;
  }

  .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.6666666667%;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }
}
@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.3333333333%;
  }

  .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.6666666667%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.d-inline {
  display: inline !important;
}

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

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

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

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

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

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

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

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !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: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !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: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 992px) {
  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !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: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !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: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !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: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/*!
 * Bootstrap Utilities v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #2B84C6;
}
.link-primary:hover, .link-primary:focus {
  color: #559dd1;
}

.link-secondary {
  color: #6c757d;
}
.link-secondary:hover, .link-secondary:focus {
  color: #565e64;
}

.link-success {
  color: #00B79F;
}
.link-success:hover, .link-success:focus {
  color: #33c5b2;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: firebrick;
}
.link-danger:hover, .link-danger:focus {
  color: #8e1b1b;
}

.link-light {
  color: #f8f9fa;
}
.link-light:hover, .link-light:focus {
  color: #f9fafb;
}

.link-dark {
  color: #212529;
}
.link-dark:hover, .link-dark:focus {
  color: #1a1e21;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

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

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

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

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

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(29, 16, 57, 0.15) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(29, 16, 57, 0.075) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(29, 16, 57, 0.175) !important;
}

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

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #2B84C6 !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #00B79F !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: firebrick !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #212529 !important;
}

.border-white {
  border-color: #ffffff !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

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

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

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

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

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

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

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

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

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

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  color: #2B84C6 !important;
}

.text-secondary {
  color: #6c757d !important;
}

.text-success {
  color: #00B79F !important;
}

.text-info {
  color: #0dcaf0 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: firebrick !important;
}

.text-light {
  color: #f8f9fa !important;
}

.text-dark {
  color: #212529 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(29, 16, 57, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-primary {
  background-color: #2B84C6 !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

.bg-success {
  background-color: #00B79F !important;
}

.bg-info {
  background-color: #0dcaf0 !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

.bg-danger {
  background-color: firebrick !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #212529 !important;
}

.bg-body {
  background-color: #ffffff !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 0.25rem !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !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: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !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: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !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: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !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: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

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

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

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

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !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: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
html {
  font-size: 62.5%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
html, body {
  margin: 0;
  padding: 0;
  min-height: -webkit-fill-available;
}

body {
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

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

img::-moz-selection,
img::selection {
  background: transparent;
}

em,
i,
q,
dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

big {
  font-size: 120%;
}

small {
  font-size: 75%;
}

ins {
  text-decoration: underline;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

abbr,
acronym {
  cursor: help;
}

audio,
canvas,
img,
svg,
video {
  vertical-align: middle;
}

img, video, object, svg, iframe {
  max-width: 100%;
  border: none;
}

img {
  height: auto;
}

svg {
  max-height: 100%;
}

figure {
  max-width: 100%;
  margin: 0;
}

hr {
  background-color: silver;
  border: 0;
  height: 1px;
  margin: 0 0 3.2rem;
}

a[href^="tel:"] {
  border: 0;
}

ul,
ol {
  margin: 0 0 3.2rem 2.2rem;
  padding: 0;
}
ul li,
ol li {
  line-height: 1.2;
  padding: 0;
}
ul li > ul,
ul li > ol,
ol li > ul,
ol li > ol {
  margin-bottom: 0;
  margin-left: 2rem;
}

::marker {
  color: #DAE1EC;
}

dt,
dd {
  line-height: 1.5;
}

dt {
  font-weight: bold;
}
dt + dd {
  margin-top: 0.8rem;
}

dt + dd {
  margin-top: 0.8rem;
}

dd + dt {
  margin-top: 1.6rem;
}

code, kbd, pre, samp {
  font-family: monospace;
  font-size: 1.6rem;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 3.2rem;
  border-collapse: collapse;
  background-color: transparent;
}
table td, table th {
  padding: 1rem 1.5rem;
  vertical-align: top;
  border-top: 1px solid silver;
}
table th {
  vertical-align: bottom;
  text-align: left;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.break-link {
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -webkit-hyphens: auto;
  hyphens: auto;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5rem;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5rem;
}

.aligncenter,
.entry-content > img:not([class]) {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.2rem;
  text-align: center;
}

@media (max-width: 575.98px) {
  .alignleft,
.alignright {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3.2rem;
    text-align: center;
  }
}

.alignnone {
  margin-bottom: 3.2rem;
  text-align: center;
}

.fluid-width-video-wrapper {
  margin-bottom: 3.2rem;
}

figure {
  margin: 0;
}
figure img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

h1.center, h2.center, h3.center, h4.center, h5.center, p.center {
  text-align: center;
}

iframe,
.embedly-card,
.instagram-media,
.twitter-tweet,
twitterwidget {
  margin: 0 auto;
  display: block;
}
iframe + div,
.embedly-card + div,
.instagram-media + div,
.twitter-tweet + div,
twitterwidget + div {
  margin-top: -3rem;
  text-align: center;
}

p > iframe {
  margin: 0 auto;
}

.twitter-tweet {
  margin-bottom: 3rem !important;
}

.instagram-media {
  margin: 0 auto 3rem !important;
}
.instagram-media:before {
  display: none !important;
}

/*--------------------------------------------------------------
# Lists
--------------------------------------------------------------*/
.list-style-none {
  margin: 0 0 3.2rem;
  list-style: none;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* WordPress Gallery
------------------------------------------ */
.gallery {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.gallery:after {
  display: table;
  content: "";
  clear: both;
}

.gallery-item {
  margin: 0;
  float: left;
  padding: 1.5rem;
}

.gallery-item img {
  width: 100%;
}

.gallery-columns-1 .gallery-item {
  width: 100%;
  float: none;
}

.gallery-columns-2 .gallery-item {
  width: 50%;
}

.gallery-columns-3 .gallery-item {
  width: 33.3333%;
}

.gallery-columns-4 .gallery-item {
  width: 25%;
}

.gallery-columns-5 .gallery-item {
  width: 20%;
}

.gallery-columns-6 .gallery-item {
  width: 16.6667%;
}

.gallery-columns-7 .gallery-item {
  width: 14.2857%;
}

.gallery-columns-8 .gallery-item {
  width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  width: 11.1111%;
}

.gallery-columns-2 .gallery-item:nth-child(2n+1),
.gallery-columns-3 .gallery-item:nth-child(3n+1),
.gallery-columns-4 .gallery-item:nth-child(4n+1),
.gallery-columns-5 .gallery-item:nth-child(5n+1),
.gallery-columns-6 .gallery-item:nth-child(6n+1),
.gallery-columns-7 .gallery-item:nth-child(7n+1),
.gallery-columns-8 .gallery-item:nth-child(8n+1),
.gallery-columns-9 .gallery-item:nth-child(9n+1) {
  clear: left;
}

@media (max-width: 575.98px) {
  div[class*=gallery-columns-] .gallery-item {
    width: 80%;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.wp-block-image {
  margin-bottom: 3.2rem;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-block-image figcaption,
.wp-caption {
  margin-bottom: 1.5rem;
  max-width: 100%;
  text-align: center;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
# Posts Navigation
--------------------------------------------------------------*/
.posts-navigation {
  margin: 5rem 0 2.5rem;
  position: relative;
  border-top: 1px solid #DAE1EC;
  width: 100%;
}

.nav-links {
  display: flex;
  justify-content: space-between;
}
.nav-links a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.1;
  padding: 2rem 0;
  text-transform: capitalize;
}
.nav-links .nav-previous,
.nav-links .nav-next {
  display: flex;
  position: relative;
  flex: 1;
}
.nav-links .nav-previous:before, .nav-links .nav-previous:after,
.nav-links .nav-next:before,
.nav-links .nav-next:after {
  position: absolute;
  color: #b8c6db;
  top: 50%;
  transform: translateY(-50%);
}
.nav-links .nav-previous {
  padding-left: 2.2rem;
}
.nav-links .nav-previous:before {
  content: "←";
  left: 0;
}
.nav-links .nav-next {
  padding-right: 2.2rem;
  justify-content: flex-end;
}
.nav-links .nav-next:before {
  content: "→";
  right: 0;
}

img.alignleft {
  display: flex;
  margin-left: 0;
  margin-right: auto;
}
img.aligncenter {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
img.alignright {
  display: flex;
  margin-left: auto;
  margin-right: 0;
}

/*--------------------------------------------------------------
# wpex_pagination
--------------------------------------------------------------*/
ul.page-numbers {
  list-style: none;
  display: flex;
  margin: 2.4rem 0;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  ul.page-numbers {
    justify-content: center;
  }
}
ul.page-numbers li {
  display: block;
  margin: 0 0.4rem 0.4rem 0;
  text-align: center;
}
ul.page-numbers li a,
ul.page-numbers li span {
  line-height: 1.6em;
  display: block;
  padding: 0;
  height: 3.6rem;
  width: 3.6rem;
  line-height: 3.6rem;
  font-size: 1.6rem;
  text-decoration: none;
  background: #F2F6FC;
  color: #4B515A;
}
ul.page-numbers li a.current,
ul.page-numbers li span.current {
  background: #2B84C6;
  color: white;
}
ul.page-numbers li a {
  cursor: pointer;
  color: #2B84C6;
}
ul.page-numbers li a.current, ul.page-numbers li a:hover {
  color: #4B515A;
  background: #f7f7f7;
  text-decoration: none;
}
ul.page-numbers li a span {
  padding: 0;
}

/*--------------------------------------------------------------
# Cover block fix
--------------------------------------------------------------*/
.wp-block-cover {
  height: auto;
}

/*--------------------------------------------------------------
# Code block
--------------------------------------------------------------*/
.wp-block-code {
  border: 1px solid #DAE1EC;
  padding: 2.4rem;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #444;
  display: block;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

.has-black-color {
  color: black;
}

.has-inline-color.has-black-color {
  color: black;
}

.has-black-background-color,
.has-black-background-color.has-background-dim {
  background-color: black;
}

.wp-block-button .has-black-background-color {
  background: black;
}
.wp-block-button .has-black-background-color:hover, .wp-block-button .has-black-background-color:focus {
  background: black;
}
.wp-block-button .has-black-color {
  color: black;
}
.wp-block-button .has-black-color:hover, .wp-block-button .has-black-color:focus {
  color: black;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-dark-purple-color {
  color: #1D1039;
}

.has-inline-color.has-dark-purple-color {
  color: #1D1039;
}

.has-dark-purple-background-color,
.has-dark-purple-background-color.has-background-dim {
  background-color: #1D1039;
}

.wp-block-button .has-dark-purple-background-color {
  background: #1D1039;
}
.wp-block-button .has-dark-purple-background-color:hover, .wp-block-button .has-dark-purple-background-color:focus {
  background: #1D1039;
}
.wp-block-button .has-dark-purple-color {
  color: #1D1039;
}
.wp-block-button .has-dark-purple-color:hover, .wp-block-button .has-dark-purple-color:focus {
  color: #1D1039;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-gray-color {
  color: #4B515A;
}

.has-inline-color.has-gray-color {
  color: #4B515A;
}

.has-gray-background-color,
.has-gray-background-color.has-background-dim {
  background-color: #4B515A;
}

.wp-block-button .has-gray-background-color {
  background: #4B515A;
}
.wp-block-button .has-gray-background-color:hover, .wp-block-button .has-gray-background-color:focus {
  background: #4B515A;
}
.wp-block-button .has-gray-color {
  color: #4B515A;
}
.wp-block-button .has-gray-color:hover, .wp-block-button .has-gray-color:focus {
  color: #4B515A;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-blue-color {
  color: #2B84C6;
}

.has-inline-color.has-blue-color {
  color: #2B84C6;
}

.has-blue-background-color,
.has-blue-background-color.has-background-dim {
  background-color: #2B84C6;
}

.wp-block-button .has-blue-background-color {
  background: #2B84C6;
}
.wp-block-button .has-blue-background-color:hover, .wp-block-button .has-blue-background-color:focus {
  background: #2B84C6;
}
.wp-block-button .has-blue-color {
  color: #2B84C6;
}
.wp-block-button .has-blue-color:hover, .wp-block-button .has-blue-color:focus {
  color: #2B84C6;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-teal-color {
  color: #00C1EA;
}

.has-inline-color.has-teal-color {
  color: #00C1EA;
}

.has-teal-background-color,
.has-teal-background-color.has-background-dim {
  background-color: #00C1EA;
}

.wp-block-button .has-teal-background-color {
  background: #00C1EA;
}
.wp-block-button .has-teal-background-color:hover, .wp-block-button .has-teal-background-color:focus {
  background: #00C1EA;
}
.wp-block-button .has-teal-color {
  color: #00C1EA;
}
.wp-block-button .has-teal-color:hover, .wp-block-button .has-teal-color:focus {
  color: #00C1EA;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-green-color {
  color: #00B79F;
}

.has-inline-color.has-green-color {
  color: #00B79F;
}

.has-green-background-color,
.has-green-background-color.has-background-dim {
  background-color: #00B79F;
}

.wp-block-button .has-green-background-color {
  background: #00B79F;
}
.wp-block-button .has-green-background-color:hover, .wp-block-button .has-green-background-color:focus {
  background: #00B79F;
}
.wp-block-button .has-green-color {
  color: #00B79F;
}
.wp-block-button .has-green-color:hover, .wp-block-button .has-green-color:focus {
  color: #00B79F;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-light-purple-color {
  color: #AC9ECB;
}

.has-inline-color.has-light-purple-color {
  color: #AC9ECB;
}

.has-light-purple-background-color,
.has-light-purple-background-color.has-background-dim {
  background-color: #AC9ECB;
}

.wp-block-button .has-light-purple-background-color {
  background: #AC9ECB;
}
.wp-block-button .has-light-purple-background-color:hover, .wp-block-button .has-light-purple-background-color:focus {
  background: #AC9ECB;
}
.wp-block-button .has-light-purple-color {
  color: #AC9ECB;
}
.wp-block-button .has-light-purple-color:hover, .wp-block-button .has-light-purple-color:focus {
  color: #AC9ECB;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-light-gray-color {
  color: #F2F6FC;
}

.has-inline-color.has-light-gray-color {
  color: #F2F6FC;
}

.has-light-gray-background-color,
.has-light-gray-background-color.has-background-dim {
  background-color: #F2F6FC;
}

.wp-block-button .has-light-gray-background-color {
  background: #F2F6FC;
}
.wp-block-button .has-light-gray-background-color:hover, .wp-block-button .has-light-gray-background-color:focus {
  background: #F2F6FC;
}
.wp-block-button .has-light-gray-color {
  color: #F2F6FC;
}
.wp-block-button .has-light-gray-color:hover, .wp-block-button .has-light-gray-color:focus {
  color: #F2F6FC;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-white-color {
  color: #ffffff;
}

.has-inline-color.has-white-color {
  color: #ffffff;
}

.has-white-background-color,
.has-white-background-color.has-background-dim {
  background-color: #ffffff;
}

.wp-block-button .has-white-background-color {
  background: #ffffff;
}
.wp-block-button .has-white-background-color:hover, .wp-block-button .has-white-background-color:focus {
  background: #ffffff;
}
.wp-block-button .has-white-color {
  color: #ffffff;
}
.wp-block-button .has-white-color:hover, .wp-block-button .has-white-color:focus {
  color: #ffffff;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

body {
  color: #4B515A;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-size: 1.8rem;
}

a {
  color: #00C1EA;
  transition: all 0.15s ease-out;
}

.post-content p > a:not(.btn):not(.button):not([class*=bb]), .post-content li > a:not(.btn):not(.button):not([class*=bb]),
.page-content p > a:not(.btn):not(.button):not([class*=bb]),
.page-content li > a:not(.btn):not(.button):not([class*=bb]),
.entry-content p > a:not(.btn):not(.button):not([class*=bb]),
.entry-content li > a:not(.btn):not(.button):not([class*=bb]) {
  color: #00C1EA;
}
@media (max-width: 575.98px) {
  .post-content a,
.page-content a,
.entry-content a {
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
.post-content a.lessonlink,
.page-content a.lessonlink,
.entry-content a.lessonlink {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  border-bottom: 1px dotted #2B84C6 !important;
  color: #2B84C6 !important;
}
.post-content a.lessonlink:hover, .post-content a.lessonlink:focus,
.page-content a.lessonlink:hover,
.page-content a.lessonlink:focus,
.entry-content a.lessonlink:hover,
.entry-content a.lessonlink:focus {
  border-color: #1D1039 !important;
  color: #1D1039 !important;
}
.post-content a.internal,
.page-content a.internal,
.entry-content a.internal {
  border-bottom: 1px dotted #4B515A !important;
  color: #4B515A !important;
}
.post-content a.internal:hover, .post-content a.internal:focus,
.page-content a.internal:hover,
.page-content a.internal:focus,
.entry-content a.internal:hover,
.entry-content a.internal:focus {
  border-color: #00C1EA !important;
  color: #00C1EA !important;
}

p {
  margin: 0 0 3.2rem;
  color: #4B515A;
  font-size: 16px;
  line-height: 26px;
}
@media (min-width: 320px) {
  p {
    font-size: calc( 16px + 3 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  p {
    font-size: 19px;
  }
}
@media (min-width: 320px) {
  p {
    line-height: calc( 26px + 6 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  p {
    line-height: 32px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  color: #1D1039;
  line-height: 1.2;
  margin: 1.6rem 0;
  padding: 0;
  min-height: 0vw;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1,
.h1,
h1.entry-title,
h1.page-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 40px;
  line-height: 1;
}
@media (min-width: 320px) {
  h1,
.h1,
h1.entry-title,
h1.page-title {
    font-size: calc( 40px + 8 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  h1,
.h1,
h1.entry-title,
h1.page-title {
    font-size: 48px;
  }
}

h2,
.h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 30px;
}
@media (min-width: 320px) {
  h2,
.h2 {
    font-size: calc( 30px + 10 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  h2,
.h2 {
    font-size: 40px;
  }
}

h3,
.h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 24px;
}
@media (min-width: 320px) {
  h3,
.h3 {
    font-size: calc( 24px + 8 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  h3,
.h3 {
    font-size: 32px;
  }
}

h4,
.h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 20px;
}
@media (min-width: 320px) {
  h4,
.h4 {
    font-size: calc( 20px + 5 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  h4,
.h4 {
    font-size: 25px;
  }
}

h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 16px;
}
@media (min-width: 320px) {
  h5 {
    font-size: calc( 16px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 12px;
}
@media (min-width: 320px) {
  h6 {
    font-size: calc( 12px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  h6 {
    font-size: 16px;
  }
}

.entry-content ul:not([class]),
.entry-content ol:not([class]) {
  color: #4B515A;
}
.entry-content ul:not([class]) li,
.entry-content ol:not([class]) li {
  line-height: 1.5;
  margin-bottom: 0.6rem;
}
.entry-content ul:not([class]) ::marker,
.entry-content ol:not([class]) ::marker {
  color: #00C1EA;
}
.entry-content ol:not([class]) {
  counter-reset: item;
}
.entry-content ol:not([class]) > li {
  margin: 0 0 0.6rem;
  text-indent: -2rem;
  list-style-type: none;
  counter-increment: item;
}
.entry-content ol:not([class]) > li:before {
  color: #00C1EA;
  width: 1rem;
  padding-right: 0.5em;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.has-black-color {
  color: black;
}

.has-inline-color.has-black-color {
  color: black;
}

.has-black-background-color,
.has-black-background-color.has-background-dim {
  background-color: black;
}

.wp-block-button .has-black-background-color {
  background: black;
}
.wp-block-button .has-black-background-color:hover, .wp-block-button .has-black-background-color:focus {
  background: black;
}
.wp-block-button .has-black-color {
  color: black;
}
.wp-block-button .has-black-color:hover, .wp-block-button .has-black-color:focus {
  color: black;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-dark-purple-color {
  color: #1D1039;
}

.has-inline-color.has-dark-purple-color {
  color: #1D1039;
}

.has-dark-purple-background-color,
.has-dark-purple-background-color.has-background-dim {
  background-color: #1D1039;
}

.wp-block-button .has-dark-purple-background-color {
  background: #1D1039;
}
.wp-block-button .has-dark-purple-background-color:hover, .wp-block-button .has-dark-purple-background-color:focus {
  background: #1D1039;
}
.wp-block-button .has-dark-purple-color {
  color: #1D1039;
}
.wp-block-button .has-dark-purple-color:hover, .wp-block-button .has-dark-purple-color:focus {
  color: #1D1039;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-gray-color {
  color: #4B515A;
}

.has-inline-color.has-gray-color {
  color: #4B515A;
}

.has-gray-background-color,
.has-gray-background-color.has-background-dim {
  background-color: #4B515A;
}

.wp-block-button .has-gray-background-color {
  background: #4B515A;
}
.wp-block-button .has-gray-background-color:hover, .wp-block-button .has-gray-background-color:focus {
  background: #4B515A;
}
.wp-block-button .has-gray-color {
  color: #4B515A;
}
.wp-block-button .has-gray-color:hover, .wp-block-button .has-gray-color:focus {
  color: #4B515A;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-blue-color {
  color: #2B84C6;
}

.has-inline-color.has-blue-color {
  color: #2B84C6;
}

.has-blue-background-color,
.has-blue-background-color.has-background-dim {
  background-color: #2B84C6;
}

.wp-block-button .has-blue-background-color {
  background: #2B84C6;
}
.wp-block-button .has-blue-background-color:hover, .wp-block-button .has-blue-background-color:focus {
  background: #2B84C6;
}
.wp-block-button .has-blue-color {
  color: #2B84C6;
}
.wp-block-button .has-blue-color:hover, .wp-block-button .has-blue-color:focus {
  color: #2B84C6;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-teal-color {
  color: #00C1EA;
}

.has-inline-color.has-teal-color {
  color: #00C1EA;
}

.has-teal-background-color,
.has-teal-background-color.has-background-dim {
  background-color: #00C1EA;
}

.wp-block-button .has-teal-background-color {
  background: #00C1EA;
}
.wp-block-button .has-teal-background-color:hover, .wp-block-button .has-teal-background-color:focus {
  background: #00C1EA;
}
.wp-block-button .has-teal-color {
  color: #00C1EA;
}
.wp-block-button .has-teal-color:hover, .wp-block-button .has-teal-color:focus {
  color: #00C1EA;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-green-color {
  color: #00B79F;
}

.has-inline-color.has-green-color {
  color: #00B79F;
}

.has-green-background-color,
.has-green-background-color.has-background-dim {
  background-color: #00B79F;
}

.wp-block-button .has-green-background-color {
  background: #00B79F;
}
.wp-block-button .has-green-background-color:hover, .wp-block-button .has-green-background-color:focus {
  background: #00B79F;
}
.wp-block-button .has-green-color {
  color: #00B79F;
}
.wp-block-button .has-green-color:hover, .wp-block-button .has-green-color:focus {
  color: #00B79F;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-light-purple-color {
  color: #AC9ECB;
}

.has-inline-color.has-light-purple-color {
  color: #AC9ECB;
}

.has-light-purple-background-color,
.has-light-purple-background-color.has-background-dim {
  background-color: #AC9ECB;
}

.wp-block-button .has-light-purple-background-color {
  background: #AC9ECB;
}
.wp-block-button .has-light-purple-background-color:hover, .wp-block-button .has-light-purple-background-color:focus {
  background: #AC9ECB;
}
.wp-block-button .has-light-purple-color {
  color: #AC9ECB;
}
.wp-block-button .has-light-purple-color:hover, .wp-block-button .has-light-purple-color:focus {
  color: #AC9ECB;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-light-gray-color {
  color: #F2F6FC;
}

.has-inline-color.has-light-gray-color {
  color: #F2F6FC;
}

.has-light-gray-background-color,
.has-light-gray-background-color.has-background-dim {
  background-color: #F2F6FC;
}

.wp-block-button .has-light-gray-background-color {
  background: #F2F6FC;
}
.wp-block-button .has-light-gray-background-color:hover, .wp-block-button .has-light-gray-background-color:focus {
  background: #F2F6FC;
}
.wp-block-button .has-light-gray-color {
  color: #F2F6FC;
}
.wp-block-button .has-light-gray-color:hover, .wp-block-button .has-light-gray-color:focus {
  color: #F2F6FC;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

.has-white-color {
  color: #ffffff;
}

.has-inline-color.has-white-color {
  color: #ffffff;
}

.has-white-background-color,
.has-white-background-color.has-background-dim {
  background-color: #ffffff;
}

.wp-block-button .has-white-background-color {
  background: #ffffff;
}
.wp-block-button .has-white-background-color:hover, .wp-block-button .has-white-background-color:focus {
  background: #ffffff;
}
.wp-block-button .has-white-color {
  color: #ffffff;
}
.wp-block-button .has-white-color:hover, .wp-block-button .has-white-color:focus {
  color: #ffffff;
}
.wp-block-button.is-style-outline .has-background:hover, .wp-block-button.is-style-outline .has-background:focus {
  background: initial;
}

#masthead {
  background-color: #F2F6FC !important;
  border: 0;
  box-shadow: 0 0 0 transparent;
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 3;
}
@media (min-width: 992px) {
  #masthead {
    padding: 2rem 0 !important;
    position: relative;
  }
}
@media (min-width: 1200px) {
  #masthead {
    padding: 2.4rem 0 !important;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  position: relative;
  zoom: 1;
  width: 100%;
}

.header-logo {
  flex: 0 0 80px;
  max-width: 80px;
}
@media (min-width: 768px) {
  .header-logo {
    flex: 0 0 96px;
    max-width: 96px;
    transform: translateY(-10%);
  }
}
@media (min-width: 992px) {
  .header-logo {
    flex: 0 0 128px;
    max-width: 128px;
  }
}
.header-logo a {
  display: block;
}

#checkbox_toggle {
  display: none;
}

#checkbox_toggle + label {
  padding: 0.75rem 3.2rem 1.05rem 0;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
  border: 0.9rem solid transparent;
  border-width: 0.9rem 0.2rem;
  margin: 0 0 0 1.2rem;
  transform: none;
}
#checkbox_toggle + label:focus {
  outline: 1px solid transparent;
  box-shadow: 0 0 0 0.25rem rgba(218, 225, 236, 0.5);
}
@media (min-width: 992px) {
  #checkbox_toggle + label {
    display: none;
  }
}

.line {
  cursor: pointer;
  border-radius: 0.3rem;
  height: 0.3rem;
  width: 3.2rem;
  background: #2B84C6;
  position: absolute;
  display: block;
  content: "";
  transition: all 0.6s cubic-bezier(0.5, 0.1, 0, 1.2);
}
.line--1 {
  transform: translateY(-0.75rem);
}
.line--3 {
  transform: translateY(0.75rem);
}

#checkbox_toggle:checked ~ .main-navigation {
  min-height: 100vh;
  transition: all 0.3s cubic-bezier(0.5, 1, 0.22, 1);
}
#checkbox_toggle:checked ~ .hamburger .line--1 {
  transform: rotate(-45deg);
}
#checkbox_toggle:checked ~ .hamburger .line--2 {
  opacity: 0;
}
#checkbox_toggle:checked ~ .hamburger .line--3 {
  transform: rotate(45deg);
}

.bug-tracker-sticky {
  position: fixed;
  right: 0;
  z-index: 500;
  background: white;
  padding: 0.5rem;
  bottom: 0;
  font-weight: 700;
  font-size: 10px;
  box-shadow: -4px 2px 53px -24px rgba(0, 0, 0, 0.75);
  border: 2px solid #d9e3ee;
  color: salmon;
}
@media (min-width: 992px) {
  .bug-tracker-sticky {
    bottom: 7rem;
    padding: 1rem;
  }
}
@media (min-width: 320px) {
  .bug-tracker-sticky {
    font-size: calc( 10px + 6 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .bug-tracker-sticky {
    font-size: 16px;
  }
}
.bug-tracker-sticky:hover {
  color: darkgrey;
}

.notice-bar {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: #2B84C6;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: white;
}
.notice-bar .notice-bar-inner {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 992px) {
  .notice-bar .notice-bar-inner {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
@media (min-width: 992px) {
  .notice-bar .notice-bar-inner.notice_content_alignment_centered {
    flex: 0 0 auto;
    width: 66.66666667%;
    margin-left: 16.66666667%;
    text-align: center;
  }
}
.notice-bar p {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: white;
}
.notice-bar a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
}
.notice-bar a:hover {
  color: rgba(255, 255, 255, 0.7);
}
.notice-bar p:last-child() {
  margin-bottom: 0;
}

body.page-template-template-blog #masthead,
body.page-template-template-purple #masthead,
body.home-page #masthead,
body.blog #masthead,
body.bb-dark-theme #masthead {
  background: #1D1039 !important;
}
body.page-template-template-blog #logo-text-color,
body.page-template-template-purple #logo-text-color,
body.home-page #logo-text-color,
body.blog #logo-text-color,
body.bb-dark-theme #logo-text-color {
  fill: white;
}
body.page-template-template-blog .bb-left-panel-mobile,
body.page-template-template-purple .bb-left-panel-mobile,
body.home-page .bb-left-panel-mobile,
body.blog .bb-left-panel-mobile,
body.bb-dark-theme .bb-left-panel-mobile {
  color: #AC9ECB;
}
body.page-template-template-blog .bb-left-panel-mobile > i,
body.page-template-template-purple .bb-left-panel-mobile > i,
body.home-page .bb-left-panel-mobile > i,
body.blog .bb-left-panel-mobile > i,
body.bb-dark-theme .bb-left-panel-mobile > i {
  color: #AC9ECB;
}
body.page-template-template-blog #primary-menu a,
body.page-template-template-purple #primary-menu a,
body.home-page #primary-menu a,
body.blog #primary-menu a,
body.bb-dark-theme #primary-menu a {
  color: #AC9ECB;
}
body.page-template-template-blog .menu-item-has-children:after,
body.page-template-template-purple .menu-item-has-children:after,
body.home-page .menu-item-has-children:after,
body.blog .menu-item-has-children:after,
body.bb-dark-theme .menu-item-has-children:after {
  color: #AC9ECB !important;
}
body.page-template-template-blog .bb-icon-bell-small,
body.page-template-template-blog .bb-icon-search,
body.page-template-template-purple .bb-icon-bell-small,
body.page-template-template-purple .bb-icon-search,
body.home-page .bb-icon-bell-small,
body.home-page .bb-icon-search,
body.blog .bb-icon-bell-small,
body.blog .bb-icon-search,
body.bb-dark-theme .bb-icon-bell-small,
body.bb-dark-theme .bb-icon-search {
  color: #AC9ECB !important;
}
body.page-template-template-blog .singup,
body.page-template-template-purple .singup,
body.home-page .singup,
body.blog .singup,
body.bb-dark-theme .singup {
  border-color: #AC9ECB !important;
  color: #AC9ECB !important;
}
body.page-template-template-blog .singup:hover, body.page-template-template-blog .singup:focus,
body.page-template-template-purple .singup:hover,
body.page-template-template-purple .singup:focus,
body.home-page .singup:hover,
body.home-page .singup:focus,
body.blog .singup:hover,
body.blog .singup:focus,
body.bb-dark-theme .singup:hover,
body.bb-dark-theme .singup:focus {
  border-color: transparent !important;
  background: #00C1EA !important;
  color: white !important;
  text-decoration: none;
}
body.page-template-template-blog .signin-button,
body.page-template-template-purple .signin-button,
body.home-page .signin-button,
body.blog .signin-button,
body.bb-dark-theme .signin-button {
  background: transparent;
  border: transparent;
  color: #AC9ECB !important;
}
body.page-template-template-blog .signin-button:hover, body.page-template-template-blog .signin-button:focus,
body.page-template-template-purple .signin-button:hover,
body.page-template-template-purple .signin-button:focus,
body.home-page .signin-button:hover,
body.home-page .signin-button:focus,
body.blog .signin-button:hover,
body.blog .signin-button:focus,
body.bb-dark-theme .signin-button:hover,
body.bb-dark-theme .signin-button:focus {
  background: transparent;
  color: white !important;
  border-color: transparent;
  box-shadow: 0 0 0 transparent;
}
body.page-template-template-blog a.user-link > span,
body.page-template-template-purple a.user-link > span,
body.home-page a.user-link > span,
body.blog a.user-link > span,
body.bb-dark-theme a.user-link > span {
  color: #AC9ECB !important;
}
body.page-template-template-blog .bb-icon-angle-down,
body.page-template-template-purple .bb-icon-angle-down,
body.home-page .bb-icon-angle-down,
body.blog .bb-icon-angle-down,
body.bb-dark-theme .bb-icon-angle-down {
  color: #AC9ECB !important;
}

.bb-header-buttons {
  display: flex;
  flex-direction: row-reverse;
}
.bb-header-buttons .signin-button:hover, .bb-header-buttons .signin-button:focus {
  background: transparent !important;
  color: #1D1039 !important;
  border-color: transparent;
  box-shadow: 0 0 0 transparent;
}

.bb-login-section .button {
  display: inline-flex;
  align-items: center;
  background: #00C1EA;
  justify-content: center;
  width: 100%;
}

a.user-link {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1D1039;
  letter-spacing: 0;
  height: 80px;
}

@media (min-width: 992px) {
  .main-navigation {
    margin-left: 4rem;
  }
}
@media (min-width: 1200px) {
  .main-navigation {
    margin-left: 5rem;
  }
}

#primary-menu {
  height: auto;
}
#primary-menu > li {
  float: left;
  display: inline-block;
  height: auto;
  line-height: 1;
  padding: 0;
  position: relative;
  vertical-align: middle;
}
#primary-menu a {
  color: #1D1039;
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 1.6rem;
  line-height: 2rem;
  text-decoration: none;
  padding: 1.6rem 2rem 1.7rem;
  letter-spacing: 0;
  height: auto;
}
@media (min-width: 576px) {
  #primary-menu a {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  #primary-menu a {
    padding: 1.6rem 2.4rem;
    margin-left: auto;
    font-size: 1.6rem;
  }
}
#primary-menu .menu-item-has-children:after {
  content: "";
  font-family: bb-icons;
  font-weight: 400;
  speak: none;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 22px;
  transform: translateY(-50%);
  color: #1D1039;
}
#primary-menu .menu-item-has-children ul.sub-menu {
  top: 100%;
  right: -21px;
}
#primary-menu .menu-item-has-children ul.sub-menu:before {
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  right: 28px;
  border: 7px solid #000;
  border-color: #fff #fff transparent transparent;
  transform-origin: 0 0;
  transform: rotate(-45deg);
  box-shadow: 2px -3px 3px 0 rgba(0, 0, 0, 0.02);
  z-index: 1002;
}
#primary-menu .menu-item-has-children ul.sub-menu li a {
  margin: 0;
  color: #1D1039;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-size: 1.6rem;
  padding: 0.8rem 2.4rem;
}
#primary-menu .menu-item-has-children ul.sub-menu li a:hover, #primary-menu .menu-item-has-children ul.sub-menu li a:focus {
  color: #00C1EA;
}

.logo-wrap {
  flex: 0 0 80px;
  max-width: 80px;
}
.logo-wrap #logo-text-color {
  fill: #1D1039 !important;
}

.entry-content > .gform_wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .entry-content > .gform_wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .entry-content > .gform_wrapper {
    margin-top: 6vh;
    margin-bottom: 6vh;
  }
}
.entry-content > .gform_wrapper:first-child {
  margin-top: 0;
}
.entry-content > .wp-block-quote {
  background: #F2F6FC !important;
  margin-top: 30px;
  margin-bottom: 30px;
}
.entry-content > .wp-block-quote > p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
.entry-content > .wp-block-quote:before {
  background: #00B79F !important;
}

.alignfull {
  position: relative;
}

.wp-block-group {
  margin: 0;
}
@media (min-width: 992px) {
  .wp-block-group .wp-block-column:not(:first-child) {
    margin-left: 4rem;
  }
}
.wp-block-group.alignwide, .wp-block-group.alignfull {
  padding: 4rem 3.2rem 3.2rem;
}
@media (min-width: 768px) {
  .wp-block-group.alignwide, .wp-block-group.alignfull {
    padding-top: 8vh;
    padding-bottom: 8vh;
  }
}
@media (min-width: 1200px) {
  .wp-block-group.alignwide, .wp-block-group.alignfull {
    padding-top: 12vh;
    padding-bottom: 12vh;
  }
}

.wp-block-columns {
  margin: 0;
}
@media (min-width: 1200px) {
  .wp-block-columns .wp-block-group__inner-container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .wp-block-columns > .wp-block-column {
    padding-top: 8vh;
    padding-bottom: 8vh;
  }
}
@media (min-width: 1200px) {
  .wp-block-columns > .wp-block-column {
    padding-top: 9.6rem;
    padding-bottom: 9.6rem;
  }
}
.wp-block-columns > .wp-block-column p {
  padding-left: 0;
  padding-right: 0;
}

.wp-block-media-text {
  margin-bottom: 0;
}
.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text .wp-block-media-text__content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text .wp-block-media-text__content {
    padding-top: 8vh;
    padding-bottom: 8vh;
  }
}
@media (min-width: 1400px) {
  .wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text .wp-block-media-text__content {
    max-width: 65.25rem;
  }
}
.wp-block-media-text.has-white-color h1, .wp-block-media-text.has-white-color h2, .wp-block-media-text.has-white-color h3, .wp-block-media-text.has-white-color h4, .wp-block-media-text.has-white-color h5 {
  color: white;
}
.wp-block-media-text.has-white-color p {
  color: #AC9ECB;
}

.wp-block-media-text.alignfull {
  margin: 0;
}

.custom-block,
.alignfull.has-background,
.alignwide.has-background {
  position: relative;
  z-index: 0;
}
.custom-block:after,
.alignfull.has-background:after,
.alignwide.has-background:after {
  content: "";
  background-color: inherit;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 102vw;
  transform: translateX(-50%);
  z-index: -1;
}

.entry-content > .wp-block-columns,
.entry-content > .alignfull,
.entry-content > .alignwide {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: calc(-50vw + 50%);
  margin: 0 !important;
}
@media (min-width: 1400px) {
  .entry-content > .wp-block-columns,
.entry-content > .alignfull,
.entry-content > .alignwide {
    width: 132rem;
    max-width: 132rem;
    left: calc(-66rem + 50%);
  }
}
.entry-content .alignfull + .alignfull .wp-block-media-text__media,
.entry-content .alignfull + .alignfull .wp-block-media-text__content {
  padding-top: 0;
}
.entry-content h1 + .wp-block-buttons, .entry-content h2 + .wp-block-buttons, .entry-content h3 + .wp-block-buttons, .entry-content h4 + .wp-block-buttons, .entry-content h5 + .wp-block-buttons {
  margin-top: 3rem;
}

div.has-background.has-green-background-color {
  position: relative;
  overflow-y: clip;
}
div.has-background.has-green-background-color:before {
  display: none;
}
@media (min-width: 992px) {
  div.has-background.has-green-background-color:before {
    background: url(../svg/logomark-white.svg) no-repeat center top;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 16.7rem;
    height: 19.3rem;
    z-index: 1;
    transform: translate(-33%, -15%);
  }
}
@media (min-width: 1200px) {
  div.has-background.has-green-background-color:before {
    width: 45rem;
    height: 39rem;
    transform: translate(0, -18%);
  }
}

.wp-block-table th,
.wp-block-table td {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
.wp-block-table th {
  background: #1D1039;
  color: white;
}
.wp-block-table td {
  border-color: #DAE1EC;
}

.bottom-sidebar {
  background: #1D1039;
  padding-left: 15px;
  padding-right: 15px;
}
.bottom-sidebar .widget {
  background: transparent;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(172, 158, 203, 0.25);
  color: white;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 4vh;
  padding-bottom: 2vh;
}
@media (min-width: 768px) {
  .bottom-sidebar .widget {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .bottom-sidebar .widget.widget_text {
    padding-top: 6vh;
    padding-bottom: 4vh;
  }
}
.bottom-sidebar .widget h1, .bottom-sidebar .widget h2, .bottom-sidebar .widget h3, .bottom-sidebar .widget h4, .bottom-sidebar .widget h5, .bottom-sidebar .widget h6, .bottom-sidebar .widget p {
  color: white;
  margin-bottom: 2.4rem;
}
.bottom-sidebar .widget .widget-title {
  font-size: 1.6rem;
}

.site-footer {
  background: #1D1039;
  color: #AC9ECB;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .site-footer {
    padding-top: 6vh;
    padding-bottom: 6vh;
  }
}
@media (min-width: 1200px) {
  .site-footer {
    padding-top: 7.2rem;
    padding-bottom: 8.8rem;
  }
}

.footer-connect {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .footer-connect {
    flex: 0 0 auto;
    width: 25%;
  }
}

.footer-logo {
  flex: 0 0 104px;
  max-width: 104px;
}
@media (min-width: 992px) {
  .footer-logo {
    flex: 0 0 128px;
    max-width: 128px;
  }
}
@media (min-width: 1200px) {
  .footer-logo {
    flex: 0 0 156px;
    max-width: 156px;
  }
}
.footer-logo a {
  display: block;
  margin-bottom: 3.2rem;
}

.footer-nav {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  margin-top: 4.8rem;
}
@media (min-width: 992px) {
  .footer-nav {
    margin-top: 0;
    flex: 0 0 auto;
    width: 66.66666667%;
    margin-left: 8.33333333%;
  }
}
@media (min-width: 1200px) {
  .footer-nav {
    flex: 0 0 auto;
    width: 62.5%;
    margin-left: 12.5%;
  }
}
@media (min-width: 1400px) {
  .footer-nav {
    flex: 0 0 auto;
    width: 54.16666667%;
    margin-left: 20.83333333%;
  }
}
@media (min-width: 768px) {
  .footer-nav .menu {
    display: flex;
    justify-content: flex-end;
    margin-top: 2.4rem;
  }
}
@media (min-width: 768px) {
  .footer-nav .menu > li {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .footer-nav .menu > li:last-child {
    padding-right: 0;
  }
}
.footer-nav .menu > li > a {
  pointer-events: none;
}
.footer-nav .menu a {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  display: block;
  color: white;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .footer-nav .menu a {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.footer-nav .menu .sub-menu {
  margin-bottom: 2.8rem;
}
.footer-nav .menu .sub-menu li {
  margin-bottom: 0.6rem;
}
.footer-nav .menu .sub-menu li a {
  text-transform: none;
  margin: 0 0 0 -0.3rem;
  padding: 0.8rem 0.3rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-size: 90%;
  color: #AC9ECB;
  transition: all 0.15s ease;
}
.footer-nav .menu .sub-menu li a:hover, .footer-nav .menu .sub-menu li a:focus {
  text-decoration: none;
  color: white;
}
.footer-nav ul {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}
.site-footer .footer-bottom {
  background-color: transparent;
  margin-top: 3.2rem;
  padding: 1.6rem 0;
  font-size: 1.4rem;
}
.site-footer .footer-bottom__copy, .site-footer .footer-bottom__menu {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 768px) {
  .site-footer .footer-bottom__copy, .site-footer .footer-bottom__menu {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 768px) {
  .site-footer .footer-bottom__menu {
    display: flex;
    justify-content: flex-end;
  }
}
.site-footer .footer-bottom__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-bottom__menu ul li {
  display: inline-block;
  position: relative;
}
.site-footer .footer-bottom__menu ul li:not(:last-of-type):after {
  content: "•";
  display: inline-block;
  position: relative;
  padding: 0 0.8rem;
  margin-left: 0.3rem;
  text-align: center;
}
.site-footer .footer-bottom__menu ul li a {
  color: #AC9ECB;
}
.site-footer .footer-bottom__menu ul li a:hover, .site-footer .footer-bottom__menu ul li a:focus {
  text-decoration: none;
  color: white;
}

.wp-block-pullquote {
  padding: 3.2rem 0;
}
.wp-block-pullquote.has-background blockquote {
  border: 0;
}
.wp-block-pullquote.has-background blockquote p {
  margin-bottom: 2.4rem;
}
.wp-block-pullquote.has-background blockquote cite {
  font-size: 1.8rem;
  font-style: italic;
}
.wp-block-pullquote.alignfull {
  padding-left: 3.2rem;
  padding-right: 3.2rem;
}
.wp-block-pullquote p {
  line-height: 1.33;
  font-size: 3.2rem;
}

blockquote {
  color: inherit;
  font-size: 1em;
  margin: 3.2rem 0;
}
blockquote.wp-block-quote {
  border-left: 0.3rem solid #DAE1EC;
  margin: 3.2rem 0;
  padding: 0 0 0 3.2rem;
}
blockquote.wp-block-quote.is-style-large {
  padding: 1.6rem 3.2rem 1.6rem 4rem;
  margin-bottom: 3.2rem;
}
blockquote.wp-block-quote.is-style-large cite {
  text-align: left;
  font-size: 1.6rem;
  font-style: italic;
}
.wp-block-pullquote blockquote {
  margin: 0;
  border: 0.3rem solid #DAE1EC;
  border-width: 0.3rem 0 0.3rem 0;
  padding: 3.2rem 0;
}
@media (max-width: 767.98px) {
  .wp-block-pullquote blockquote {
    max-width: 100% !important;
  }
}
@media (min-width: 992px) {
  .wp-block-pullquote blockquote {
    padding: 4.8rem 0;
  }
}
@media (min-width: 1200px) {
  .wp-block-pullquote blockquote {
    padding: 6.4rem 0;
  }
}
@media (min-width: 1200px) {
  blockquote p {
    max-width: 120rem;
    margin-left: auto;
    margin-right: auto;
  }
}
blockquote p:last-of-type {
  margin-bottom: 1.2rem;
}
blockquote cite {
  display: block;
  font-size: 1.6rem;
  margin: 1.6rem 0 0 0;
  opacity: 0.75;
}

.search-button {
  color: white;
  font: 0/0 a;
  padding: 0;
  margin: 0 0 0 auto;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 1.8rem;
  background-color: #2B84C6;
  border: none;
  cursor: pointer;
}
@media (min-width: 992px) {
  .search-button {
    order: 99;
    margin-left: 0.5rem;
  }
}
.search-button svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: white;
}
.search-button:focus {
  outline: 1px solid transparent;
  box-shadow: 0 0 0 0.25rem rgba(218, 225, 236, 0.5);
}

.search-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  transition: all 0.2s ease-in-out;
  background: rgba(0, 0, 0, 0.75);
  padding: 0;
  z-index: 3;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-overlay-inner {
  background: white;
  display: flex;
  align-items: center;
  height: 6.3rem;
}
@media (max-width: 575.98px) {
  .search-overlay-inner .container, .search-overlay-inner .bs-bp-container,
.search-overlay-inner body.buddypress #page #primary,
body.buddypress #page .search-overlay-inner #primary, .search-overlay-inner .learndash_post_sfwd-courses .learndash-wrapper, .learndash_post_sfwd-courses .search-overlay-inner .learndash-wrapper,
.search-overlay-inner .learndash_post_sfwd-courses .bb-grid-cell,
.learndash_post_sfwd-courses .search-overlay-inner .bb-grid-cell {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .search-overlay-inner {
    height: 10rem;
  }
}
@media (min-width: 1200px) {
  .search-overlay-inner {
    height: 11rem;
  }
}
.search-overlay-inner .search-form {
  display: flex;
  margin: 0;
}
@media (min-width: 992px) {
  .search-overlay-inner .search-form {
    max-width: 50rem;
    margin: 0 auto;
  }
}
.search-overlay-inner .search-form label {
  margin-bottom: 0;
  flex: 1;
}

input.search-field-top {
  padding-left: 3.2rem;
}

.btn, body.page-template-template-blog .singup,
body.page-template-template-purple .singup,
body.home-page .singup,
body.blog .singup,
body.bb-dark-theme .singup, .bb-header-buttons .singup, .bb-header-buttons .signin-button,
.button,
input.wpProQuiz_button,
.mp-form-submit .mepr-submit,
div.wpforms-container.wpforms-container-full .wpforms-form input[type=submit],
div.wpforms-container.wpforms-container-full .wpforms-form button[type=submit],
div.wpforms-container.wpforms-container-full .wpforms-form .wpforms-page-button,
.wp-block-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1.1;
  background: #00C1EA;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  color: white;
  cursor: pointer;
  text-decoration: none;
  height: 4.2rem;
  margin: 0;
  padding: 0 2.5rem;
  box-shadow: none;
  border-radius: 0.4rem;
  transition: all 0.18s ease-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (min-width: 992px) {
  .btn, body.page-template-template-blog .singup,
body.page-template-template-purple .singup,
body.home-page .singup,
body.blog .singup,
body.bb-dark-theme .singup, .bb-header-buttons .singup, .bb-header-buttons .signin-button,
.button,
input.wpProQuiz_button,
.mp-form-submit .mepr-submit,
div.wpforms-container.wpforms-container-full .wpforms-form input[type=submit],
div.wpforms-container.wpforms-container-full .wpforms-form button[type=submit],
div.wpforms-container.wpforms-container-full .wpforms-form .wpforms-page-button,
.wp-block-button a {
    font-size: 1.8rem;
    height: 5.4rem;
    padding: 0 3.2rem;
    border-radius: 0.6rem;
  }
}
.btn:hover, body.page-template-template-blog .singup:hover,
body.page-template-template-purple .singup:hover,
body.home-page .singup:hover,
body.blog .singup:hover,
body.bb-dark-theme .singup:hover, .bb-header-buttons .singup:hover, .bb-header-buttons .signin-button:hover, .btn:focus, body.page-template-template-blog .singup:focus,
body.page-template-template-purple .singup:focus,
body.home-page .singup:focus,
body.blog .singup:focus,
body.bb-dark-theme .singup:focus, .bb-header-buttons .singup:focus, .bb-header-buttons .signin-button:focus,
.button:hover,
.button:focus,
input.wpProQuiz_button:hover,
.mp-form-submit .mepr-submit:hover,
div.wpforms-container.wpforms-container-full .wpforms-form input[type=submit]:hover,
div.wpforms-container.wpforms-container-full .wpforms-form button[type=submit]:hover,
div.wpforms-container.wpforms-container-full .wpforms-form .wpforms-page-button:hover,
.wp-block-button a:hover,
input.wpProQuiz_button:focus,
.mp-form-submit .mepr-submit:focus,
div.wpforms-container.wpforms-container-full .wpforms-form input[type=submit]:focus,
div.wpforms-container.wpforms-container-full .wpforms-form button[type=submit]:focus,
div.wpforms-container.wpforms-container-full .wpforms-form .wpforms-page-button:focus,
.wp-block-button a:focus {
  background: #2B84C6;
  border-color: #2B84C6;
  color: white;
  text-decoration: none;
}
.btn:focus, body.page-template-template-blog .singup:focus,
body.page-template-template-purple .singup:focus,
body.home-page .singup:focus,
body.blog .singup:focus,
body.bb-dark-theme .singup:focus, .bb-header-buttons .singup:focus, .bb-header-buttons .signin-button:focus,
.button:focus,
input.wpProQuiz_button:focus,
.mp-form-submit .mepr-submit:focus,
div.wpforms-container.wpforms-container-full .wpforms-form input[type=submit]:focus,
div.wpforms-container.wpforms-container-full .wpforms-form button[type=submit]:focus,
div.wpforms-container.wpforms-container-full .wpforms-form .wpforms-page-button:focus,
.wp-block-button a:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(43, 132, 198, 0.5);
  border-color: transparent;
}

.button.mp-hide-pw {
  height: 4rem !important;
}
.button.mp-hide-pw:hover, .button.mp-hide-pw:focus {
  background-color: transparent !important;
  color: #4B515A !important;
}

.button.small,
.btn.small,
body.page-template-template-blog .small.singup,
body.page-template-template-purple .small.singup,
body.home-page .small.singup,
body.blog .small.singup,
body.bb-dark-theme .small.singup,
.bb-header-buttons .small.singup,
.bb-header-buttons .small.signin-button,
.btn--small {
  font-size: 1.6rem;
  height: 4.6rem;
  border-radius: 0.6rem !important;
  display: inline-flex;
}

.button.small {
  height: auto;
  font-size: 1.4rem;
}

.btn--inverse, body.page-template-template-blog .singup,
body.page-template-template-purple .singup,
body.home-page .singup,
body.blog .singup,
body.bb-dark-theme .singup, .bb-header-buttons .signin-button {
  background: transparent;
  border: 0.2rem solid #00C1EA;
  color: #00C1EA;
}
.btn--inverse:hover, body.page-template-template-blog .singup:hover,
body.page-template-template-purple .singup:hover,
body.home-page .singup:hover,
body.blog .singup:hover,
body.bb-dark-theme .singup:hover, .bb-header-buttons .signin-button:hover, .btn--inverse:focus, body.page-template-template-blog .singup:focus,
body.page-template-template-purple .singup:focus,
body.home-page .singup:focus,
body.blog .singup:focus,
body.bb-dark-theme .singup:focus, .bb-header-buttons .signin-button:focus {
  background: #00C1EA;
  color: white;
  border-color: transparent;
}

.btn--white-inverse {
  background: transparent;
  border: 0.2rem solid white;
  color: white;
}
.btn--white-inverse:hover, .btn--white-inverse:focus {
  background: #00C1EA;
  color: white;
  border-color: transparent;
}

div.wpforms-container.wpforms-container-full .wpforms-form input[type=submit],
div.wpforms-container.wpforms-container-full .wpforms-form button[type=submit],
div.wpforms-container.wpforms-container-full .wpforms-form .wpforms-page-button {
  border-color: #00C1EA;
}

input.wpProQuiz_button {
  background-color: #00C1EA !important;
}

.button.btn-new-topic {
  font-size: 1.6rem;
  height: 4.1rem;
  padding-left: 20px;
  padding-right: 20px;
}
.button.btn-new-topic i {
  margin-right: 0.6rem;
}

.button.mp-hide-pw {
  padding: 1em !important;
}
.button.mp-hide-pw:focus {
  box-shadow: 0 0 0 transparent !important;
}
.button.mp-hide-pw .dashicons {
  width: auto;
  height: auto;
}

.related-posts {
  padding: 4.8rem 0;
}
@media (min-width: 992px) {
  .related-posts {
    padding: 8rem 0;
  }
}

.excerpt {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.2rem;
}
@media (min-width: 1200px) {
  .excerpt {
    margin-bottom: 4.2rem;
  }
}
.excerpt__image {
  background: #2B84C6;
  display: block;
  height: 16rem;
  margin-bottom: 1.6rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .excerpt__image {
    height: 18rem;
  }
}
@media (min-width: 1200px) {
  .excerpt__image {
    height: 24rem;
  }
}
@media (min-width: 1400px) {
  .excerpt__image {
    height: 25.6rem;
  }
}
.excerpt__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.excerpt figcaption {
  position: absolute;
  z-index: 1;
  background: #F2F6FC;
  color: #1D1039;
  font-size: 12px;
  padding: 0.4rem 0.8rem;
  top: 0.8rem;
  left: 0.8rem;
  border-radius: 0.4rem;
}
@media (min-width: 320px) {
  .excerpt figcaption {
    font-size: calc( 12px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .excerpt figcaption {
    font-size: 16px;
  }
}
.excerpt > a:hover img, .excerpt > a:focus img {
  transform: scale(1.07);
}
.excerpt div > a {
  color: #00C1EA;
}
.excerpt__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
  flex: 1;
}
.excerpt__text .excerpt-category,
.excerpt__text .excerpt-date,
.excerpt__text .excerpt-author {
  display: block;
  font-size: 90%;
}
.excerpt__text .excerpt-category {
  color: #00B79F;
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 12px;
}
@media (min-width: 320px) {
  .excerpt__text .excerpt-category {
    font-size: calc( 12px + 2 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .excerpt__text .excerpt-category {
    font-size: 14px;
  }
}
.excerpt__text .excerpt-date {
  color: #88909c;
  font-size: 12px;
  margin: 0 0 1.2rem;
}
@media (min-width: 320px) {
  .excerpt__text .excerpt-date {
    font-size: calc( 12px + 3 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .excerpt__text .excerpt-date {
    font-size: 15px;
  }
}
.excerpt__text .btn, .excerpt__text body.page-template-template-blog .singup, body.page-template-template-blog .excerpt__text .singup,
.excerpt__text body.page-template-template-purple .singup,
body.page-template-template-purple .excerpt__text .singup,
.excerpt__text body.home-page .singup,
body.home-page .excerpt__text .singup,
.excerpt__text body.blog .singup,
body.blog .excerpt__text .singup,
.excerpt__text body.bb-dark-theme .singup,
body.bb-dark-theme .excerpt__text .singup, .excerpt__text .bb-header-buttons .singup, .bb-header-buttons .excerpt__text .singup, .excerpt__text .bb-header-buttons .signin-button, .bb-header-buttons .excerpt__text .signin-button {
  margin-top: auto;
}
.excerpt__text p {
  font-size: 1.6rem;
  line-height: 22px;
}
@media (min-width: 320px) {
  .excerpt__text p {
    line-height: calc( 22px + 5 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .excerpt__text p {
    line-height: 27px;
  }
}
@media (max-width: 575.98px) {
  .excerpt__text p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.excerpt__text p:last-of-type {
  margin-bottom: 0;
}

.excerpt-title {
  font-size: 22px;
  color: #1D1039;
  margin-top: 0.8rem;
}
@media (min-width: 320px) {
  .excerpt-title {
    font-size: calc( 22px + 6 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .excerpt-title {
    font-size: 28px;
  }
}
.excerpt-title a {
  display: block;
  color: #1D1039;
}
.excerpt-title a:hover, .excerpt-title a:focus {
  color: #00C1EA;
}

.excerpt--card {
  position: relative;
  border-radius: 0.6rem;
}
.excerpt--card:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: calc(var(--bs-gutter-x) / 2);
  right: calc(var(--bs-gutter-x) / 2);
  bottom: 0;
  box-shadow: 0 0.5rem 2rem rgba(166, 173, 201, 0.2);
  z-index: 0;
}
.excerpt--card .excerpt__image {
  margin-bottom: 0;
  z-index: 1;
}
.excerpt--card .excerpt__text {
  background: white;
  padding: 4rem;
  z-index: 1;
}

.search-result {
  margin-bottom: 4.8rem;
}
.search-result a {
  display: block;
  text-decoration: none;
}
.search-result a:hover .excerpt-title, .search-result a:focus .excerpt-title {
  text-decoration: underline;
  -webkit-text-decoration-color: inherit;
          text-decoration-color: inherit;
}
.search-result .read-more {
  display: none;
}

.social-icon,
.footer-social a {
  border: 1px solid transparent;
  background: transparent;
  border-radius: 0.4rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
  line-height: 1;
  margin-right: 4px;
  transition: all 0.2s ease;
  text-align: center;
  margin-bottom: 0.8rem;
}
@media (min-width: 992px) {
  .social-icon,
.footer-social a {
    margin-right: 0;
  }
}
.social-icon .icon,
.footer-social a .icon {
  fill: currentColor;
  height: 16px;
  width: 16px;
  transition: fill 0.2s ease;
}
.social-icon:hover, .social-icon:focus,
.footer-social a:hover,
.footer-social a:focus {
  border-color: inherit;
}
.social-icon:hover .icon, .social-icon:focus .icon,
.footer-social a:hover .icon,
.footer-social a:focus .icon {
  fill: currentColor;
}

.footer-social a {
  background: transparent;
  border-color: rgba(172, 158, 203, 0.33);
  color: white;
  margin-right: 0.6rem;
}
.footer-social a .icon {
  fill: white;
}
.footer-social a:hover, .footer-social a:focus {
  background: rgba(172, 158, 203, 0.25);
  border-color: transparent;
}
.footer-social a:hover .icon, .footer-social a:focus .icon {
  fill: white;
}

@media (min-width: 1200px) {
  .home-hero .wp-block-media-text__media {
    padding-top: 6.4rem;
  }
}
@media (max-width: 575.98px) {
  .home-hero .wp-block-media-text__media {
    padding: 2.4rem 2.4rem 0;
  }
}
.home-hero p {
  font-size: 16px;
}
@media (min-width: 320px) {
  .home-hero p {
    font-size: calc( 16px + 6 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .home-hero p {
    font-size: 22px;
  }
}

.torn-edge:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: url(../svg/torn-paper.svg) no-repeat bottom center;
  background-size: 100%;
  width: 100vw;
  height: 4.8rem;
  transform: translate(-50%, 0.3rem);
}

section.gray:after,
.torn-edge-gray:after {
  background-image: url(../svg/torn-paper-gray.svg) !important;
}

.blog .hero,
.archive .hero,
.category .hero,
.post .hero {
  text-align: center;
  padding: 4rem 0;
}
.blog .hero :last-child,
.archive .hero :last-child,
.category .hero :last-child,
.post .hero :last-child {
  margin-bottom: 0;
}

.hero-blog-index {
  background-image: linear-gradient(180deg, #1D1039 0%, #1D1039 80%, #F2F6FC 80%, #F2F6FC 80%);
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .hero-blog-index {
    padding: 8rem 0 4rem;
  }
}
.hero-blog-index :last-child {
  margin-bottom: 0;
}
.hero-blog-index:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(80% - 4.8rem);
  left: 0;
  right: 0;
  background: url(../svg/torn-paper-gray.svg) no-repeat bottom center;
  background-size: 100%;
  width: 100%;
  height: 4.8rem;
  transform: translateY(0.3rem);
  z-index: -1;
}
.hero-blog-index h1 {
  color: white;
}

.featured-article {
  background: white;
  display: flex;
  flex-direction: column;
  border-radius: 0.4rem;
}
@media (min-width: 992px) {
  .featured-article {
    display: flex;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .featured-article {
    min-height: 46rem;
    border-radius: 0.6rem;
  }
}
@media (min-width: 1400px) {
  .featured-article {
    min-height: 52rem;
  }
}
@media (min-width: 992px) {
  .featured-article__excerpt, .featured-article__image {
    flex: 0 0 50%;
  }
}
.featured-article__excerpt {
  padding: 4rem;
}
@media (min-width: 1200px) {
  .featured-article__excerpt {
    padding: 6.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.featured-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-article__excerpt .excerpt-title {
  font-size: 28px;
  margin: 2rem 0 1rem;
}
@media (min-width: 320px) {
  .featured-article__excerpt .excerpt-title {
    font-size: calc( 28px + 9 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .featured-article__excerpt .excerpt-title {
    font-size: 37px;
  }
}
@media (min-width: 1200px) {
  .featured-article__excerpt .excerpt-title {
    margin: 3rem 0 1.2rem;
  }
}

span.tag,
.post-category {
  display: inline-flex;
}
span.tag a,
.post-category a {
  color: white;
  background: #00B79F;
  border-radius: 0.4rem;
  display: block;
  font-size: 11px;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  padding: 0.9rem 1.8rem;
  letter-spacing: 0.06rem;
}
@media (min-width: 320px) {
  span.tag a,
.post-category a {
    font-size: calc( 11px + 3 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  span.tag a,
.post-category a {
    font-size: 14px;
  }
}
span.tag a:hover, span.tag a:focus,
.post-category a:hover,
.post-category a:focus {
  color: white;
  background: #008e7c;
}

.read-more {
  display: block;
  color: #00C1EA;
  padding: 0.6rem 2rem;
  font-size: 1.6rem;
  transform: translateX(-2rem) translateY(1.2rem);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
.read-more:hover, .read-more:focus {
  color: #4B515A;
}

.blog .page-content {
  background: #F2F6FC;
}

.row > .excerpt,
.row > .lessons {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 576px) {
  .row > .excerpt,
.row > .lessons {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .row > .excerpt,
.row > .lessons {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}

.blog-categories ul {
  display: flex;
  overflow: auto;
  list-style: none;
  margin: 1.6rem 0;
  padding: 0.8rem 0;
}
@media (min-width: 768px) {
  .blog-categories ul {
    display: flex;
    flex-wrap: wrap;
    margin: 2.4rem 0 3.2rem;
    padding: 0;
  }
}
.blog-categories ul a {
  background: #F2F6FC;
  color: #2B84C6;
  display: block;
  margin-right: 0.8rem;
  padding: 0.8rem 2.4rem;
  text-decoration: none;
  white-space: nowrap;
}
.blog-categories ul .current-cat a {
  background: #2B84C6;
  color: white;
}

.archive-filters .facetwp-type-radio,
.archive-filters .facetwp-facet-categories {
  padding: 1.6rem 0;
  margin: 0 0 1.6rem;
  display: flex;
  flex: 1;
  overflow: auto;
}
@media (min-width: 992px) {
  .archive-filters .facetwp-type-radio,
.archive-filters .facetwp-facet-categories {
    flex-wrap: wrap;
    overflow: hidden;
    padding: 4rem 0;
    margin: 0;
  }
}
.archive-filters .facetwp-radio.checked {
  background: #1D1039;
  cursor: pointer;
  color: white;
}
.archive-filters .facetwp-radio {
  cursor: pointer;
  font-size: 13px;
  white-space: nowrap;
  background: #e6edf9;
  color: #1D1039;
  display: block;
  border-radius: 0.6rem;
  margin: 0 0.8rem 0.8rem 0;
  padding: 0.8rem 2rem;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease-out;
}
@media (min-width: 320px) {
  .archive-filters .facetwp-radio {
    font-size: calc( 13px + 3 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .archive-filters .facetwp-radio {
    font-size: 16px;
  }
}
.archive-filters .facetwp-radio:hover, .archive-filters .facetwp-radio:focus {
  background: #1D1039;
  color: white;
}
.archive-filters .facetwp-counter {
  display: none;
}

.facetwp-pager {
  display: flex;
  justify-content: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.facetwp-pager a {
  background: #e6edf9;
  color: #1D1039;
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
  transition: all 0.15s ease-out;
}
@media (min-width: 992px) {
  .facetwp-pager a {
    margin-right: 1rem;
  }
}
.facetwp-pager a:hover, .facetwp-pager a:focus {
  background: #1D1039;
  color: white;
}
.facetwp-pager a.active {
  background: #1D1039;
  color: white;
}
.facetwp-pager a.next, .facetwp-pager a.prev {
  width: auto;
  min-width: 4rem;
  padding: 0 0.8rem;
}

.page-template-template-dashboard {
  background: #F2F6FC !important;
}

.header-dashboard {
  padding: 0.4rem 0 2.4rem;
}
@media (min-width: 576px) {
  .header-dashboard {
    padding: 3.2rem 0;
  }
}
.header-dashboard h1 {
  font-size: 28px;
  line-height: 1.1;
  text-align: center;
  margin: 0;
}
@media (min-width: 320px) {
  .header-dashboard h1 {
    font-size: calc( 28px + 10 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .header-dashboard h1 {
    font-size: 38px;
  }
}
.header-dashboard .logomark {
  margin: 0 0 2rem;
}
@media (max-width: 575.98px) {
  .header-dashboard .logomark {
    margin: 0 0 0.6rem;
  }
  .header-dashboard .logomark svg {
    width: 4.8rem;
  }
}

.navigation-dashboard {
  background: white;
  border-radius: 0.4rem;
  box-shadow: 0 0.5rem 2rem rgba(166, 173, 201, 0.2);
  margin: 0 0 4rem;
}
.navigation-dashboard ul {
  list-style: none;
  margin: 0;
  padding: 0 1.6rem;
  display: flex;
  justify-content: flex-start;
  overflow-y: scroll;
}
@media (min-width: 992px) {
  .navigation-dashboard ul {
    justify-content: center;
    overflow-y: hidden;
  }
}
.navigation-dashboard ul li {
  line-height: 1;
  margin: 0 0.6rem;
}
.navigation-dashboard ul li a {
  color: #4B515A !important;
  display: block;
  padding: 1.8rem 1.5rem;
  white-space: nowrap;
  font-size: 14px;
}
@media (min-width: 320px) {
  .navigation-dashboard ul li a {
    font-size: calc( 14px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .navigation-dashboard ul li a {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .navigation-dashboard ul li a {
    padding: 2.4rem 1.5rem;
  }
}

.section {
  background: white;
  border-radius: 0.4rem;
  box-shadow: 0 0.5rem 2rem rgba(166, 173, 201, 0.2);
  padding: 2.4rem;
  margin-bottom: 3rem;
}
@media (min-width: 576px) {
  .section {
    padding: 3.2rem;
  }
}
@media (min-width: 768px) {
  .section {
    height: calc(100% - 3rem);
  }
}
@media (min-width: 1200px) {
  .section {
    padding: 4.8rem;
  }
}
.section h3 {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .section h3 {
    flex-direction: row;
    align-items: center;
  }
}
.section h3 svg {
  display: block;
  margin-bottom: 1.8rem;
  flex: 0 0 3rem;
  max-width: 3rem;
}
@media (min-width: 768px) {
  .section h3 svg {
    flex: 0 0 4.8rem;
    max-width: 4.8rem;
    margin-right: 2rem;
    margin-bottom: 0;
  }
}

#activity-stream.activity-stream .activity-inner,
#activity-stream.activity-list .activity-inner {
  max-width: 100% !important;
  border-width: 0 0 0 2px !important;
  max-width: 100% !important;
}
#activity-stream.activity-stream .activity-discussion-title-wrap,
#activity-stream.activity-list .activity-discussion-title-wrap {
  background: #F2F6FC !important;
}

.activity-list li.bbp_reply_create .activity-content .activity-inner,
.activity-list li.bbp_topic_create .activity-content .activity-inner {
  border-left: 2px solid #DAE1EC;
  padding-left: 24px;
}

.activity-list li.bbp_reply_create .activity-content .activity-inner,
.activity-list li.bbp_topic_create .activity-content .activity-inner,
.activity-list li.blogs .activity-content .activity-inner {
  border-width: 0 0 0 2px !important;
  max-width: 100% !important;
}

p.activity-discussion-title-wrap,
.bb-content-inr-wrap {
  background: transparent !important;
}

li.wpProQuiz_questionListItem label {
  display: flex;
}

.section .activity-list .activity-item .activity-header p,
.section .activity-list .activity-item .activity-header a {
  font-size: 16px;
}

.shortcode-activity-stream #activity-stream .activity-item {
  background: #F2F6FC !important;
  border-color: #F2F6FC !important;
}
.shortcode-activity-stream #activity-stream .activity-item p {
  line-height: 1.5;
}
.shortcode-activity-stream #activity-stream .activity-item a {
  color: #00b0d6;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}

.button.item-button {
  height: 32px;
}

a.more-link {
  display: inline-block;
  margin: 2rem 0 0;
  padding: 0.4rem 0.4rem 0.4rem 0;
  color: #00C1EA;
  font-size: 1.6rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  text-decoration: underline;
}
a.more-link:hover, a.more-link:focus {
  color: #4B515A;
  text-decoration: none;
}

.col-md-6 .activity-content {
  display: none;
}

.member-news-card {
  border-bottom: 1px solid #DAE1EC;
  padding: 2rem 0;
}
.member-news-card .excerpt-title {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  transition: color 0.2s ease-out;
}
@media (min-width: 320px) {
  .member-news-card .excerpt-title {
    font-size: calc( 20px + 6 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .member-news-card .excerpt-title {
    font-size: 26px;
  }
}
.member-news-card p {
  font-size: 13px;
  line-height: 21px;
  margin: 0;
}
@media (min-width: 320px) {
  .member-news-card p {
    font-size: calc( 13px + 3 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .member-news-card p {
    font-size: 16px;
  }
}
@media (min-width: 320px) {
  .member-news-card p {
    line-height: calc( 21px + 6 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .member-news-card p {
    line-height: 27px;
  }
}
.member-news-card a:hover .excerpt-title, .member-news-card a:focus .excerpt-title {
  color: #00C1EA;
}

.featured-image--dashboard {
  border-radius: 0.6rem;
  overflow: hidden;
  position: relative;
}
.featured-image--dashboard a {
  background: #00B79F;
  color: white;
  position: absolute;
  border-radius: 0.4rem;
  padding: 0.4rem 1rem;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  top: 0.75rem;
  left: 0.75rem;
  transition: all 0.2s ease-out;
}
@media (min-width: 320px) {
  .featured-image--dashboard a {
    font-size: calc( 12px + 2 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .featured-image--dashboard a {
    font-size: 14px;
  }
}
@media (min-width: 576px) {
  .featured-image--dashboard a {
    top: 1.5rem;
    left: 1.5rem;
  }
}
.featured-image--dashboard a:hover, .featured-image--dashboard a:focus {
  color: white;
  background: #008473;
}

.date-span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  color: #81858C;
}

.section--lesson .lesson-title {
  font-size: 29px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@media (min-width: 320px) {
  .section--lesson .lesson-title {
    font-size: calc( 29px + 8 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .section--lesson .lesson-title {
    font-size: 37px;
  }
}

@media (min-width: 1200px) {
  .lesson-cards {
    grid-row-gap: 3rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: 1fr;
    grid-row-gap: 1.5rem;
  }
}
@media (min-width: 1400px) {
  .lesson-cards {
    grid-row-gap: 3rem;
  }
}
.lesson-cards .lesson-card {
  overflow: hidden;
  position: relative;
}
@media (min-width: 1200px) {
  .lesson-cards .lesson-card {
    padding: 2.4rem 3.2rem;
    margin: 0;
  }
}

.lesson-cards .lesson-card-stacked--video {
  order: 1;
}
.lesson-cards .lesson-card-stacked--expression {
  order: 0;
}
.lesson-cards .lesson-card-stacked--lingo {
  order: 2;
}
.lesson-cards .lesson-card-stacked--exercise {
  order: 3;
}

.upgrade-message {
  margin-bottom: 4rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 3.2rem;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 992px) {
  .upgrade-message {
    padding: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .upgrade-message {
    padding: 3.2rem;
  }
}
.upgrade-message a {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 18px;
  line-height: 20px;
  color: #00b4db;
}
@media (min-width: 320px) {
  .upgrade-message a {
    font-size: calc( 18px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .upgrade-message a {
    font-size: 22px;
  }
}
@media (min-width: 320px) {
  .upgrade-message a {
    line-height: calc( 20px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .upgrade-message a {
    line-height: 24px;
  }
}

.badge {
  margin-left: 0.8rem;
}
.badge a {
  color: #00C1EA;
  font-size: 1.2rem;
  border: 1px solid #00C1EA;
  background: white;
  border-radius: 0.3rem;
  padding: 0.2rem 0.6rem;
  transition: all 0.2s ease-out;
}
.badge a:hover, .badge a:focus {
  background: #00C1EA;
  border-color: #00C1EA;
  color: white;
}

article.excerpt {
  display: flex;
  flex-direction: column;
}
article.excerpt .lesson-block {
  order: -1;
}

.textwidget #learndash-page-content {
  padding: 1rem 0 0;
  border: 0;
  min-height: 0;
  display: block;
}
.textwidget .learndash_content_wrap {
  padding-top: 0;
}
.textwidget .learndash_content_wrap .wpProQuiz_question_text p {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 20px;
  color: #1D1039;
  line-height: 1.1;
}
@media (min-width: 320px) {
  .textwidget .learndash_content_wrap .wpProQuiz_question_text p {
    font-size: calc( 20px + 6 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .textwidget .learndash_content_wrap .wpProQuiz_question_text p {
    font-size: 26px;
  }
}
.textwidget .learndash_content_wrap .ld-tabs-content {
  margin: 0;
}
.textwidget .wpProQuiz_questionListItem {
  background: #F2F6FC !important;
  border-color: #F2F6FC !important;
}
.textwidget .wpProQuiz_content {
  margin-top: 0;
}
.textwidget #learndash-content.container-full {
  width: 100%;
  margin: 0;
  left: initial;
  right: initial;
}
.textwidget #learndash-content .lms-topic-sidebar-wrapper {
  display: none;
}
.textwidget #learndash-content .bb-grid {
  margin: 0;
  display: block;
}
.textwidget #learndash-course-header {
  padding: 0;
}
.textwidget #learndash-course-header .bb-position,
.textwidget #learndash-course-header .lms-header-title,
.textwidget #learndash-course-header .lms-header-instructor {
  display: none;
}

.section--contact textarea {
  background-color: #F2F6FC !important;
}

.section--events h4 {
  font-size: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  line-height: 1.33;
  margin: 2.4rem 0 1.2rem;
}
@media (min-width: 320px) {
  .section--events h4 {
    font-size: calc( 22px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .section--events h4 {
    font-size: 26px;
  }
}

.countdown ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 30rem;
}
.countdown ul li {
  padding: 1rem 0 1rem 0;
  border-radius: 0.4rem;
  background: #00C1EA;
  color: white;
  font-size: 1.2rem;
  text-align: center;
  margin: 0 0.6rem 0.6rem 0;
  flex: 1;
}
.countdown ul li span {
  font-size: 2.2rem;
  line-height: 1;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}

.live-events {
  margin: 2rem 0;
}

.live-event {
  display: flex;
  margin-bottom: 1.5rem;
}
.live-event .live-event-link {
  display: block;
  background: #F2F6FC !important;
  padding: 2rem 3rem;
  flex: 1;
  border-radius: 0.4rem;
}
.live-event .live-event-link h4 {
  color: #1D1039;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 18px;
  margin: 0;
  padding: 0;
}
@media (min-width: 320px) {
  .live-event .live-event-link h4 {
    font-size: calc( 18px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .live-event .live-event-link h4 {
    font-size: 22px;
  }
}
.live-event .live-event-link small {
  display: block;
  font-size: 1.5rem;
  color: #4B515A;
}

.live-event-date {
  flex: 0 0 6rem;
  max-width: 6rem;
  font-size: 21px;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  color: #1D1039;
  padding: 2rem 0;
}
@media (min-width: 320px) {
  .live-event-date {
    font-size: calc( 21px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .live-event-date {
    font-size: 25px;
  }
}
.live-event-date span {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  font-size: 1.6rem;
  line-height: 1;
}

.help-menu-wrapper .menu {
  margin: 3rem 0;
  padding: 0;
}
.help-menu-wrapper .menu li {
  display: block;
  margin: 0 0 1rem;
  padding: 0;
}
.help-menu-wrapper .menu li a {
  display: block;
  font-size: 1.6rem;
  color: #00C1EA;
  padding: 0.4rem 0;
  text-decoration: none;
}
.help-menu-wrapper .menu li a:hover, .help-menu-wrapper .menu li a:focus {
  color: #1D1039;
}

.activity-header a {
  font-size: 16px;
}
@media (min-width: 320px) {
  .activity-header a {
    font-size: calc( 16px + 3 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .activity-header a {
    font-size: 19px;
  }
}

body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) {
  background: white;
}
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .hero,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-header {
  background: #F2F6FC;
  text-align: center;
  padding: 4rem 0 8rem;
  position: relative;
}
@media (min-width: 1200px) {
  body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .hero,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-header {
    padding: 8rem 0 12.6rem;
  }
}
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .hero--single,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-header--single {
  padding-bottom: 4rem;
}
@media (min-width: 1200px) {
  body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .hero--single,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-header--single {
    padding: 8rem 0 8rem;
  }
}
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .hero:after,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-header:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../svg/torn-paper.svg) no-repeat bottom center;
  background-size: 100%;
  width: 100%;
  height: 4.8rem;
  transform: translateY(0.3rem);
}
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  padding-top: 4rem;
}
@media (min-width: 992px) {
  body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 83.33333333%;
    padding-top: 7.2rem;
  }
}
@media (min-width: 1200px) {
  body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content {
    margin-left: 16.66666667%;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
@media (min-width: 1400px) {
  body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content {
    margin-left: 20.83333333%;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > p:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > ul:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > ol:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > .mp_wrapper:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > .wp-block-buttons:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > .wpforms-container:last-child {
  margin-bottom: 4.8rem;
}
@media (min-width: 1200px) {
  body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > p:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > ul:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > ol:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > .mp_wrapper:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > .wp-block-buttons:last-child,
body:not(.buddypress):not(.single-sfwd-lessons):not(.sfwd-topic-template-default) .entry-content > .wpforms-container:last-child {
    margin-bottom: 6.4rem;
  }
}

body.page-template-template-purple .hero,
body.page-template-template-purple .entry-header {
  background: #1D1039 !important;
}
body.page-template-template-purple .hero .page-title,
body.page-template-template-purple .entry-header .page-title {
  color: white;
}
body.page-template-template-purple .hero p,
body.page-template-template-purple .entry-header p {
  color: #AC9ECB;
}

.featured-image--page {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 1200px) {
  .featured-image--page {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 83.33333333%;
    margin-top: 1rem !important;
  }
}

.hero__copy {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 1200px) {
  .hero__copy {
    margin-left: 16.66666667%;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
@media (min-width: 1400px) {
  .hero__copy {
    margin-left: 20.83333333%;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}
.hero__copy p {
  font-size: 18px;
}
@media (min-width: 320px) {
  .hero__copy p {
    font-size: calc( 18px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .hero__copy p {
    font-size: 22px;
  }
}

.page-template-template-pricing .plans {
  transform: translateY(-7.2rem);
}
@media (min-width: 1200px) {
  .page-template-template-pricing .plans {
    transform: translateY(-9.6rem);
  }
}

.search .hero {
  text-align: center;
  padding: 4rem 0;
}
.search .hero :last-child {
  margin-bottom: 0;
}
.search .entry-content {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .search .entry-content {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
@media (min-width: 1200px) {
  .search .entry-content {
    margin-left: 16.66666667%;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}

.single .entry-title {
  font-size: 40px;
  line-height: 1;
}
@media (min-width: 320px) {
  .single .entry-title {
    font-size: calc( 40px + 8 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .single .entry-title {
    font-size: 48px;
  }
}

.lesson-header {
  background-image: linear-gradient(180deg, #F2F6FC 0%, #F2F6FC 80%, white 80%, white 80%);
  padding: 4rem 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .lesson-header {
    padding: 8rem 0 4rem;
  }
}
.lesson-header :last-child {
  margin-bottom: 0;
}
.lesson-header:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(80% - 4.8rem);
  left: 0;
  right: 0;
  background: url(../svg/torn-paper.svg) no-repeat bottom center;
  background-size: 100%;
  width: 100%;
  height: 4.8rem;
  transform: translateY(0.3rem);
  z-index: -1;
}

.lesson-content {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .lesson-content {
    flex: 0 0 auto;
    width: 66.66666667%;
    margin-left: 16.66666667%;
  }
}
@media (min-width: 1200px) {
  .lesson-content {
    padding-bottom: 1.6rem;
  }
}
.lesson-content p {
  font-size: 18px;
}
@media (min-width: 320px) {
  .lesson-content p {
    font-size: calc( 18px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .lesson-content p {
    font-size: 22px;
  }
}

.featured-image {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .featured-image.narrow {
    flex: 0 0 auto;
    width: 66.66666667%;
    margin-left: 16.66666667%;
  }
}
@media (min-width: 1200px) {
  .featured-image.narrow {
    flex: 0 0 auto;
    width: 83.33333333%;
    margin-left: 8.33333333%;
  }
}

.post-category {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 1.2rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}
@media (min-width: 992px) {
  .post-category {
    font-size: 1.6rem;
    margin: 0 auto 3rem;
  }
}

.post-entry-title {
  text-align: center;
  font-size: 2.5rem;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 2.5rem;
}
@media (min-width: 320px) {
  .post-entry-title {
    font-size: calc( 32px + 16 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .post-entry-title {
    font-size: 48px;
  }
}
@media (min-width: 992px) {
  .post-entry-title {
    line-height: 1.1;
    margin: 0 0 3rem;
  }
}
@media (min-width: 1400px) {
  .post-entry-title {
    max-width: 120rem;
    margin: 0 auto 3.2rem;
  }
}
.post-entry-title + .subtitle {
  margin-top: -1.6rem;
}

.subtitle {
  display: block;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto 3rem;
  font-size: 18px;
}
@media (min-width: 320px) {
  .subtitle {
    font-size: calc( 18px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .subtitle {
    font-size: 22px;
  }
}

.meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 13px;
  margin-bottom: 3.2rem;
  border-top: 1px solid #DAE1EC;
  border-bottom: 1px solid #DAE1EC;
  padding: 0.7rem 0;
}
@media (min-width: 320px) {
  .meta {
    font-size: calc( 13px + 3 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .meta {
    font-size: 16px;
  }
}
.meta__date, .meta__number, .meta__category {
  margin: 0 1.2rem;
}
@media (min-width: 992px) {
  .meta__date, .meta__number, .meta__category {
    margin: 0 2.4rem;
  }
}
.meta__date a, .meta__number a, .meta__category a {
  color: #4B515A;
}
.meta__date a:hover, .meta__date a:focus, .meta__number a:hover, .meta__number a:focus, .meta__category a:hover, .meta__category a:focus {
  color: #2B84C6;
  text-decoration: none;
}
.meta__date i, .meta__number i, .meta__category i {
  font-size: 1.8rem;
  margin-right: 0.2rem;
  color: #00B79F;
  color: #1D1039;
}

.logged-in .meta__bookmark {
  display: block;
}

.meta__bookmark {
  display: none;
}
.meta__bookmark div.rating_options {
  width: auto;
  margin: 0;
}
.meta__bookmark div.rating_options .wrapper {
  padding: 0;
}
.meta__bookmark div.rating_options .wrapper label {
  color: #4B515A;
}
.meta__bookmark div.rating_options .wrapper label:hover {
  color: #2B84C6;
}
.meta__bookmark div.rating_options .wrapper label:hover span:before {
  color: #4B515A;
}
.meta__bookmark #mark_status {
  display: flex;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
.meta__bookmark #mark_status:before {
  content: "";
  font: normal 18px/1 "bb-icons";
  position: relative;
  display: inline-block;
  background: transparent;
  margin-right: 0.4rem;
  width: 18px;
  height: 18px;
  transform: translateY(2px);
}
.meta__bookmark .mark_as_bookmark_chkbox:checked + #mark_status {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
.meta__bookmark .mark_as_bookmark_chkbox:checked + #mark_status:before {
  color: #00B79F;
}

.lesson-card-wrap {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 50%;
  display: flex;
}
@media (min-width: 992px) {
  .lesson-card-wrap {
    flex: 0 0 auto;
    width: 25%;
  }
}
.lesson-card-wrap--video {
  order: 2;
}
.lesson-card-wrap--lingo {
  order: 3;
}
.lesson-card-wrap--expression {
  order: 1;
}
.lesson-card-wrap--exercise {
  order: 4;
}

.lesson-card {
  background: #F2F6FC;
  border-radius: 0.6rem;
  margin-bottom: 3rem;
  padding: 3.2rem;
  flex: 0 0 100%;
  position: relative;
}
@media (min-width: 992px) {
  .lesson-card {
    padding: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .lesson-card {
    padding: 3.2rem;
  }
}
.lesson-card a {
  display: block;
}
.lesson-card a small {
  display: block;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #4B515A;
}
.lesson-card-wrap--main-lesson .lesson-card a small {
  line-height: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lesson-card a .lesson-cat {
  color: #00C1EA;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
@media (min-width: 320px) {
  .lesson-card a .lesson-cat {
    font-size: calc( 13px + 2 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .lesson-card a .lesson-cat {
    font-size: 15px;
  }
}
.lesson-card a .lesson-title {
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  margin-bottom: 0.8rem;
  color: #1D1039;
  transition: color 0.18s ease-out;
}
@media (min-width: 320px) {
  .lesson-card a .lesson-title {
    font-size: calc( 20px + 6 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .lesson-card a .lesson-title {
    font-size: 26px;
  }
}
.lesson-card a:hover .lesson-title, .lesson-card a:focus .lesson-title {
  color: #00C1EA;
}

.card--link {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex: 0 0 auto;
  width: 50%;
  margin-bottom: 3rem;
  position: relative;
}
@media (min-width: 768px) {
  .card--link {
    display: flex;
  }
}
.card--link h3 {
  margin: 0;
}
.card--link h3 a {
  display: block;
  background: #F2F6FC;
  font-size: 18px;
  line-height: 1.4;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
  height: 100%;
  padding: 3.2rem;
  border-radius: 0.6rem;
}
@media (min-width: 320px) {
  .card--link h3 a {
    font-size: calc( 18px + 6 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .card--link h3 a {
    font-size: 24px;
  }
}
.card--link h3 a:hover, .card--link h3 a:focus {
  color: #00C1EA !important;
}
.card--link h3 a:after {
  content: "";
  font-family: bb-icons;
  font-weight: 400;
  speak: none;
  display: inline-block;
  font-size: 80%;
  margin-left: 0.9rem;
  color: rgba(75, 81, 90, 0.6);
  transform: translateY(-0.1rem);
}

.lesson-transcript {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .lesson-transcript {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
@media (min-width: 1200px) {
  .lesson-transcript {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 62.5%;
  }
}
@media (min-width: 1400px) {
  .lesson-transcript {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}

.lesson-audio {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .lesson-audio {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
@media (min-width: 1200px) {
  .lesson-audio {
    flex: 0 0 auto;
    width: 29.16666667%;
  }
}
@media (min-width: 1400px) {
  .lesson-audio {
    flex: 0 0 auto;
    width: 25%;
  }
}
@media (min-width: 992px) {
  .lesson-audio .su-tabs {
    position: sticky;
    top: 3rem;
  }
}

.su-tabs {
  background-color: #F2F6FC !important;
}
.su-tabs .su-tabs-nav span:hover {
  background-color: #dde8f7 !important;
}

.post .share-widget {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .post .share-widget {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
}
@media (min-width: 1200px) {
  .post .share-widget {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
}
.post .entry-content {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .post .entry-content {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
@media (min-width: 1200px) {
  .post .entry-content {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
.post .entry-content > p:last-child,
.post .entry-content > ul:last-child,
.post .entry-content > ol:last-child,
.post .entry-content > .mp_wrapper:last-child,
.post .entry-content > .wp-block-buttons:last-child,
.post .entry-content > .wpforms-container:last-child {
  margin-bottom: 4.8rem;
}
@media (min-width: 1200px) {
  .post .entry-content > p:last-child,
.post .entry-content > ul:last-child,
.post .entry-content > ol:last-child,
.post .entry-content > .mp_wrapper:last-child,
.post .entry-content > .wp-block-buttons:last-child,
.post .entry-content > .wpforms-container:last-child {
    margin-bottom: 6.4rem;
  }
}

.sticky-top {
  display: flex;
  flex-direction: row;
  position: sticky;
  top: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  transform: translateY(-1rem);
}
@media (min-width: 992px) {
  .sticky-top {
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 0;
    transform: none;
  }
}

.post-author {
  border-top: 1px solid #DAE1EC;
  margin: 5.6rem 0 0;
  padding: 4rem 0;
}
@media (min-width: 576px) {
  .post-author {
    display: flex;
  }
}
@media (min-width: 576px) {
  .post-author__pic {
    flex: 0 0 9.6rem;
  }
}
@media (min-width: 768px) {
  .post-author__pic {
    flex: 0 0 12.8rem;
  }
}
@media (min-width: 1200px) {
  .post-author__pic {
    flex: 0 0 15.2rem;
  }
}
.post-author__pic img {
  width: 7.2rem;
  height: 7.2rem;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .post-author__pic img {
    width: 9.6rem;
    height: 9.6rem;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .post-author__pic img {
    width: 11.2rem;
    height: 11.2rem;
  }
}
@media (min-width: 768px) {
  .post-author .post-author__info {
    flex: 1;
  }
}

.display-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  color: #1D1039;
  font-size: 125%;
  margin-bottom: 0.8rem;
}

.entry-header--single .featured-image {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .entry-header--single .featured-image {
    flex: 0 0 auto;
    width: 50%;
  }
}
.entry-header--single .featured-image img {
  border-radius: 0.6rem;
}

.entry-header__left {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .entry-header__left {
    flex: 0 0 auto;
    width: 50%;
    text-align: left;
    padding-top: 4.8rem;
  }
}
@media (min-width: 992px) {
  .entry-header__left .post-category,
.entry-header__left .post-entry-title {
    text-align: left;
  }
}

.post-author-date {
  display: inline-flex;
  margin: 0 0 3rem;
}
@media (min-width: 992px) {
  .post-author-date {
    display: flex;
    margin: 0;
  }
}
.post-author-date .avatar {
  flex: 0 0 4rem;
  margin-right: 1.4rem;
  max-width: 4rem;
}
@media (min-width: 992px) {
  .post-author-date .avatar {
    flex: 0 0 6rem;
    margin-right: 1.8rem;
    max-width: 6rem;
  }
}
.post-author-date figcaption {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.post-author-date figcaption .entry-author a {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  color: #1D1039;
  font-size: 14px;
}
@media (min-width: 320px) {
  .post-author-date figcaption .entry-author a {
    font-size: calc( 14px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .post-author-date figcaption .entry-author a {
    font-size: 18px;
  }
}
.post-author-date figcaption .entry-date {
  display: block;
  font-size: 1.5rem;
  font-size: 13px;
}
@media (min-width: 320px) {
  .post-author-date figcaption .entry-date {
    font-size: calc( 13px + 2 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .post-author-date figcaption .entry-date {
    font-size: 15px;
  }
}

#comments {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-top: 4rem;
}
@media (min-width: 992px) {
  #comments {
    padding-top: 7.2rem;
    padding-bottom: 2.4rem;
  }
}
@media (min-width: 1400px) {
  #comments {
    padding-top: 8.8rem;
  }
}

@media (min-width: 1200px) {
  body[class*=single-] #comments {
    margin-left: 4.16666667%;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
@media (min-width: 1400px) {
  body[class*=single-] #comments {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}

.post-related-posts {
  padding-top: 4rem;
  border-color: transparent !important;
}
@media (min-width: 992px) {
  .post-related-posts {
    padding-top: 7.2rem;
    padding-bottom: 2.4rem;
  }
}
@media (min-width: 1400px) {
  .post-related-posts {
    padding-top: 8.8rem;
  }
}
.post-related-posts h4 {
  font-size: 25px;
  line-height: 4rem;
}
@media (min-width: 320px) {
  .post-related-posts h4 {
    font-size: calc( 25px + 12 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .post-related-posts h4 {
    font-size: 37px;
  }
}
.post-related-posts a.slick-arrow {
  height: 3.6rem;
  width: 3.6rem;
  display: flex;
  align-items: center;
  border: 1px solid #DAE1EC;
}
.post-related-posts a.slick-arrow.bb-slide-prev {
  right: 4rem;
}
.post-related-posts a.slick-arrow.bb-slide-prev i {
  bottom: 0;
  transform: translateX(0.1rem);
}
.post-related-posts a.slick-arrow.bb-slide-next {
  right: 0;
}
.post-related-posts a.slick-arrow.bb-slide-next i {
  transform: translateY(0.1rem) translateX(0.1rem);
}
.post-related-posts a.slick-arrow i {
  margin: 0 auto;
}

.post-navigation--cpt {
  padding-bottom: 4.8rem;
}
.post-navigation--cpt .nav-previous,
.post-navigation--cpt .nav-next {
  padding: 0;
  flex: 0 0 48%;
  max-width: 48%;
}
@media (min-width: 1200px) {
  .post-navigation--cpt .nav-previous,
.post-navigation--cpt .nav-next {
    flex: 0 0 33%;
    max-width: 33%;
  }
}
.post-navigation--cpt .nav-previous a,
.post-navigation--cpt .nav-next a {
  background: #F2F6FC;
  border-radius: 0.6rem;
  align-items: center;
  color: #00C1EA;
  padding: 2.4rem 4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .post-navigation--cpt .nav-previous a,
.post-navigation--cpt .nav-next a {
    padding: 3.2rem 4rem;
  }
}
@media (min-width: 1400px) {
  .post-navigation--cpt .nav-previous a,
.post-navigation--cpt .nav-next a {
    padding: 4rem;
  }
}
.post-navigation--cpt .nav-previous:before {
  left: 1rem;
}
.post-navigation--cpt .nav-next:before {
  right: 1rem;
}
.post-navigation--cpt .lesson-cat {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  margin: 0 0 0.3rem;
}
.post-navigation--cpt .lesson-title {
  display: block;
  color: #1D1039;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  font-size: 16px;
}
@media (min-width: 320px) {
  .post-navigation--cpt .lesson-title {
    font-size: calc( 16px + 8 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .post-navigation--cpt .lesson-title {
    font-size: 24px;
  }
}

.grid .lms-topic-sidebar-wrapper {
  background-color: #F2F6FC;
}

#buddypress.buddypress-wrap {
  margin-bottom: 5rem;
}
@media (min-width: 1200px) {
  #buddypress.buddypress-wrap {
    margin-bottom: 8rem;
  }
}
#buddypress.buddypress-wrap #header-cover-image {
  background-color: #81858C;
}

.users-header,
header.settings-header {
  padding: 4vh 0;
}

body#notifications #item-header {
  display: block;
}

.profile-header.flex {
  justify-content: space-between !important;
  flex-wrap: wrap;
}

.settings-header.flex {
  justify-content: space-between !important;
  flex-wrap: wrap;
}

#cover-image-container {
  margin-top: -4vh !important;
}

.single .bb-profile-title {
  letter-spacing: 0;
  font-size: 25px;
  margin-right: 0.8rem;
}
@media (min-width: 320px) {
  .single .bb-profile-title {
    font-size: calc( 25px + 7 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .single .bb-profile-title {
    font-size: 32px;
  }
}
@media (min-width: 1200px) {
  .single .bb-profile-title {
    font-size: 4rem;
  }
}

.theme-page section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.theme-page .background-image {
  height: 10rem;
  width: 10rem;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.theme-page .image {
  height: 20rem;
  width: auto;
}
.theme-page .theme-unrelated {
  padding-top: 3rem;
}
.theme-page .theme-unrelated h2 {
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: lowercase;
}

.faq-block {
  background: #F2F6FC;
  padding: 4.8rem 0;
}
@media (min-width: 1200px) {
  .faq-block {
    padding: 8.8rem 0;
  }
}

.accordion {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 1200px) {
  .accordion {
    flex: 0 0 auto;
    width: 83.33333333%;
    margin-left: 8.33333333%;
  }
}
.accordion__title {
  color: #1D1039;
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 16px;
  position: relative;
  text-decoration: none;
  padding: 1.6rem 6rem 1.6rem 2.4rem;
}
@media (min-width: 320px) {
  .accordion__title {
    font-size: calc( 16px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .accordion__title {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .accordion__title {
    padding: 2.4rem 8rem 2.4rem 3.2rem;
  }
}
.accordion__title:hover, .accordion__title:focus {
  color: #1D1039;
}
.accordion__title:after {
  content: "＋";
  line-height: 3rem;
  font-size: 3rem;
  height: 3rem;
  width: 3rem;
  display: flex;
  align-content: center;
  justify-content: center;
  text-align: center;
  color: #00B79F;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .accordion__title:after {
    right: 2.4rem;
  }
}
.accordion section {
  background: white;
  border-radius: 0.4rem;
  box-shadow: 0 0.5rem 2rem rgba(166, 173, 201, 0.2);
  margin-bottom: 1.8rem;
  scroll-margin-top: 7.6rem;
}
.accordion section:target a:after {
  content: "−";
}
.accordion section:target .accordion__content {
  padding: 0 2.4rem;
  height: auto;
  opacity: 1;
}
@media (min-width: 768px) {
  .accordion section:target .accordion__content {
    padding: 0 3.2rem;
  }
}
.accordion__content {
  padding: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s, padding-top 0.18s, padding-bottom 0.18s;
}
.accordion__content:target, .accordion__content-active {
  padding: 2.4rem;
  height: auto;
  opacity: 1;
}
.accordion__content:target ~ .accordion--content-active {
  padding: 0;
  height: 0;
  opacity: 0;
}

.green-cta {
  background: #00B79F;
  padding: 4.8rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .green-cta {
    padding: 5.6rem 0 4.8rem;
  }
}
@media (min-width: 1200px) {
  .green-cta {
    padding: 11.2rem 0 8.8rem;
  }
}
.green-cta__inner {
  z-index: 1;
  color: white;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .green-cta__inner {
    margin-left: 8.33333333%;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
}
@media (min-width: 1200px) {
  .green-cta__inner {
    margin-left: 16.66666667%;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
@media (min-width: 1400px) {
  .green-cta__inner {
    margin-left: 25%;
    flex: 0 0 auto;
    width: 50%;
  }
}
.green-cta__inner h1, .green-cta__inner h2, .green-cta__inner h3, .green-cta__inner h4, .green-cta__inner h5, .green-cta__inner h6, .green-cta__inner p {
  color: white;
}
.green-cta__inner .inline-fields .wpforms-field input {
  border-color: white !important;
  height: 4.2rem !important;
  border-radius: 0.6rem !important;
  transition: all 0.2s ease;
}
@media (min-width: 992px) {
  .green-cta__inner .inline-fields .wpforms-field input {
    height: 5.4rem !important;
  }
}
.green-cta__inner .inline-fields .wpforms-field input:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem #00b29b;
  border-color: transparent;
}
.green-cta__inner .inline-fields .wpforms-submit {
  background: transparent !important;
  border: 0.2rem solid white !important;
  color: white !important;
}
.green-cta__inner .inline-fields .wpforms-submit:hover, .green-cta__inner .inline-fields .wpforms-submit:focus {
  background: #00C1EA !important;
  color: white !important;
  border-color: transparent !important;
}

.icon-cards {
  background: #F2F6FC;
  padding: 4.8rem 0;
}
@media (min-width: 768px) {
  .icon-cards {
    padding: 5.6rem 0;
  }
}
@media (min-width: 1200px) {
  .icon-cards {
    padding: 10.2rem 0;
  }
}
@media (min-width: 1400px) {
  .icon-cards {
    padding: 12rem 0;
  }
}

.icons-cards-intro {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 1200px) {
  .icons-cards-intro {
    flex: 0 0 auto;
    width: 66.66666667%;
    margin-left: 16.66666667%;
  }
}
@media (min-width: 1400px) {
  .icons-cards-intro {
    flex: 0 0 auto;
    width: 62.5%;
    margin-left: 18.75%;
  }
}

.icon-card {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 768px) {
  .icon-card {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
.icon-card article {
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  transform-style: preserve-3d;
  position: relative;
  perspective: 60rem;
  box-shadow: 0 0.5rem 2rem rgba(166, 173, 201, 0.2);
}
.icon-card .icon-card__front,
.icon-card .icon-card__back {
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 2.4rem;
}
@media (min-width: 992px) {
  .icon-card .icon-card__front,
.icon-card .icon-card__back {
    padding: 3rem;
  }
}
@media (min-width: 1200px) {
  .icon-card .icon-card__front,
.icon-card .icon-card__back {
    padding: 4rem;
  }
}
@media (min-width: 1400px) {
  .icon-card .icon-card__front,
.icon-card .icon-card__back {
    padding: 5rem;
  }
}
.icon-card .icon-card__front {
  background: white;
}
.icon-card .icon-card__back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: rotateY(180deg);
  background: #00B79F;
  display: flex;
  align-items: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.icon-card .icon-card__back div {
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 16px;
  line-height: 1.3;
}
@media (min-width: 320px) {
  .icon-card .icon-card__back div {
    font-size: calc( 16px + 5 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .icon-card .icon-card__back div {
    font-size: 21px;
  }
}
.icon-card figure {
  width: 5.6rem;
  height: 5.6rem;
  margin: 1.6rem auto 0;
}
@media (min-width: 1200px) {
  .icon-card figure {
    width: 8rem;
    height: 8rem;
  }
}
.icon-card .quote-bg {
  display: block;
  transform: scale(2) translate(0.8rem, 0.8rem);
}
.icon-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
}
.icon-card p {
  margin: 0;
}

.flip-card article {
  transition: transform 0.4s ease;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
}
@media (min-width: 992px) {
  .flip-card article:hover {
    transform: perspective(600px) rotateY(-12deg);
  }
}
.flip-card article.flipped {
  transform: rotateY(-180deg);
}

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
  justify-content: center;
  grid-column-gap: 2.4rem;
  grid-row-gap: 2.4rem;
  z-index: 2;
  margin: 0 1.5rem 4rem;
}

.plan {
  background: white;
  border: 1px solid #DAE1EC;
  padding: 4.2rem 3.6rem 1.6rem;
  border-radius: 0.6rem;
}
.plan__header h2 {
  color: #1D1039;
  font-size: 3.2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  line-height: 1;
  margin: 0 0 1rem;
}
.plan__header p {
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin: 0 0 1.6rem;
}
.plan__header h3 {
  color: #1D1039;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 3.7rem;
  line-height: 4rem;
}
.plan__header h3 span {
  font-size: 1.4rem;
  color: #4B515A;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
.plan__body {
  border-top: 1px solid #DAE1EC;
  padding: 1.6rem 0;
  margin-top: 2.4rem;
}
.plan__body p {
  margin-bottom: 2rem;
}
.plan__body p strong {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-display: auto;
  color: #1D1039;
}
.plan__body ul {
  margin-bottom: 0;
}
.plan__body ul li {
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.plan__body ::marker {
  background: #00B79F;
  color: #00B79F;
}

.toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2.4rem;
}
.toggle-btn > span {
  margin: 0 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  color: #1D1039;
}

.switch {
  position: relative;
  display: inline-block;
  width: 6.4rem;
  height: 3.4rem;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(75, 81, 90, 0.3);
  border-radius: 3.4rem;
  transform: translate(0px, 0px);
  transition: 0.6s ease transform, 0.6s box-shadow;
}
.slider:before {
  position: absolute;
  content: "";
  height: 2.6rem;
  width: 2.6rem;
  border-radius: 50%;
  left: 0.4rem;
  bottom: 0.4rem;
  background-color: white;
  transition: 0.3s;
}

input:checked + .slider {
  background-color: #00B79F;
}

input:checked + .slider:before {
  transform: translateX(2.9rem);
}

.tabs {
  background: white;
  padding: 4.8rem 0;
}
@media (min-width: 1200px) {
  .tabs {
    padding: 8.8rem 0;
  }
}

.tabs-inner {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
.tabs-inner h2 {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  margin-bottom: 4rem;
}
@media (min-width: 1200px) {
  .tabs-inner h2 {
    flex: 0 0 auto;
    width: 83.33333333%;
    margin-left: 8.33333333%;
    margin-bottom: 5.6rem;
  }
}

.logomark {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 0 0 3.2rem;
  padding: 0;
  display: flex;
  justify-content: center;
}
.logomark svg {
  width: 9rem;
  height: 7.8rem;
}

.tab-menu {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #DAE1EC;
}
@media (min-width: 992px) {
  .tab-menu {
    flex: 0 0 auto;
    width: 41.66666667%;
    margin-bottom: auto;
  }
}
@media (min-width: 1400px) {
  .tab-menu {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
}
.tab-menu li {
  border-top: 1px solid #DAE1EC;
}
.tab-menu li a {
  display: block;
  padding: 3rem 7rem 3rem 0;
  position: relative;
}
.tab-menu li a:hover, .tab-menu li a:focus {
  text-decoration: none;
}
.tab-menu li a:after {
  content: "＋";
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  line-height: 2.8rem;
  font-size: 1.8rem;
  height: 2.8rem;
  width: 2.8rem;
  border-radius: 2.8rem;
  background-color: #00C1EA;
  display: flex;
  align-content: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: absolute;
  right: 0;
  padding: 0 0 0 1px;
  top: 3rem;
}
.tab-menu li a.active:after {
  content: "−";
}
.tab-menu li a h2, .tab-menu li a h3, .tab-menu li a h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 20px;
  line-height: 1.1;
  margin: 0;
}
@media (min-width: 320px) {
  .tab-menu li a h2, .tab-menu li a h3, .tab-menu li a h4 {
    font-size: calc( 20px + 4 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .tab-menu li a h2, .tab-menu li a h3, .tab-menu li a h4 {
    font-size: 24px;
  }
}

.tab-menu-text {
  display: none;
  margin: 0 0 3rem;
}
.tab-menu-text.active {
  display: block;
  margin-top: -1rem;
}
.tab-menu-text p {
  padding-right: 7rem;
}

.tab-content {
  max-height: 32rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: flex;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}
@media (min-width: 992px) {
  .tab-content {
    flex: 0 0 auto;
    width: 58.33333333%;
    max-height: 50rem;
  }
}
@media (min-width: 1400px) {
  .tab-content {
    flex: 0 0 auto;
    width: 54.16666667%;
  }
}
.tab-content svg {
  object-fit: contain;
  position: absolute;
  top: 0;
  right: 2rem;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tab-bar-content {
  height: 100%;
  width: 100%;
  display: none;
}
.tab-bar-content.active {
  display: block;
}
.tab-bar-content img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

.tabs-bottom {
  text-align: center;
  margin-top: 4rem;
}

.testimonial {
  padding: 4.8rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .testimonial {
    padding: 5.6rem 0 4.8rem;
  }
}
@media (min-width: 1200px) {
  .testimonial {
    padding: 11.2rem 0 8.8rem;
  }
}
.testimonial:after {
  content: "";
  background: #00B79F url(../svg/torn-paper.svg) no-repeat bottom -2px left 0;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 102vw;
  transform: translateX(-50%);
  z-index: 0;
}

.quote-bg {
  display: none;
}
@media (min-width: 992px) {
  .quote-bg {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 16.7rem;
    height: auto;
    z-index: 1;
    overflow: hidden;
    transform: translateX(-33%);
  }
}
@media (min-width: 1200px) {
  .quote-bg {
    width: 45rem;
    height: 39rem;
    max-height: calc(100% + 6rem);
  }
}
@media (min-width: 992px) {
  .quote-bg svg {
    transform: translateY(-16%);
  }
}

.testimonial-blockquote {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  z-index: 2;
  font-style: normal;
  margin: 0;
}
@media (min-width: 1200px) {
  .testimonial-blockquote {
    flex: 0 0 auto;
    width: 66.66666667%;
    margin-left: 16.66666667%;
  }
}
.testimonial-blockquote p {
  color: white;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  font-size: 23px;
  line-height: 1.2;
}
@media (min-width: 320px) {
  .testimonial-blockquote p {
    font-size: calc( 23px + 13 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .testimonial-blockquote p {
    font-size: 36px;
  }
}
.testimonial-blockquote .cite {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-top: 3rem;
}
@media (min-width: 1200px) {
  .testimonial-blockquote .cite {
    justify-content: flex-start;
  }
}
.testimonial-blockquote figure {
  height: 7.2rem;
  width: 7.2rem;
  border-radius: 3.6rem;
  margin-right: 2rem;
  position: relative;
  overflow: hidden;
}
.testimonial-blockquote figure img {
  object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
}
.testimonial-blockquote .cite-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 320px) {
  .testimonial-blockquote .cite-name {
    font-size: calc( 14px + 2 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .testimonial-blockquote .cite-name {
    font-size: 16px;
  }
}
.testimonial-blockquote .cite-name span {
  display: block;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-display: auto;
  color: white;
  line-height: 1.2;
}
@media (min-width: 320px) {
  .testimonial-blockquote .cite-name span {
    font-size: calc( 18px + 2 * (100vw - 320px) / 1120 );
  }
}
@media (min-width: 1440px) {
  .testimonial-blockquote .cite-name span {
    font-size: 20px;
  }
}

body {
  background-color: white !important;
}

@media (max-width: 575.98px) {
  .content-wrap {
    overflow-y: hidden;
  }
}

.bb-footer,
.site-content,
.site-header,
.content-area {
  padding: 0;
}

@media (min-width: 768px) {
  article .wpforms-container,
article .wpforms-container-full {
    margin-bottom: 4rem;
  }
}
@media (min-width: 992px) {
  article .wpforms-container,
  article .wpforms-container-full {
    margin-bottom: 5.6rem;
  }
}

@media (max-width: 991px){
  .pe-main-cnt .lesson-transcript {
    order: 2;
  }
  .pe-main-cnt .lesson-audio {
    order: 1;
    margin-bottom: 3rem;
  }
  .pe-main-cnt .lesson-transcript .textwidget .su-tabs {
    margin-bottom: 0;
  }
  .pe-main-cnt .lesson-audio .download {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

.mp_wrapper.mp_login_form .mepr_password .mp-form-label {
  display: block !important;
}

.mp_wrapper.mp_login_form .mepr_password .mp-form-label label {
  display: none !important;
}

.page-template-template-dashboard .live-events .live-event h4 {
  margin-bottom: .5rem;
}
.page-template-template-dashboard .live-events .live-event .cat-name {
  font-weight: 600;
  color: #1D1039;
  font-size: 1.3rem;
}

.videos.type-videos #comments,
.lingo.type-lingo #comments {
   padding-top: 3rem;
   width: 100%;
   margin-left: 0;
}
.lingo.type-lingo .download {
  padding-top: 0 !important;
  padding-bottom: .5rem !important;
}
.px-5-5 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.photo-attribute {
  text-align: right;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: normal;
  color: #878787;
  /*text-transform: capitalize;*/
  padding-top: 0.5rem;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.photo-attribute a {
  text-decoration: underline;
  color: #878787 !important;
}
.wp-caption-text {
  text-align: left;
  font-size: 1.5rem;
  /*text-transform: capitalize;*/
  padding-top: 0;
  line-height: normal;
  color: #4b515a;
  padding-left: 0;
  padding-right: 0;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .px-5-5 {
    padding-left: 5.5rem;
    padding-right: 5.5rem;
  }
}
.plans .plan .plan__header .normal-price{
  text-decoration: line-through;
  font-weight: 700;
}
.plans .plan .plan__header .savings-text{
  color:#00B050;
  background-color:#00B05023;
  border-radius: 4px;
  font-size:1.4rem;
  padding:3px 8px;
  margin-bottom:25px;
  width:max-content;
}
#wpdcom {
  max-width: 750px;
  padding: 0;
  margin: 7px auto 15px auto;
  margin-left: auto !important;
  margin-right: auto !important;
}
#wpdcom .wpd-thread-head {
  margin-bottom: 10px !important;
}
.wpd-comment-header {
  justify-content: flex-start !important;
}
.wpd-replies {
  margin-top: 10px;
}
a.practice-post-title {
  color: inherit;
  text-decoration: inherit !important;
  font-size: inherit !important;
}
.bookmarked-listing nav .pagination a, .bookmarked-listing nav .pagination span {
  border: none;
}
.bookmarked-listing nav .pagination li.page-item.active {
  border-bottom: 1px solid #00c3ef;
}