@charset "UTF-8";
/*!
 * Bootstrap v5.0.1 (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,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1230px;
  }
}
@media (min-width: 1600px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1600px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1600px;
}

.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

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

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

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

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

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

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

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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: 1600px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not([focus-within]) {
  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;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  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;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not([focus-within]):not(caption) {
  position: absolute !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
.visually-hidden *,
.visually-hidden-focusable:not(:focus):not([focus-within]) * {
  overflow: hidden !important;
}
.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}

@media (min-width: 576px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 540px) / 2));
  }
}
@media (min-width: 768px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 720px) / 2));
  }
}
@media (min-width: 992px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 960px) / 2));
  }
}
@media (min-width: 1200px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 1230px) / 2));
  }
}
@media (min-width: 1600px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 1600px) / 2));
  }
}

@media (min-width: 576px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 540px) / 2));
  }
}
@media (min-width: 768px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 720px) / 2));
  }
}
@media (min-width: 992px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 960px) / 2));
  }
}
@media (min-width: 1200px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 1230px) / 2));
  }
}
@media (min-width: 1600px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 1600px) / 2));
  }
}

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

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

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

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

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

mark {
  padding: 0.1875em;
  background-color: rgb(255, 242.6, 205.4);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #eC1E26;
  text-decoration: none;
}
@media screen and (hover: hover) {
  a:hover {
    color: #eC1E26;
    text-decoration: underline;
  }
  a:hover:not([href]) {
    color: rgb(10.4, 88, 202.4);
  }
}
a:not([href]) {
  color: inherit;
  text-decoration: none;
}

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

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

img {
  border-style: none;
  word-break: break-all;
}

svg {
  overflow: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  caption-side: bottom;
}

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

th {
  text-align: inherit;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}
button:focus {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  max-width: 100%;
  border-radius: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
  cursor: pointer;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

textarea {
  overflow: auto;
  resize: vertical;
  max-width: 100%;
}

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

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

progress {
  vertical-align: baseline;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

::-webkit-search-decoration {
  -webkit-appearance: textfield;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

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

::file-selector-button {
  font: inherit;
}

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none;
}

@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Light.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Regular.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Semibold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Semibold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Bold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate3d(0, 0, 0, 0);
            transform: rotate3d(0, 0, 0, 0);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate3d(0, 0, 0, 0);
            transform: rotate3d(0, 0, 0, 0);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
body {
  --primary-dark: #333333;
  --dark-blue: #0b123b;
  --primary-blue: #0ba5de;
  --border-gray: #bdbdbd;
  --primary-light-05: rgba(207, 216, 220, 0.5);
  --text: #fff;
  --text-primary: #212121;
  --text-secondary: #636363;
  --nfont: "MyriadPro", sans-serif;
  --blue-gradient: linear-gradient(
  	90deg,
  	#277ced 0%,
  	#2f80ed 50%,
  	#73afff 100%
  );
  font-family: var(--nfont);
  color: var(--dark-blue);
  margin: 0;
  overflow: auto;
}

html.overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
.btn {
  font-size: min(calc(var(--min-font-px) + (var(--max-font) - var(--min-font)) * ((100vw - 320px) / (1920 - 320))), var(--max-font-px));
  line-height: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: inherit;
  text-decoration: none;
}

h1 {
  --min-font-px: 23px;
  --min-font: 32;
  --max-font: 36;
  --max-font-px: 36px;
  font-size: 24px;
}

h2 {
  --min-font-px: 24px;
  --min-font: 24;
  --max-font: 28;
  --max-font-px: 28px;
  font-size: 24px;
}

h3 {
  --min-font-px: 20px;
  --min-font: 20;
  --max-font: 24;
  --max-font-px: 24px;
  font-size: 24px;
}

h4 {
  --min-font-px: 18px;
  --min-font: 18;
  --max-font: 20;
  --max-font-px: 20px;
}

h5 {
  --min-font-px: 16px;
  --min-font: 16;
  --max-font: 18;
  --max-font-px: 18px;
  margin-bottom: 30px;
}

h6 {
  --min-font-px: 14px;
  --min-font: 14;
  --max-font: 16;
  --max-font-px: 16px;
}

a {
  text-decoration: none;
}

.screen-reader-text,
.screen-reader-response,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.embed {
  position: relative;
  overflow: hidden;
}
.embed iframe,
.embed .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed--21by9 {
  padding-top: 42.8571428571%;
}
.embed--16by9 {
  padding-top: 56.25%;
}
.embed--4by3 {
  padding-top: 75%;
}
.embed--1by1 {
  padding-top: 100%;
}

.overflow {
  overflow: hidden;
}

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

#breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
#breadcrumb p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.25;
}
#breadcrumb-link {
  font-size: inherit;
  margin: 0;
  padding: 0;
}
#breadcrumb svg {
  margin-left: 5px;
  margin-right: 5px;
}
#breadcrumb .breadcrumb_last {
  font-size: 14px;
  font-weight: 600;
  color: black;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  background-color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  text-align: center;
  -webkit-transition: 250ms all ease;
  transition: 250ms all ease;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: 100%;
}
.btn--outline {
  border: 1px solid var(--primary-dark);
  background-color: transparent;
}
.btn.loading {
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: transparent;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  min-width: auto;
  padding: 0;
  background-color: #fff;
  border: 3px solid var(--divider);
  border-top-color: var(--text-secondary);
  -webkit-animation: rotate 0.7s infinite cubic-bezier(0.73, 0.04, 0, 1.01);
          animation: rotate 0.7s infinite cubic-bezier(0.73, 0.04, 0, 1.01);
  pointer-events: none;
}
.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

@media screen and (hover: hover) {
  .btn:hover {
    text-decoration: none;
    color: var(--primary-dark);
    background-color: var(--primary-light);
  }
  .btn:hover.btn--outline {
    background-color: var(--primary-dark);
    color: #fff;
  }
}
.form-group label {
  margin: 0;
  cursor: pointer;
}
.form-group--prepend, .form-group--append {
  --btn-width: 30px;
  position: relative;
}
.form-group--prepend .btn, .form-group--append .btn {
  position: absolute;
  top: 50%;
  padding: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 25px;
}
.form-group input {
  font-family: var(--gtfont);
}
.form-group--prepend .btn {
  left: 0;
}
.form-group--prepend .form-control {
  padding-left: var(--btn-width);
}
.form-group--append .btn {
  right: 0;
}
.form-group--append .form-control {
  padding-right: var(--btn-width);
}

.form-control {
  display: block;
  font-size: 13px;
  padding: 5px 10px;
  color: var(--text);
  border: 1px solid var(--divider);
  border-radius: 5px;
  width: 100%;
}
.form-control::-webkit-input-placeholder {
  color: inherit;
}
.form-control::-moz-placeholder {
  color: inherit;
}
.form-control:-ms-input-placeholder {
  color: inherit;
}
.form-control::-ms-input-placeholder {
  color: inherit;
}
.form-control::placeholder {
  color: inherit;
}

form input {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form .checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
form .checkbox label .checkbox-text, form .checkbox label .check-sentence {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
  margin-top: 2px;
  line-height: 18px;
}
form .checkbox label .checkbox-text label span, form .checkbox label .check-sentence label span {
  line-height: 20px;
}
form textarea::-webkit-input-placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form textarea::-moz-placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form textarea:-ms-input-placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form textarea::-ms-input-placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form textarea::placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}

.modal {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  place-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  background-color: white;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  -webkit-transform: scale3d(1, 0, 1);
          transform: scale3d(1, 0, 1);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  will-change: transform;
  opacity: 0;
}
.modal.mobile-modal {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  background: rgba(0, 0, 0, 0.3);
  -webkit-transform-origin: left;
          transform-origin: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.modal .close {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 25px;
  font-weight: 300;
  position: absolute;
  top: 80px;
  left: 360px;
}
.modal--slide-right {
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.modal--slide-bottom {
  -webkit-transform: scale3d(1, 0, 1);
          transform: scale3d(1, 0, 1);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}
.modal--slide-left {
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.modal--fade-in {
  -webkit-transform: scale3d(0, 0, 1);
          transform: scale3d(0, 0, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.modal--dark {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}
.modal--dark .modal__content {
  background-color: #fff;
}
.modal--dark .btn--close {
  color: #636363;
}
.modal--dark .btn--close:hover {
  color: #000;
}
.modal--white-fade {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
}
.modal--white-fade .modal__content {
  background-color: #fff;
}
.modal--white-fade .btn--close {
  color: #636363;
}
.modal--white-fade .btn--close:hover {
  color: #000;
}
.modal.show {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.modal__content {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #e8e8e8;
  max-width: 90%;
  max-height: 90vh;
  width: 100%;
  border-radius: 8px;
  position: relative;
}
.modal__content.modal__content--submission {
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .modal__content {
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .modal__content--submission {
    max-width: 700px;
  }
}

.modal__header {
  position: relative;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal__header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.modal__header .btn--close {
  display: block;
  padding: 10px;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #636363;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.modal__header .btn--close:hover {
  color: #000;
}

.modal__body {
  height: 100%;
  max-height: calc(90vh - 100px);
  max-width: 500px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
}
.modal__body .modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal__body form {
  padding-top: 20px;
  padding-bottom: 20px;
  outline: none;
}
.modal__body form input,
.modal__body form select {
  outline: none;
  border: 1px solid #919191;
  padding: 15px 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  color: black;
}
.modal__body .cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 26px;
  gap: 26px;
  padding-top: 25px;
}
.modal__body .cta-btn .btn--secondary {
  display: inline-block;
  background-color: white;
  color: black;
  border: 1px solid var(--dark-blue);
  padding: 15px 24px;
  border-radius: 8px;
  text-decoration: none;
}
.modal__body .cta-btn .btn--primary {
  display: inline-block;
  background-color: var(--primary-blue);
  color: white;
  padding: 15px 24px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  position: relative;
}

.submission-step .modal__header {
  margin-bottom: 0;
}

.submission-progress {
  margin-top: 24px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
.submission-progress__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #636363;
}
.submission-progress__step {
  font-weight: 600;
  color: #000;
}
.submission-progress__step .current-step {
  color: var(--primary-blue);
}
.submission-progress__label {
  color: #636363;
}
.submission-progress__bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 4px;
  gap: 4px;
}
.submission-progress__bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  background-color: #e8e8e8;
  border-radius: 2px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.submission-progress__bar--active {
  background-color: var(--primary-blue);
}
.submission-progress__bar--completed {
  background-color: #4caf50;
}

.submission-step {
  display: none;
  min-height: 400px;
}
.submission-step--active {
  display: block;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.submission-form__field {
  margin-bottom: 24px;
}
.submission-form__field:last-child {
  margin-bottom: 0;
}
.submission-form__field--checkbox {
  margin-bottom: 32px;
}
.submission-form__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.submission-form__field label .required {
  color: #ed1c24;
}
.submission-form__field label .optional {
  color: #919191;
  font-weight: 400;
}
.submission-form__field select,
.submission-form__field input[type=text],
.submission-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #919191;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.submission-form__field select:focus,
.submission-form__field input[type=text]:focus,
.submission-form__field textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}
.submission-form__field select:-moz-read-only, .submission-form__field input[type=text]:-moz-read-only, .submission-form__field textarea:-moz-read-only {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.submission-form__field select:read-only,
.submission-form__field input[type=text]:read-only,
.submission-form__field textarea:read-only {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.submission-form__field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.submission-form__field__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
}
.submission-form__field__help-text {
  font-size: 12px;
  color: #919191;
  margin-top: 4px;
}
.submission-form__field__version-input {
  max-width: 100px;
}
.submission-form__field__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 12px;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
}
.submission-form__field__checkbox-custom {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #919191;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.submission-form__field__checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background-color: #4caf50;
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.submission-form__field__checkbox-text {
  font-size: 16px;
  color: #000;
}
.submission-form__field input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.submission-form__field input[type=checkbox]:checked + .submission-form__checkbox-custom {
  border-color: #4caf50;
  background-color: #4caf50;
}
.submission-form__field input[type=checkbox]:checked + .submission-form__checkbox-custom::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.submission-form__field input[type=checkbox]:checked + .submission-form__checkbox-custom::after {
  content: "✓";
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
}

.submission-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
  grid-gap: 16px;
  gap: 16px;
}
.submission-navigation__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 8px;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}
.submission-navigation__btn svg {
  width: 16px;
  height: 16px;
}
.submission-navigation__btn--back {
  background-color: #fff;
  color: #000;
  border: 1px solid #919191;
}
.submission-navigation__btn--back:hover {
  background-color: #f5f5f5;
  border-color: #636363;
}
.submission-navigation__btn--next {
  background-color: var(--primary-blue);
  color: #fff;
  margin-left: auto;
}
.submission-navigation__btn--next:hover {
  background-color: #0088ce;
}

@media screen and (max-width: 575px) {
  .modal__content {
    padding: 15px;
  }
  .modal__title {
    font-size: 20px;
  }
  .submission-progress {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  .submission-progress__text {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .submission-form__field {
    margin-bottom: 20px;
  }
  .submission-navigation {
    margin-top: 24px;
    padding-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .submission-navigation__btn {
    width: 100%;
  }
  .submission-navigation__btn--next {
    margin-left: 0;
  }
}
.btn--top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  padding: 15px;
  width: 50px;
  height: 50px;
  z-index: 100;
  background-color: #000;
  color: #fff;
  opacity: 0.7;
  -webkit-transition: 250ms all ease;
  transition: 250ms all ease;
  -webkit-transform: translate3d(100px, 0, 0);
          transform: translate3d(100px, 0, 0);
}
.btn--top.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  -webkit-filter: var(--bs-carousel-control-icon-filter);
          filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
}

.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

:root,
[data-bs-theme=light] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}

[data-bs-theme=dark] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

.carousel-control {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: var(--secondary);
  width: 42px;
  height: 42px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: unset;
  z-index: 99;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .carousel-control {
    top: 90%;
  }
}
.carousel-control .carousel-control-prev-icon, .carousel-control .carousel-control-next-icon {
  width: 5rem;
  height: 5rem;
}
.carousel-control.carousel-control-prev {
  left: 25px;
}
@media screen and (max-width: 767px) {
  .carousel-control.carousel-control-prev {
    left: 40px;
  }
}
.carousel-control.carousel-control-next {
  right: 25px;
}
@media screen and (max-width: 767px) {
  .carousel-control.carousel-control-next {
    right: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .carousel-control.carousel-control-prev {
    left: 25px;
  }
  .carousel-control.carousel-control-next {
    right: 25px;
  }
}
.carousel-control.hide {
  opacity: 0;
  visibility: hidden;
}

.custom-select {
  position: relative;
  border: 1px solid var(--primary);
  padding: 12px;
  margin-bottom: 20px;
  font-family: var(--gtfont);
  font-weight: 300;
}
.custom-select .option {
  padding: 5px 10px;
  cursor: pointer;
  display: block;
  line-height: 1;
  -webkit-transition: 250ms color ease;
  transition: 250ms color ease;
}
.custom-select .option.option--selected {
  color: var(--primary);
  font-size: 16px;
  letter-spacing: 1.3px;
}
.custom-select .option--selected {
  position: relative;
  padding: 10px 10px 10px 30px;
}
.custom-select .option--selected .icon1 {
  display: block;
  position: absolute;
  top: calc(50% - 14px);
  left: 15px;
  -webkit-transition: 250ms -webkit-transform ease;
  transition: 250ms -webkit-transform ease;
  transition: 250ms transform ease;
  transition: 250ms transform ease, 250ms -webkit-transform ease;
}
.custom-select .custom-select__options .option:first-of-type {
  display: none;
}
.custom-select .custom-select__options .option {
  color: black;
}
.custom-select.show .custom-select__options {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.custom-select.show .option--selected .icon1::before {
  -webkit-transform: rotate3d(0, 0, 1, -180deg);
          transform: rotate3d(0, 0, 1, -180deg);
  top: calc(50% + 9px);
}
.custom-select.show .option {
  font-size: 12px;
  letter-spacing: 1.3px;
}

.custom-select__options {
  display: grid;
  border: 1px solid var(--primary-blue);
  position: absolute;
  top: calc(100% + 10px);
  left: -1px;
  right: -1px;
  z-index: 10;
  background-color: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: 250ms -webkit-transform ease;
  transition: 250ms -webkit-transform ease;
  transition: 250ms transform ease;
  transition: 250ms transform ease, 250ms -webkit-transform ease;
  max-height: 450px;
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
}

.breadcrumbs {
  margin-top: 15px;
  margin-bottom: 30px;
  font-size: 12px;
}
.breadcrumbs span a {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  opacity: 0.66;
}
.breadcrumbs .separator {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-blue);
  margin-bottom: 2px;
}
.breadcrumbs .breadcrumb_last {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 16px;
}

@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Light.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Regular.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Semibold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Semibold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Bold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@keyframes rotate {
  from {
    -webkit-transform: rotate3d(0, 0, 0, 0);
            transform: rotate3d(0, 0, 0, 0);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
body {
  --primary-dark: #333333;
  --dark-blue: #0b123b;
  --primary-blue: #0ba5de;
  --border-gray: #bdbdbd;
  --primary-light-05: rgba(207, 216, 220, 0.5);
  --text: #fff;
  --text-primary: #212121;
  --text-secondary: #636363;
  --nfont: "MyriadPro", sans-serif;
  --blue-gradient: linear-gradient(
  	90deg,
  	#277ced 0%,
  	#2f80ed 50%,
  	#73afff 100%
  );
  font-family: var(--nfont);
  color: var(--dark-blue);
  margin: 0;
  overflow: auto;
}

html.overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
.btn {
  font-size: min(calc(var(--min-font-px) + (var(--max-font) - var(--min-font)) * ((100vw - 320px) / (1920 - 320))), var(--max-font-px));
  line-height: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: inherit;
  text-decoration: none;
}

h1 {
  --min-font-px: 23px;
  --min-font: 32;
  --max-font: 36;
  --max-font-px: 36px;
  font-size: 24px;
}

h2 {
  --min-font-px: 24px;
  --min-font: 24;
  --max-font: 28;
  --max-font-px: 28px;
  font-size: 24px;
}

h3 {
  --min-font-px: 20px;
  --min-font: 20;
  --max-font: 24;
  --max-font-px: 24px;
  font-size: 24px;
}

h4 {
  --min-font-px: 18px;
  --min-font: 18;
  --max-font: 20;
  --max-font-px: 20px;
}

h5 {
  --min-font-px: 16px;
  --min-font: 16;
  --max-font: 18;
  --max-font-px: 18px;
  margin-bottom: 30px;
}

h6 {
  --min-font-px: 14px;
  --min-font: 14;
  --max-font: 16;
  --max-font-px: 16px;
}

a {
  text-decoration: none;
}

.screen-reader-text,
.screen-reader-response,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.embed {
  position: relative;
  overflow: hidden;
}
.embed iframe,
.embed .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed--21by9 {
  padding-top: 42.8571428571%;
}
.embed--16by9 {
  padding-top: 56.25%;
}
.embed--4by3 {
  padding-top: 75%;
}
.embed--1by1 {
  padding-top: 100%;
}

.overflow {
  overflow: hidden;
}

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

#breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
#breadcrumb p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.25;
}
#breadcrumb-link {
  font-size: inherit;
  margin: 0;
  padding: 0;
}
#breadcrumb svg {
  margin-left: 5px;
  margin-right: 5px;
}
#breadcrumb .breadcrumb_last {
  font-size: 14px;
  font-weight: 600;
  color: black;
}

#footer {
  padding: 48px 0;
  background-color: #f6f6f6;
}
#footer p,
#footer a {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  color: var(--dark-blue);
}
#footer .bullet {
  display: inline-block;
  margin: 0 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--dark-blue);
}
#footer .footer-logo {
  margin-bottom: 20px;
}
#footer .blue-button {
  margin-top: 20px;
  background-color: var(--primary-blue);
  padding: 12px 25px 12px 20px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 10px;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1199px) {
  #footer .blue-button {
    justify-self: center;
  }
}
@media screen and (max-width: 1199px) {
  #footer .footer-left {
    width: 100%;
    text-align: center;
  }
}
#footer .footer-right-area {
  -ms-flex-item-align: center;
      align-self: center;
}
#footer .footer-right-area .links-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1199px) {
  #footer .footer-right-area .links-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 13px;
    gap: 13px;
  }
}
#footer .footer-right-area a {
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  #footer .footer-right-area {
    width: 100%;
    margin-left: unset;
    margin-top: 32px;
  }
}
#footer .footer-bottom-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 15px;
}
#footer .footer-bottom-area p {
  font-size: 12px;
  color: var(--dark-blue);
}
@media screen and (max-width: 1199px) {
  #footer .footer-bottom-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
  }
}

#header {
  position: relative;
  margin-top: 30px;
}
#header .header-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #header .header-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .header-menu .divider {
  width: 1px;
  height: 16px;
  background-color: white;
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  #header .header-menu .divider {
    margin: unset;
  }
}
#header .header-menu .header-btn {
  color: white;
  font-weight: 700;
}
#header .header-menu .header-btn:not(.education-training):not(.register) {
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 8px;
}
#header .header-menu .header-btn:hover {
  text-decoration: underline;
  color: var(--primary-blue);
}
@media screen and (max-width: 767px) {
  #header .header-menu {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
}

.cookie {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  z-index: 1030;
  -webkit-transition: 250ms -webkit-transform ease;
  transition: 250ms -webkit-transform ease;
  transition: 250ms transform ease;
  transition: 250ms transform ease, 250ms -webkit-transform ease;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}
.cookie .container {
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-gap: 10px;
  gap: 10px;
  padding: 30px;
}
.cookie .cookie__text p {
  --min-font-px: 15px;
  --min-font: 15;
  --max-font: 17;
  --max-font-px: 17px;
}
.cookie .cookie__text a {
  color: #fff;
  text-decoration: underline;
}
.cookie .btn {
  --min-font-px: 14px;
  --min-font: 14;
  --max-font: 18;
  --max-font-px: 18px;
  display: block;
  margin-left: auto;
  padding: 10px 35px;
}
.cookie.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 767px) {
  .cookie .container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 575px) {
  .cookie .container {
    padding: 15px;
  }
}
/*!
 * Bootstrap v5.0.1 (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,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1230px;
  }
}
@media (min-width: 1600px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 1600px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1600px;
}

.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

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

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

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

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

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

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

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

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

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

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

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

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

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

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

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

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

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

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

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

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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 {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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: 1600px) {
  .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0px;
            flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            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;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not([focus-within]) {
  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;
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  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;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not([focus-within]):not(caption) {
  position: absolute !important;
}
.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}
.visually-hidden *,
.visually-hidden-focusable:not(:focus):not([focus-within]) * {
  overflow: hidden !important;
}
.visually-hidden *,
.visually-hidden-focusable:not(:focus):not(:focus-within) * {
  overflow: hidden !important;
}

@media (min-width: 576px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 540px) / 2));
  }
}
@media (min-width: 768px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 720px) / 2));
  }
}
@media (min-width: 992px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 960px) / 2));
  }
}
@media (min-width: 1200px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 1230px) / 2));
  }
}
@media (min-width: 1600px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 1600px) / 2));
  }
}

@media (min-width: 576px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 540px) / 2));
  }
}
@media (min-width: 768px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 720px) / 2));
  }
}
@media (min-width: 992px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 960px) / 2));
  }
}
@media (min-width: 1200px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 1230px) / 2));
  }
}
@media (min-width: 1600px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 1600px) / 2));
  }
}

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

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

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

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

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0;
}

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bold;
}

small {
  font-size: 80%;
}

mark {
  padding: 0.1875em;
  background-color: rgb(255, 242.6, 205.4);
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #eC1E26;
  text-decoration: none;
}
@media screen and (hover: hover) {
  a:hover {
    color: #eC1E26;
    text-decoration: underline;
  }
  a:hover:not([href]) {
    color: rgb(10.4, 88, 202.4);
  }
}
a:not([href]) {
  color: inherit;
  text-decoration: none;
}

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

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

img {
  border-style: none;
  word-break: break-all;
}

svg {
  overflow: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  caption-side: bottom;
}

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

th {
  text-align: inherit;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}
button:focus {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  max-width: 100%;
  border-radius: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
  cursor: pointer;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

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

textarea {
  overflow: auto;
  resize: vertical;
  max-width: 100%;
}

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

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

progress {
  vertical-align: baseline;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

::-webkit-search-decoration {
  -webkit-appearance: textfield;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

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

::file-selector-button {
  font: inherit;
}

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

output {
  display: inline-block;
}

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

template {
  display: none;
}

[hidden] {
  display: none;
}

@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Light.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Regular.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Semibold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Semibold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Bold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@keyframes rotate {
  from {
    -webkit-transform: rotate3d(0, 0, 0, 0);
            transform: rotate3d(0, 0, 0, 0);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
body {
  --primary-dark: #333333;
  --dark-blue: #0b123b;
  --primary-blue: #0ba5de;
  --border-gray: #bdbdbd;
  --primary-light-05: rgba(207, 216, 220, 0.5);
  --text: #fff;
  --text-primary: #212121;
  --text-secondary: #636363;
  --nfont: "MyriadPro", sans-serif;
  --blue-gradient: linear-gradient(
  	90deg,
  	#277ced 0%,
  	#2f80ed 50%,
  	#73afff 100%
  );
  font-family: var(--nfont);
  color: var(--dark-blue);
  margin: 0;
  overflow: auto;
}

html.overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
.btn {
  font-size: min(calc(var(--min-font-px) + (var(--max-font) - var(--min-font)) * ((100vw - 320px) / (1920 - 320))), var(--max-font-px));
  line-height: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: inherit;
  text-decoration: none;
}

h1 {
  --min-font-px: 23px;
  --min-font: 32;
  --max-font: 36;
  --max-font-px: 36px;
  font-size: 24px;
}

h2 {
  --min-font-px: 24px;
  --min-font: 24;
  --max-font: 28;
  --max-font-px: 28px;
  font-size: 24px;
}

h3 {
  --min-font-px: 20px;
  --min-font: 20;
  --max-font: 24;
  --max-font-px: 24px;
  font-size: 24px;
}

h4 {
  --min-font-px: 18px;
  --min-font: 18;
  --max-font: 20;
  --max-font-px: 20px;
}

h5 {
  --min-font-px: 16px;
  --min-font: 16;
  --max-font: 18;
  --max-font-px: 18px;
  margin-bottom: 30px;
}

h6 {
  --min-font-px: 14px;
  --min-font: 14;
  --max-font: 16;
  --max-font-px: 16px;
}

a {
  text-decoration: none;
}

.screen-reader-text,
.screen-reader-response,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.embed {
  position: relative;
  overflow: hidden;
}
.embed iframe,
.embed .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed--21by9 {
  padding-top: 42.8571428571%;
}
.embed--16by9 {
  padding-top: 56.25%;
}
.embed--4by3 {
  padding-top: 75%;
}
.embed--1by1 {
  padding-top: 100%;
}

.overflow {
  overflow: hidden;
}

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

#breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
#breadcrumb p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.25;
}
#breadcrumb-link {
  font-size: inherit;
  margin: 0;
  padding: 0;
}
#breadcrumb svg {
  margin-left: 5px;
  margin-right: 5px;
}
#breadcrumb .breadcrumb_last {
  font-size: 14px;
  font-weight: 600;
  color: black;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  background-color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  text-align: center;
  -webkit-transition: 250ms all ease;
  transition: 250ms all ease;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-width: 100%;
}
.btn--outline {
  border: 1px solid var(--primary-dark);
  background-color: transparent;
}
.btn.loading {
  display: block;
  margin-left: auto;
  margin-right: auto;
  color: transparent;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  min-width: auto;
  padding: 0;
  background-color: #fff;
  border: 3px solid var(--divider);
  border-top-color: var(--text-secondary);
  -webkit-animation: rotate 0.7s infinite cubic-bezier(0.73, 0.04, 0, 1.01);
          animation: rotate 0.7s infinite cubic-bezier(0.73, 0.04, 0, 1.01);
  pointer-events: none;
}
.btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

@media screen and (hover: hover) {
  .btn:hover {
    text-decoration: none;
    color: var(--primary-dark);
    background-color: var(--primary-light);
  }
  .btn:hover.btn--outline {
    background-color: var(--primary-dark);
    color: #fff;
  }
}
.form-group label {
  margin: 0;
  cursor: pointer;
}
.form-group--prepend, .form-group--append {
  --btn-width: 30px;
  position: relative;
}
.form-group--prepend .btn, .form-group--append .btn {
  position: absolute;
  top: 50%;
  padding: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 25px;
}
.form-group input {
  font-family: var(--gtfont);
}
.form-group--prepend .btn {
  left: 0;
}
.form-group--prepend .form-control {
  padding-left: var(--btn-width);
}
.form-group--append .btn {
  right: 0;
}
.form-group--append .form-control {
  padding-right: var(--btn-width);
}

.form-control {
  display: block;
  font-size: 13px;
  padding: 5px 10px;
  color: var(--text);
  border: 1px solid var(--divider);
  border-radius: 5px;
  width: 100%;
}
.form-control::-webkit-input-placeholder {
  color: inherit;
}
.form-control::-moz-placeholder {
  color: inherit;
}
.form-control:-ms-input-placeholder {
  color: inherit;
}
.form-control::-ms-input-placeholder {
  color: inherit;
}
.form-control::placeholder {
  color: inherit;
}

form input {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form .checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
form .checkbox label .checkbox-text, form .checkbox label .check-sentence {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
  margin-top: 2px;
  line-height: 18px;
}
form .checkbox label .checkbox-text label span, form .checkbox label .check-sentence label span {
  line-height: 20px;
}
form textarea::-webkit-input-placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form textarea::-moz-placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form textarea:-ms-input-placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form textarea::-ms-input-placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}
form textarea::placeholder {
  color: var(--primary);
  font-family: var(--gtfont);
  font-weight: 300;
  font-size: 12px;
}

.modal {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  place-items: center;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  background-color: white;
  -webkit-transition: 300ms all ease;
  transition: 300ms all ease;
  -webkit-transform: scale3d(1, 0, 1);
          transform: scale3d(1, 0, 1);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  will-change: transform;
  opacity: 0;
}
.modal.mobile-modal {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  background: rgba(0, 0, 0, 0.3);
  -webkit-transform-origin: left;
          transform-origin: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.modal .close {
  background-color: transparent;
  color: white;
  border: none;
  font-size: 25px;
  font-weight: 300;
  position: absolute;
  top: 80px;
  left: 360px;
}
.modal--slide-right {
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.modal--slide-bottom {
  -webkit-transform: scale3d(1, 0, 1);
          transform: scale3d(1, 0, 1);
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
}
.modal--slide-left {
  -webkit-transform: scale3d(0, 1, 1);
          transform: scale3d(0, 1, 1);
  -webkit-transform-origin: left center;
          transform-origin: left center;
}
.modal--fade-in {
  -webkit-transform: scale3d(0, 0, 1);
          transform: scale3d(0, 0, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.modal--dark {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}
.modal--dark .modal__content {
  background-color: #fff;
}
.modal--dark .btn--close {
  color: #636363;
}
.modal--dark .btn--close:hover {
  color: #000;
}
.modal--white-fade {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(2px);
}
.modal--white-fade .modal__content {
  background-color: #fff;
}
.modal--white-fade .btn--close {
  color: #636363;
}
.modal--white-fade .btn--close:hover {
  color: #000;
}
.modal.show {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.modal__content {
  background-color: #fff;
  padding: 30px;
  border: 1px solid #e8e8e8;
  max-width: 90%;
  max-height: 90vh;
  width: 100%;
  border-radius: 8px;
  position: relative;
}
.modal__content.modal__content--submission {
  max-width: 540px;
}
@media screen and (min-width: 768px) {
  .modal__content {
    max-width: 500px;
  }
}
@media screen and (min-width: 768px) {
  .modal__content--submission {
    max-width: 700px;
  }
}

.modal__header {
  position: relative;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal__header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.modal__header .btn--close {
  display: block;
  padding: 10px;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #636363;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.modal__header .btn--close:hover {
  color: #000;
}

.modal__body {
  height: 100%;
  max-height: calc(90vh - 100px);
  max-width: 500px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
}
.modal__body .modal__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal__body form {
  padding-top: 20px;
  padding-bottom: 20px;
  outline: none;
}
.modal__body form input,
.modal__body form select {
  outline: none;
  border: 1px solid #919191;
  padding: 15px 12px;
  width: 100%;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  color: black;
}
.modal__body .cta-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 26px;
  gap: 26px;
  padding-top: 25px;
}
.modal__body .cta-btn .btn--secondary {
  display: inline-block;
  background-color: white;
  color: black;
  border: 1px solid var(--dark-blue);
  padding: 15px 24px;
  border-radius: 8px;
  text-decoration: none;
}
.modal__body .cta-btn .btn--primary {
  display: inline-block;
  background-color: var(--primary-blue);
  color: white;
  padding: 15px 24px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
  position: relative;
}

.submission-step .modal__header {
  margin-bottom: 0;
}

.submission-progress {
  margin-top: 24px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}
.submission-progress__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #636363;
}
.submission-progress__step {
  font-weight: 600;
  color: #000;
}
.submission-progress__step .current-step {
  color: var(--primary-blue);
}
.submission-progress__label {
  color: #636363;
}
.submission-progress__bars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 4px;
  gap: 4px;
}
.submission-progress__bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 4px;
  background-color: #e8e8e8;
  border-radius: 2px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.submission-progress__bar--active {
  background-color: var(--primary-blue);
}
.submission-progress__bar--completed {
  background-color: #4caf50;
}

.submission-step {
  display: none;
  min-height: 400px;
}
.submission-step--active {
  display: block;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.submission-form__field {
  margin-bottom: 24px;
}
.submission-form__field:last-child {
  margin-bottom: 0;
}
.submission-form__field--checkbox {
  margin-bottom: 32px;
}
.submission-form__field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  margin-bottom: 8px;
}
.submission-form__field label .required {
  color: #ed1c24;
}
.submission-form__field label .optional {
  color: #919191;
  font-weight: 400;
}
.submission-form__field select,
.submission-form__field input[type=text],
.submission-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #919191;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  background-color: #fff;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.submission-form__field select:focus,
.submission-form__field input[type=text]:focus,
.submission-form__field textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
}
.submission-form__field select:-moz-read-only, .submission-form__field input[type=text]:-moz-read-only, .submission-form__field textarea:-moz-read-only {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.submission-form__field select:read-only,
.submission-form__field input[type=text]:read-only,
.submission-form__field textarea:read-only {
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.submission-form__field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.submission-form__field__field-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 8px;
  gap: 8px;
}
.submission-form__field__help-text {
  font-size: 12px;
  color: #919191;
  margin-top: 4px;
}
.submission-form__field__version-input {
  max-width: 100px;
}
.submission-form__field__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 12px;
  gap: 12px;
  cursor: pointer;
  font-weight: 400;
}
.submission-form__field__checkbox-custom {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #919191;
  border-radius: 4px;
  background-color: #fff;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.submission-form__field__checkbox-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 12px;
  height: 12px;
  background-color: #4caf50;
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.submission-form__field__checkbox-text {
  font-size: 16px;
  color: #000;
}
.submission-form__field input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.submission-form__field input[type=checkbox]:checked + .submission-form__checkbox-custom {
  border-color: #4caf50;
  background-color: #4caf50;
}
.submission-form__field input[type=checkbox]:checked + .submission-form__checkbox-custom::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.submission-form__field input[type=checkbox]:checked + .submission-form__checkbox-custom::after {
  content: "✓";
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
}

.submission-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e8e8e8;
  grid-gap: 16px;
  gap: 16px;
}
.submission-navigation__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 8px;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}
.submission-navigation__btn svg {
  width: 16px;
  height: 16px;
}
.submission-navigation__btn--back {
  background-color: #fff;
  color: #000;
  border: 1px solid #919191;
}
.submission-navigation__btn--back:hover {
  background-color: #f5f5f5;
  border-color: #636363;
}
.submission-navigation__btn--next {
  background-color: var(--primary-blue);
  color: #fff;
  margin-left: auto;
}
.submission-navigation__btn--next:hover {
  background-color: #0088ce;
}

@media screen and (max-width: 575px) {
  .modal__content {
    padding: 15px;
  }
  .modal__title {
    font-size: 20px;
  }
  .submission-progress {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }
  .submission-progress__text {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .submission-form__field {
    margin-bottom: 20px;
  }
  .submission-navigation {
    margin-top: 24px;
    padding-top: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .submission-navigation__btn {
    width: 100%;
  }
  .submission-navigation__btn--next {
    margin-left: 0;
  }
}
.btn--top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  padding: 15px;
  width: 50px;
  height: 50px;
  z-index: 100;
  background-color: #000;
  color: #fff;
  opacity: 0.7;
  -webkit-transition: 250ms all ease;
  transition: 250ms all ease;
  -webkit-transform: translate3d(100px, 0, 0);
          transform: translate3d(100px, 0, 0);
}
.btn--top.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  -webkit-filter: var(--bs-carousel-control-icon-filter);
          filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
}

.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

:root,
[data-bs-theme=light] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}

[data-bs-theme=dark] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

.carousel-control {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background-color: var(--secondary);
  width: 42px;
  height: 42px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  bottom: unset;
  z-index: 99;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .carousel-control {
    top: 90%;
  }
}
.carousel-control .carousel-control-prev-icon, .carousel-control .carousel-control-next-icon {
  width: 5rem;
  height: 5rem;
}
.carousel-control.carousel-control-prev {
  left: 25px;
}
@media screen and (max-width: 767px) {
  .carousel-control.carousel-control-prev {
    left: 40px;
  }
}
.carousel-control.carousel-control-next {
  right: 25px;
}
@media screen and (max-width: 767px) {
  .carousel-control.carousel-control-next {
    right: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .carousel-control.carousel-control-prev {
    left: 25px;
  }
  .carousel-control.carousel-control-next {
    right: 25px;
  }
}
.carousel-control.hide {
  opacity: 0;
  visibility: hidden;
}

.custom-select {
  position: relative;
  border: 1px solid var(--primary);
  padding: 12px;
  margin-bottom: 20px;
  font-family: var(--gtfont);
  font-weight: 300;
}
.custom-select .option {
  padding: 5px 10px;
  cursor: pointer;
  display: block;
  line-height: 1;
  -webkit-transition: 250ms color ease;
  transition: 250ms color ease;
}
.custom-select .option.option--selected {
  color: var(--primary);
  font-size: 16px;
  letter-spacing: 1.3px;
}
.custom-select .option--selected {
  position: relative;
  padding: 10px 10px 10px 30px;
}
.custom-select .option--selected .icon1 {
  display: block;
  position: absolute;
  top: calc(50% - 14px);
  left: 15px;
  -webkit-transition: 250ms -webkit-transform ease;
  transition: 250ms -webkit-transform ease;
  transition: 250ms transform ease;
  transition: 250ms transform ease, 250ms -webkit-transform ease;
}
.custom-select .custom-select__options .option:first-of-type {
  display: none;
}
.custom-select .custom-select__options .option {
  color: black;
}
.custom-select.show .custom-select__options {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}
.custom-select.show .option--selected .icon1::before {
  -webkit-transform: rotate3d(0, 0, 1, -180deg);
          transform: rotate3d(0, 0, 1, -180deg);
  top: calc(50% + 9px);
}
.custom-select.show .option {
  font-size: 12px;
  letter-spacing: 1.3px;
}

.custom-select__options {
  display: grid;
  border: 1px solid var(--primary-blue);
  position: absolute;
  top: calc(100% + 10px);
  left: -1px;
  right: -1px;
  z-index: 10;
  background-color: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: 250ms -webkit-transform ease;
  transition: 250ms -webkit-transform ease;
  transition: 250ms transform ease;
  transition: 250ms transform ease, 250ms -webkit-transform ease;
  max-height: 450px;
  overflow-x: hidden;
  overflow-y: auto;
  overflow: hidden auto;
}

.breadcrumbs {
  margin-top: 15px;
  margin-bottom: 30px;
  font-size: 12px;
}
.breadcrumbs span a {
  color: #333333;
  font-weight: 400;
  font-size: 16px;
  opacity: 0.66;
}
.breadcrumbs .separator {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-blue);
  margin-bottom: 2px;
}
.breadcrumbs .breadcrumb_last {
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 16px;
}

@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Light.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Regular.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Semibold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Semibold.woff) format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MyriadPro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Bold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/MyriadPro-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@keyframes rotate {
  from {
    -webkit-transform: rotate3d(0, 0, 0, 0);
            transform: rotate3d(0, 0, 0, 0);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
            transform: rotate3d(0, 0, 1, 360deg);
  }
}
body {
  --primary-dark: #333333;
  --dark-blue: #0b123b;
  --primary-blue: #0ba5de;
  --border-gray: #bdbdbd;
  --primary-light-05: rgba(207, 216, 220, 0.5);
  --text: #fff;
  --text-primary: #212121;
  --text-secondary: #636363;
  --nfont: "MyriadPro", sans-serif;
  --blue-gradient: linear-gradient(
  	90deg,
  	#277ced 0%,
  	#2f80ed 50%,
  	#73afff 100%
  );
  font-family: var(--nfont);
  color: var(--dark-blue);
  margin: 0;
  overflow: auto;
}

html.overflow {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
.btn {
  font-size: min(calc(var(--min-font-px) + (var(--max-font) - var(--min-font)) * ((100vw - 320px) / (1920 - 320))), var(--max-font-px));
  line-height: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: inherit;
  text-decoration: none;
}

h1 {
  --min-font-px: 23px;
  --min-font: 32;
  --max-font: 36;
  --max-font-px: 36px;
  font-size: 24px;
}

h2 {
  --min-font-px: 24px;
  --min-font: 24;
  --max-font: 28;
  --max-font-px: 28px;
  font-size: 24px;
}

h3 {
  --min-font-px: 20px;
  --min-font: 20;
  --max-font: 24;
  --max-font-px: 24px;
  font-size: 24px;
}

h4 {
  --min-font-px: 18px;
  --min-font: 18;
  --max-font: 20;
  --max-font-px: 20px;
}

h5 {
  --min-font-px: 16px;
  --min-font: 16;
  --max-font: 18;
  --max-font-px: 18px;
  margin-bottom: 30px;
}

h6 {
  --min-font-px: 14px;
  --min-font: 14;
  --max-font: 16;
  --max-font-px: 16px;
}

a {
  text-decoration: none;
}

.screen-reader-text,
.screen-reader-response,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.embed {
  position: relative;
  overflow: hidden;
}
.embed iframe,
.embed .item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed--21by9 {
  padding-top: 42.8571428571%;
}
.embed--16by9 {
  padding-top: 56.25%;
}
.embed--4by3 {
  padding-top: 75%;
}
.embed--1by1 {
  padding-top: 100%;
}

.overflow {
  overflow: hidden;
}

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

#breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
#breadcrumb p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.25;
}
#breadcrumb-link {
  font-size: inherit;
  margin: 0;
  padding: 0;
}
#breadcrumb svg {
  margin-left: 5px;
  margin-right: 5px;
}
#breadcrumb .breadcrumb_last {
  font-size: 14px;
  font-weight: 600;
  color: black;
}

#footer {
  padding: 48px 0;
  background-color: #f6f6f6;
}
#footer p,
#footer a {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  color: var(--dark-blue);
}
#footer .bullet {
  display: inline-block;
  margin: 0 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--dark-blue);
}
#footer .footer-logo {
  margin-bottom: 20px;
}
#footer .blue-button {
  margin-top: 20px;
  background-color: var(--primary-blue);
  padding: 12px 25px 12px 20px;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 10px;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1199px) {
  #footer .blue-button {
    justify-self: center;
  }
}
@media screen and (max-width: 1199px) {
  #footer .footer-left {
    width: 100%;
    text-align: center;
  }
}
#footer .footer-right-area {
  -ms-flex-item-align: center;
      align-self: center;
}
#footer .footer-right-area .links-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1199px) {
  #footer .footer-right-area .links-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 13px;
    gap: 13px;
  }
}
#footer .footer-right-area a {
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  #footer .footer-right-area {
    width: 100%;
    margin-left: unset;
    margin-top: 32px;
  }
}
#footer .footer-bottom-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 15px;
}
#footer .footer-bottom-area p {
  font-size: 12px;
  color: var(--dark-blue);
}
@media screen and (max-width: 1199px) {
  #footer .footer-bottom-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 32px;
  }
}

#header {
  position: relative;
  margin-top: 30px;
}
#header .header-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  #header .header-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header .header-menu .divider {
  width: 1px;
  height: 16px;
  background-color: white;
  margin: 0 30px;
}
@media screen and (max-width: 767px) {
  #header .header-menu .divider {
    margin: unset;
  }
}
#header .header-menu .header-btn {
  color: white;
  font-weight: 700;
}
#header .header-menu .header-btn:not(.education-training):not(.register) {
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 8px;
}
#header .header-menu .header-btn:hover {
  text-decoration: underline;
  color: var(--primary-blue);
}
@media screen and (max-width: 767px) {
  #header .header-menu {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 40px;
  }
}

.cookie {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  z-index: 1030;
  -webkit-transition: 250ms -webkit-transform ease;
  transition: 250ms -webkit-transform ease;
  transition: 250ms transform ease;
  transition: 250ms transform ease, 250ms -webkit-transform ease;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}
.cookie .container {
  display: grid;
  grid-template-columns: 1fr 200px;
  grid-gap: 10px;
  gap: 10px;
  padding: 30px;
}
.cookie .cookie__text p {
  --min-font-px: 15px;
  --min-font: 15;
  --max-font: 17;
  --max-font-px: 17px;
}
.cookie .cookie__text a {
  color: #fff;
  text-decoration: underline;
}
.cookie .btn {
  --min-font-px: 14px;
  --min-font: 14;
  --max-font: 18;
  --max-font-px: 18px;
  display: block;
  margin-left: auto;
  padding: 10px 35px;
}
.cookie.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

@media screen and (max-width: 767px) {
  .cookie .container {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 575px) {
  .cookie .container {
    padding: 15px;
  }
}
.side-nav {
  max-width: 256px;
  width: 256px;
  border-right: 1px solid #e8e8e8;
  padding: 24px 16px 12px 6px;
  position: relative;
  -webkit-transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1), max-width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 1024px) {
  .side-nav {
    width: unset;
  }
}
@media screen and (max-width: 767px) {
  .side-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: white;
    z-index: 1000;
    width: 300px;
    max-width: 300px;
    -webkit-box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
            box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    display: block;
    -webkit-transition: visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .side-nav.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
    opacity: 1;
    display: block;
  }
}
.side-nav .crossed-burger {
  cursor: pointer;
}
.side-nav .logo {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.side-nav .logo .dashboard-tablet-logo {
  display: none;
}
.side-nav .logo .crossed-burger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .side-nav .logo .dashboard-tablet-logo {
    display: block;
  }
  .side-nav .logo .dashboard-logo {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .side-nav .logo .dashboard-logo {
    display: block;
  }
  .side-nav .logo .dashboard-tablet-logo {
    display: none;
  }
  .side-nav .logo .crossed-burger {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .side-nav .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.side-nav .nav-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.side-nav .account-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 16px;
  grid-gap: 16px;
  gap: 16px;
}
.side-nav .account-wrapper-info,
.side-nav .account-wrapper .logout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 14px;
  gap: 14px;
}
@media screen and (max-width: 1024px) {
  .side-nav .account-wrapper-info,
  .side-nav .account-wrapper .logout {
    display: none;
  }
}
.side-nav .account-wrapper .logout {
  color: #919191;
}
.side-nav .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 14px;
  gap: 14px;
}
.side-nav .nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 14px;
  gap: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
}
.side-nav .nav-link .link-title {
  color: var(--dark-blue);
  font-weight: 400;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .side-nav .nav-link .link-title {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .side-nav .nav-link .link-title {
    display: block;
  }
}
.side-nav .nav-link.active {
  background-color: var(--primary-blue);
  font-weight: bold;
  color: white;
}
.side-nav .nav-link.active .link-title {
  color: white;
  font-weight: bold;
}
.side-nav .nav-link:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--primary-blue);
  color: white;
}
.side-nav .nav-link:hover svg path {
  stroke: white;
}
.side-nav .nav-link:hover .link-title {
  color: white;
}
.side-nav .nav-link:nth-child(3):hover svg path, .side-nav .nav-link:nth-child(4):hover svg path {
  fill: white;
}

.template-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .template-header {
    padding: 0 24px 0 0;
    height: 74px;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
  }
  .template-header h1 {
    font-size: 16px;
    padding-left: 24px;
  }
}
.template-header .burger-toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .template-header .burger-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    padding: 20px;
    border: 1px solid #e8e8e8;
  }
}

.right-indicators {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 32px;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .right-indicators {
    margin-left: auto;
    grid-gap: 20px;
    gap: 20px;
  }
}

.profile-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  gap: 8px;
}
.profile-area .star {
  position: relative;
}
.profile-area .star .star-count {
  position: absolute;
  top: -2px;
  right: -2px;
  font-size: 12px;
  font-weight: 700;
  color: #de9611;
}
@media screen and (max-width: 767px) {
  .profile-area .star .star-count {
    top: -4px;
  }
}
@media screen and (max-width: 767px) {
  .profile-area .profile-photo {
    width: 32px;
  }
}

.notif-bell {
  position: relative;
  padding: 10px;
  border: 1px solid var(--dark-blue);
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .notif-bell {
    padding: 4px;
  }
}
.notif-bell .notification-modal {
  display: none;
  position: absolute;
  top: 30px;
  left: -355px;
  min-width: 394px;
  width: auto;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background-color: white;
  z-index: 1000;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.0509803922);
  -webkit-box-shadow: 7px 9px 11px 0px rgba(0, 0, 0, 0.0392156863);
          box-shadow: 7px 9px 11px 0px rgba(0, 0, 0, 0.0392156863);
  -webkit-box-shadow: 16px 20px 15px 0px rgba(0, 0, 0, 0.031372549);
          box-shadow: 16px 20px 15px 0px rgba(0, 0, 0, 0.031372549);
  -webkit-box-shadow: 29px 35px 18px 0px rgba(0, 0, 0, 0.0117647059);
          box-shadow: 29px 35px 18px 0px rgba(0, 0, 0, 0.0117647059);
  -webkit-box-shadow: 46px 55px 20px 0px rgba(0, 0, 0, 0);
          box-shadow: 46px 55px 20px 0px rgba(0, 0, 0, 0);
  z-index: 1000;
  opacity: 0;
  -webkit-transform: translateY(-10px) scale(0.95);
          transform: translateY(-10px) scale(0.95);
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: opacity 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
.notif-bell .notification-modal.show {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  pointer-events: auto;
  -webkit-animation: modalSlideIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
          animation: modalSlideIn 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.notif-bell .notification-modal.show .notif-item {
  opacity: 1;
  -webkit-animation: notifItemFadeIn 0.3s ease-out forwards;
          animation: notifItemFadeIn 0.3s ease-out forwards;
}
.notif-bell .notification-modal.show .notif-item:nth-child(1) {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.notif-bell .notification-modal.show .notif-item:nth-child(2) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.notif-bell .notification-modal.show .notif-item:nth-child(3) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.notif-bell .notification-modal.show .notif-item:nth-child(4) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.notif-bell .mark-as-read {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 5px;
  gap: 5px;
  padding: 14px 12px;
}
.notif-bell .mark-as-read p {
  font-size: 14px;
}
.notif-bell .notif-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 12px;
  grid-gap: 13px;
  gap: 13px;
}
.notif-bell .notif-item:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}
.notif-bell h3 {
  font-size: 14px;
  font-weight: 700;
  color: #636363;
  margin-bottom: 5px;
}
.notif-bell p {
  color: #636363;
  font-size: 14px;
}
.notif-bell .time-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 12px;
  gap: 12px;
  margin-left: auto;
}
.notif-bell .time-item span {
  color: #636363;
}
.notif-bell .notif-color {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #c32929;
}
@media screen and (max-width: 767px) {
  .notif-bell .notif-color {
    top: -6px;
  }
}

.status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-column-gap: 50px;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  padding: 10px 12px;
  background-color: #e8ffee;
  border-radius: 42px;
}
@media screen and (max-width: 767px) {
  .status {
    background-color: transparent;
    padding: 0;
  }
}
.status p {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .status p {
    display: none;
  }
}
.status p span {
  font-weight: bold;
}
.status .color-status {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #34c759;
}

.guides-library-template .guides-library-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.guides-library-template .guides-library-wrapper .right-main-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.guides-library-template .main-content-area {
  padding: 24px;
  background-color: #fafafa;
  height: 100vh;
}
@media screen and (max-width: 767px) {
  .guides-library-template .main-content-area {
    padding: 24px 20px 20px 20px;
  }
}
.guides-library-template .main-content-area .main-content {
  padding: 38px;
  border: 1px solid #eceff1;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .guides-library-template .main-content-area .main-content {
    padding: 0;
    border: none;
  }
}
.guides-library-template .main-content-area .main-content #main-content-description {
  padding-bottom: 15px;
  border-bottom: 1px solid #f5f5f5;
  margin-bottom: 23px;
  font-size: 20px;
  color: #636363;
}
@media screen and (max-width: 767px) {
  .guides-library-template .main-content-area .main-content #main-content-description {
    border: none;
  }
}
.guides-library-template .main-content-area .main-content .guide-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 23px;
  gap: 23px;
}
@media screen and (max-width: 1199px) {
  .guides-library-template .main-content-area .main-content .guide-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.guides-library-template .main-content-area .main-content .guide-cards a {
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .guides-library-template .main-content-area .main-content .guide-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
.guides-library-template .main-content-area .main-content .guide-card {
  padding: 12px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}
.guides-library-template .main-content-area .main-content .guide-card .tag {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--dark-blue);
  font-size: 14px;
  font-weight: 600;
  background-color: #e8e8e8;
  border-radius: 40px;
  padding: 0px 6px;
  margin-bottom: 14px;
}
.guides-library-template .main-content-area .main-content .guide-card h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  color: black;
}
.guides-library-template .main-content-area .main-content .guide-card .level-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 12px;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 16px;
  border-bottom: 1px solid #919191;
}
.guides-library-template .main-content-area .main-content .guide-card .level-time span {
  color: #636363;
  font-size: 16px;
  display: inline-block;
  margin-left: 5px;
}
.guides-library-template .main-content-area .main-content .guide-card .progress p {
  color: #262626;
  font-size: 18px;
}
.guides-library-template .main-content-area .main-content .guide-card .progress span {
  color: #636363;
  font-size: 12px;
  display: inline-block;
  margin-left: 5px;
}
.guides-library-template .main-content-area .main-content .guide-card .progress .progress-color-bar {
  width: 100%;
  background-color: #198038;
  border-radius: 64px;
  height: 8px;
  margin-top: 10px;
}

/*# sourceMappingURL=guides-archive.css.map*/