@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: 1320px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1320px;
}

.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: 1320px) {
  .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: 1320px) {
  .custom-padding-left {
    padding-left: calc(100vw - (100% - (100% - 1320px) / 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: 1320px) {
  .custom-padding-right {
    padding-right: calc(100vw - (100% - (100% - 1320px) / 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: "Industry";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Light.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Industry";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Regular.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Industry";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Medium.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Industry";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Bold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acumin-Pro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/AcuminPro-Regular.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/AcuminPro-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acumin-Pro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/AcuminPro-Bold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/AcuminPro-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: "Industry", sans-serif;
  --blue-gradient: linear-gradient(
  	90deg,
  	#277ced 0%,
  	#2f80ed 50%,
  	#73afff 100%
  );
  position: relative;
  font-family: var(--nfont);
  color: var(--dark-blue);
  margin: 0;
  overflow: auto;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

html {
  height: 100%;
}
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;
}

@font-face {
  font-family: "Industry";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Light.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Light.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Industry";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Regular.woff2) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Industry";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Medium.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Industry";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Bold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/Industry-Bold.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acumin-Pro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/AcuminPro-Regular.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/AcuminPro-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Acumin-Pro";
  src: url(/wp-content/themes/powerStarter/dist/assets/fonts/AcuminPro-Bold.woff) format("woff2"), url(/wp-content/themes/powerStarter/dist/assets/fonts/AcuminPro-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: "Industry", sans-serif;
  --blue-gradient: linear-gradient(
  	90deg,
  	#277ced 0%,
  	#2f80ed 50%,
  	#73afff 100%
  );
  position: relative;
  font-family: var(--nfont);
  color: var(--dark-blue);
  margin: 0;
  overflow: auto;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

html {
  height: 100%;
}
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: 100px 0 40px 0;
  position: relative;
  height: 560px;
  overflow: hidden;
  margin-top: auto;
}
@media (max-width: 767px) {
  #footer {
    padding-top: 50px;
    height: unset;
  }
}
@media (max-width: 767px) {
  #footer .footer-logo {
    text-align: center;
  }
  #footer .footer-logo img {
    width: 75%;
  }
}
#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.8)), color-stop(50%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}
#footer .footer-cover-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}
#footer .container {
  position: relative;
  z-index: 2;
}
#footer .footer-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 25%;
  gap: 25%;
}
@media (max-width: 767px) {
  #footer .footer-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: 40px;
    gap: 40px;
  }
}
#footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  grid-gap: 20%;
  gap: 20%;
}
@media (max-width: 767px) {
  #footer .footer-links {
    -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: 40px;
    gap: 40px;
  }
}
#footer .footer-links h3 {
  color: #c18e3a;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
#footer .footer-links ul {
  padding: 0;
}
#footer .footer-links ul li {
  list-style: none;
  font-weight: 400;
}
#footer .footer-links ul li a {
  font-size: 18px;
  color: white;
  display: block;
  text-decoration: none;
}
#footer .footer-links ul li:not(:last-child) {
  margin-bottom: 15px;
}
#footer .footer-links .menu a {
  display: inline-block;
  font-weight: 300;
}
@media (max-width: 767px) {
  #footer .footer-links .menu {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  #footer .company-info {
    text-align: center;
  }
}
#footer .company-info h3 {
  color: #c18e3a;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
#footer .company-info svg {
  fill: white;
}
#footer .company-info .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
#footer .company-info .info span {
  display: inline-block;
  color: white;
  font-weight: 300;
}
#footer .company-info span {
  display: block;
  color: white;
  font-size: 18px;
  margin-left: 15px;
}
@media (max-width: 767px) {
  #footer .company-info span {
    font-size: 16px;
  }
}
#footer .copyright {
  text-align: left;
  color: white;
  font-size: 16px;
  font-weight: 300;
  margin-top: 80px;
}
@media (max-width: 767px) {
  #footer .copyright {
    margin-top: 40px;
    font-size: 14px;
  }
}
#footer .footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .footer-bottom .blackbox-logo {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .footer-bottom .blackbox-logo img {
  width: 100px;
  height: auto;
}
#footer .footer-bottom .blackbox-logo p {
  position: relative;
  bottom: -30px;
  color: white;
  font-weight: 300;
}
@media (max-width: 767px) {
  #footer .footer-bottom {
    -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;
  }
}

#header {
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8))) !important;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)) !important;
  border-top: 7px #c18e3a solid;
  color: black;
}
#header:hover {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.8))) !important;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8)) !important;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: background-color 0.7s ease;
  transition: background-color 0.7s ease;
}
@media (min-width: 1200px) {
  #header {
    height: 107px;
  }
}
#header .logo {
  width: 249px;
  height: 100px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 110;
}
@media (max-width: 1199px) {
  #header .logo {
    width: 150px;
  }
}
#header .logo a {
  text-decoration: none;
  color: white;
}
@media (max-width: 991px) {
  #header .logo {
    width: 180px;
    height: 70px;
  }
}
.mobile-menu-open #header .logo {
  visibility: hidden;
}
#header .header-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100px;
}
@media (max-width: 991px) {
  #header .header-area {
    height: 70px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#header .burger {
  display: none;
  position: relative;
  z-index: 110;
  width: 36px;
  height: 28px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 991px) {
  #header .burger {
    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;
  }
}
#header .burger__line {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}
#header .burger.is-active .burger__line {
  background: black;
}
#header .burger.is-active .burger__line:nth-child(1) {
  -webkit-transform: translateY(12.5px) rotate(45deg);
          transform: translateY(12.5px) rotate(45deg);
}
#header .burger.is-active .burger__line:nth-child(2) {
  opacity: 0;
}
#header .burger.is-active .burger__line:nth-child(3) {
  -webkit-transform: translateY(-12.5px) rotate(-45deg);
          transform: translateY(-12.5px) rotate(-45deg);
}
#header .header-links {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #c18e3a;
  border-right: 1px solid #c18e3a;
  position: relative;
}
@media (max-width: 1400px) {
  #header .header-links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-left: 5%;
  }
}
@media (max-width: 1199px) {
  #header .header-links {
    margin-left: 3%;
  }
}
@media (max-width: 991px) {
  #header .header-links {
    margin-left: 0;
  }
}
#header .header-links .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  grid-gap: 40px;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#header .header-links .menu li {
  list-style: none;
  font-weight: 400;
}
#header .header-links .menu li a {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  color: white;
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding-right: 14px;
  -webkit-transition: font-weight 0.2s ease;
  transition: font-weight 0.2s ease;
}
#header .header-links .menu li a::after {
  content: "";
  position: absolute;
  top: 60%;
  right: -10px;
  width: 11px;
  height: 11px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  -webkit-transform: translateY(-55%) rotate(-135deg);
          transform: translateY(-55%) rotate(-135deg);
  -webkit-transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transition: transform 0.22s ease, opacity 0.22s ease, -webkit-transform 0.22s ease;
  opacity: 0.8;
}
#header .header-links .menu li a:hover::after {
  -webkit-transform: translateY(-100%) rotate(45deg);
          transform: translateY(-100%) rotate(45deg);
  opacity: 1;
}
#header .header-links .menu li a:hover {
  font-weight: 700;
  color: #c18e3a;
  -webkit-transition: font-weight 0.1s ease, color 0.1s ease;
  transition: font-weight 0.1s ease, color 0.1s ease;
}
@media (max-width: 1199px) {
  #header .header-links .menu li a {
    font-size: 0.8rem;
  }
}
#header .header-links .menu li:last-child {
  position: absolute;
  right: -50px;
}
#header .header-links .menu li:last-child img {
  width: 20px !important;
  height: 15px !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1400px) {
  #header .header-links .menu li:last-child {
    position: unset;
    right: unset;
  }
}
#header .header-links .menu li:last-child a::after {
  display: none;
}
@media (max-width: 1199px) {
  #header .header-links .menu {
    grid-gap: 25px;
    gap: 25px;
  }
}
@media (max-width: 991px) {
  #header .header-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: white;
    border-right: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 105;
    display: none;
  }
  #header .header-links.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #header .header-links .menu {
    -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: 0;
    gap: 0;
  }
  #header .header-links .menu li {
    border-bottom: 1px solid rgba(193, 142, 58, 0.15);
    width: 100%;
    text-align: center;
  }
  #header .header-links .menu li:last-child {
    border-bottom: none;
  }
  #header .header-links .menu li a {
    color: #c18e3a;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.18rem;
    padding: 18px 24px;
    display: block;
    width: 100%;
    padding-right: 24px;
  }
  #header .header-links .menu li a::after {
    display: none;
  }
  #header .header-links .menu li a:hover {
    color: rgb(145.9418326693, 107.3768924303, 43.8581673307);
    font-weight: 700;
    background: rgba(193, 142, 58, 0.06);
  }
  #header .header-links .menu li:last-child {
    position: unset;
  }
}
#header.scrolled {
  position: fixed;
  top: 0;
  background-image: none !important;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0.9;
  -webkit-transition: background-color 0.7s ease;
  transition: background-color 0.7s ease;
}
#header.scrolled .header-links .menu li a {
  color: white;
}
@media (max-width: 991px) {
  #header.scrolled .header-links .menu li a {
    color: #c18e3a;
  }
}
#header.scrolled .burger__line {
  background: white;
}

body.mobile-menu-open {
  overflow: hidden;
}

.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;
  }
}
.collage-section {
  padding: 140px 0 190px;
  background: #e8e8e8;
  position: relative;
}

.collage-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.collage {
  width: 100%;
  margin-bottom: 48px;
}

.collage__wrap {
  position: relative;
  width: 100%;
  min-height: 380px;
  max-height: 480px;
}

.collage__item {
  position: absolute;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  opacity: 0.88;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.collage__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0.9;
}
.collage__item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  opacity: 1;
}

.collage__item--1 {
  left: 0;
  top: 0;
  width: 26%;
  min-width: 120px;
  aspect-ratio: 3/4;
  z-index: 10;
}

.collage__item--2 {
  left: 9%;
  top: 14%;
  width: 24%;
  max-width: 300px;
  height: 400px;
  aspect-ratio: 4/3;
  z-index: 9;
}

.collage__item--3 {
  left: 19%;
  top: 26%;
  width: 26%;
  min-width: 120px;
  aspect-ratio: 3/4;
  z-index: 8;
}

.collage__item--4 {
  left: 33%;
  top: 37%;
  width: 24%;
  min-width: 115px;
  height: 400px;
  aspect-ratio: 1;
  z-index: 7;
}

.collage__item--5 {
  left: 48%;
  top: 26%;
  width: 26%;
  min-width: 120px;
  height: 400px;
  aspect-ratio: 4/3;
  z-index: 6;
}

.collage__item--6 {
  left: 60%;
  top: 27%;
  width: 24%;
  min-width: 115px;
  height: 250px;
  aspect-ratio: 3/4;
  z-index: 5;
}

.collage__item--7 {
  left: 70%;
  top: 8%;
  width: 26%;
  min-width: 120px;
  aspect-ratio: 4/3;
  z-index: 4;
}

.collage__item--8 {
  left: 80%;
  top: -18%;
  width: 24%;
  min-width: 115px;
  height: 300px;
  aspect-ratio: 3/4;
  z-index: 3;
}

.collage-section__title-wrap {
  text-align: center;
  position: absolute;
  top: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.collage-section__title-wrap img {
  position: relative;
  top: 4px;
  z-index: 11111;
  width: 445px;
  height: auto;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.collage-section__title {
  display: inline-block;
  font-family: "Industry", sans-serif;
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 700;
  margin: 0;
  padding-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.75;
  position: relative;
  z-index: 100;
  color: black;
  text-shadow: none;
}
.collage-section__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 115%;
  margin-left: -7.5%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, #c9a227), color-stop(85%, #c9a227), to(transparent));
  background: linear-gradient(90deg, transparent 0%, #c9a227 15%, #c9a227 85%, transparent 100%);
  border-radius: 2px;
}

@media (max-width: 1199px) {
  .collage-section__title-wrap {
    top: 20px;
  }
  .collage__item.collage__item--8 {
    width: unset;
  }
}
@media (max-width: 991px) {
  .collage__wrap {
    min-height: 340px;
    max-height: 420px;
  }
  /* Stairs ostaje: isti stepeničasti top, manji left korak */
  .collage__item--1 {
    left: 0;
    top: 0;
    width: 28%;
  }
  .collage__item--2 {
    left: 14%;
    top: 14%;
    width: 26%;
  }
  .collage__item--3 {
    left: 28%;
    top: 42%;
    width: 28%;
  }
  .collage__item--4 {
    left: 54%;
    top: 16%;
    width: 26%;
  }
  .collage__item--5 {
    left: 72%;
    top: 6%;
    width: 28%;
  }
  .collage__item--6,
  .collage__item--7,
  .collage__item--8,
  .collage__item--9,
  .collage__item--10 {
    display: none;
  }
}
@media (max-width: 767px) {
  .collage-section {
    padding: 80px 0 80px;
  }
  .collage-section__inner {
    padding: 0 10px;
  }
  .collage__wrap {
    min-height: 300px;
    max-height: 360px;
  }
  /* Stairs na mobilnom: manje slika, isti efekat stepeništa */
  .collage__item--1 {
    left: 0;
    top: 0;
    width: 45%;
    position: relative;
  }
  .collage__item--2 {
    left: 22%;
    width: 45%;
    height: 200px;
    position: relative;
    top: -130px;
  }
  .collage__item--3 {
    left: 56%;
    width: 45%;
    position: relative;
    top: -265px;
  }
  .collage__item--4 {
    left: 62%;
    top: 16%;
    width: 30%;
    display: none;
  }
  .collage__item--5 {
    left: 78%;
    top: 8%;
    width: 28%;
    display: none;
  }
  .collage-section__title {
    font-size: clamp(36px, 12vw, 64px);
  }
  .collage-section__title-wrap {
    top: 0px;
  }
}
.front-page-template {
  color: #f5f5f5;
}

.hero-parallax {
  --parallax-progress: 0;
  --primary-shift: 0vh;
  --secondary-shift: 110vh;
  --hero-overlay: 0.2;
  --header-height: 0px;
  --title-primary: 1;
  --title-secondary: 0;
  position: relative;
  min-height: 220vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #fdfbf8), color-stop(60%, #faf6f0), to(rgba(193, 142, 58, 0.08)));
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 30%, #faf6f0 60%, rgba(193, 142, 58, 0.08) 100%);
  isolation: isolate;
}
@media (max-width: 991px) {
  .hero-parallax {
    min-height: 200vh;
  }
}
.hero-parallax__sticky {
  position: sticky;
  top: var(--header-height);
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}
.hero-parallax__layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  -webkit-transform: translateY(var(--primary-shift));
          transform: translateY(var(--primary-shift));
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
  will-change: transform;
}
.hero-parallax__layer--secondary {
  z-index: 1;
  -webkit-transform: translateY(var(--secondary-shift));
          transform: translateY(var(--secondary-shift));
  -webkit-box-shadow: 0 18vh 36vh rgba(0, 0, 0, 0.38);
          box-shadow: 0 18vh 36vh rgba(0, 0, 0, 0.38);
}
.hero-parallax__layer--secondary .hero-parallax__title {
  opacity: 0;
  opacity: var(--title-secondary, 0);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: clamp(48px, 12vh, 200px);
}
.hero-parallax__layer--primary {
  z-index: 2;
}
.hero-parallax__layer--primary .hero-parallax__title {
  opacity: 1;
  opacity: var(--title-primary, 1);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.hero-parallax__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: saturate(1.05);
          filter: saturate(1.05);
}
.hero-parallax__title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  z-index: 4;
  padding: 0 24px;
}
.hero-parallax__title h2 {
  font-size: clamp(36px, 5vw + 12px, 72px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}
.hero-parallax__layer--secondary .hero-parallax__title h2 {
  color: #e6e6e6;
}
.hero-parallax__scrim {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-parallax__hint {
  position: absolute;
  left: 50%;
  bottom: 32px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 6px;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  z-index: 5;
}
.hero-parallax__hint-line {
  width: 1px;
  height: 48px;
  background: currentColor;
  opacity: 0.7;
  -webkit-animation: scrollPulse 1.4s ease-in-out infinite;
          animation: scrollPulse 1.4s ease-in-out infinite;
}
@media (max-width: 767px) {
  .hero-parallax__hint {
    bottom: 24px;
    font-size: 10px;
  }
  .hero-parallax__hint-line {
    height: 36px;
  }
}

.hero-parallax.is-secondary-active .hero-parallax__layer--secondary {
  z-index: 3;
}
.hero-parallax.is-secondary-active .hero-parallax__layer--primary {
  z-index: 1;
}

@-webkit-keyframes scrollPulse {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0.45;
  }
  50% {
    -webkit-transform: scaleY(1.25);
            transform: scaleY(1.25);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0.45;
  }
}

@keyframes scrollPulse {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0.45;
  }
  50% {
    -webkit-transform: scaleY(1.25);
            transform: scaleY(1.25);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    opacity: 0.45;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-parallax {
    min-height: auto;
  }
  .hero-parallax__sticky {
    position: relative;
    height: auto;
  }
  .hero-parallax__layer, .hero-parallax__layer--secondary {
    position: relative;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .hero-parallax__scrim {
    --hero-overlay: 0.4;
  }
  .hero-parallax__spacer {
    height: auto;
    margin-top: 0;
    padding: 48px 0 32px;
  }
}
.about-block {
  background: white;
  color: #e8e8e8;
  position: relative;
  overflow: hidden;
}
.about-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(120% 120% at 15%, at 10%, rgba(255, 210, 0, 0.08), transparent 45%), radial-gradient(90% 90% at 85%, at 20%, rgba(255, 255, 255, 0.06), transparent 50%), radial-gradient(140% 140% at 50%, at 110%, rgba(255, 210, 0, 0.05), transparent 60%);
  background: radial-gradient(120% 120% at 15% 10%, rgba(255, 210, 0, 0.08), transparent 45%), radial-gradient(90% 90% at 85% 20%, rgba(255, 255, 255, 0.06), transparent 50%), radial-gradient(140% 140% at 50% 110%, rgba(255, 210, 0, 0.05), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}
.about-block__banner {
  position: relative;
  padding: 120px 0 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.about-block__banner .eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 12px;
  gap: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c18e3a;
  font-size: 12px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 0;
}
.about-block__banner .eyebrow::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 125px;
  background: #c18e3a;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.about-block__banner h2 {
  font-size: 50px;
  color: rgb(33, 37, 41);
  font-family: "Acumin-Pro", sans-serif;
  font-weight: 400;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .about-block__banner h2 {
    font-size: 34px;
  }
}
.about-block__banner .lede {
  max-width: 820px;
  color: rgb(33, 37, 41);
  font-family: "Acumin-Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
}
.about-block__content {
  grid-gap: 32px;
  gap: 32px;
  padding: 80px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #e8e8e8;
  position: relative;
  height: 800px;
}
.about-block__text {
  max-width: 50%;
}
.about-block__text p {
  color: rgb(33, 37, 41);
  line-height: 1.7;
  font-size: 18px;
  font-family: "Acumin-Pro", sans-serif;
  font-weight: 400;
}
.about-block__media {
  max-width: 45%;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
          box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  position: absolute;
  right: 0;
  top: 0;
}
.about-block__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.about-block__media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(255, 210, 0, 0.12), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.about-block__media:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.about-block__certs {
  padding: 40px 0 90px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(120% 120% at 20%, at 20%, rgba(255, 210, 0, 0.07), rgba(11, 11, 15, 0.9)), -webkit-gradient(linear, left top, left bottom, from(rgba(8, 8, 10, 0.9)), to(rgba(8, 8, 10, 0.85)));
  background: radial-gradient(120% 120% at 20%, at 20%, rgba(255, 210, 0, 0.07), rgba(11, 11, 15, 0.9)), linear-gradient(180deg, rgba(8, 8, 10, 0.9) 0%, rgba(8, 8, 10, 0.85) 100%);
  background: radial-gradient(120% 120% at 20% 20%, rgba(255, 210, 0, 0.07), rgba(11, 11, 15, 0.9)), -webkit-gradient(linear, left top, left bottom, from(rgba(8, 8, 10, 0.9)), to(rgba(8, 8, 10, 0.85)));
  background: radial-gradient(120% 120% at 20% 20%, rgba(255, 210, 0, 0.07), rgba(11, 11, 15, 0.9)), linear-gradient(180deg, rgba(8, 8, 10, 0.9) 0%, rgba(8, 8, 10, 0.85) 100%);
  color: #f3f4f7;
}
.about-block__certs .eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 12px;
  gap: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c18e3a;
  font-size: 12px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 0;
}
.about-block__certs .eyebrow::after {
  content: "";
  display: inline-block;
  height: 3px;
  width: 125px;
  background: #c18e3a;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.about-block__certs .container {
  max-width: 1180px;
}
.about-block__certs h3 {
  letter-spacing: 1px;
  font-family: "Acumin-Pro", sans-serif;
  font-weight: 400;
  font-size: 50px;
}
.about-block__certs-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 24px;
  gap: 24px;
  margin-bottom: 28px;
}
.about-block__certs-header h3 {
  letter-spacing: 1px;
  font-size: 46px;
  margin-bottom: 8px;
}
.about-block__certs-header .eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c18e3a;
  font-size: 12px;
  margin-bottom: 10px;
}
.about-block__certs-header .certs-lede {
  color: #cfd1d7;
  max-width: 820px;
  line-height: 1.6;
  font-family: "Acumin-Pro", sans-serif;
  font-weight: 400;
  font-size: 18px;
}
.about-block__cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 20px;
  gap: 20px;
}

.cert-card {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #fdfbf8), color-stop(60%, #faf6f0), to(rgba(193, 142, 58, 0.08)));
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 30%, #faf6f0 60%, rgba(193, 142, 58, 0.08) 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  -webkit-transition: border-color 0.28s ease, -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
  transition: border-color 0.28s ease, -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, -webkit-transform 0.28s ease, -webkit-box-shadow 0.28s ease;
}
.cert-card img {
  display: block;
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: saturate(1.05);
          filter: saturate(1.05);
}
.cert-card span {
  display: block;
  padding: 14px 16px 16px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0.01em;
}
.cert-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(120% 120% at 80%, at 0%, rgba(193, 142, 58, 0.12), transparent 60%);
  background: radial-gradient(120% 120% at 80% 0%, rgba(193, 142, 58, 0.12), transparent 60%);
  opacity: 0;
  -webkit-transition: opacity 0.28s ease;
  transition: opacity 0.28s ease;
  pointer-events: none;
}
.cert-card:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(193, 142, 58, 0.4);
}
.cert-card:hover::after {
  opacity: 1;
}

@media (max-width: 991px) {
  .about-block__content {
    grid-template-columns: 1fr;
    padding: 64px 0;
  }
  .about-block__media {
    justify-self: stretch;
    max-width: none;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media (max-width: 575px) {
  .about-block__banner {
    padding: 90px 0 60px;
  }
  .cert-card img {
    height: 150px;
  }
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 442px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
          box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
  background: #111;
  cursor: pointer;
}
.project-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: #c18e3a;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.28s ease-in-out;
  transition: -webkit-transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out, -webkit-transform 0.28s ease-in-out;
  z-index: 2;
}
.project-card img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease, -webkit-filter 0.6s ease;
  transition: -webkit-transform 0.6s ease, -webkit-filter 0.6s ease;
  transition: transform 0.6s ease, filter 0.6s ease;
  transition: transform 0.6s ease, filter 0.6s ease, -webkit-transform 0.6s ease, -webkit-filter 0.6s ease;
}
.project-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.55)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.55) 100%);
}
.project-card__body {
  position: relative;
  z-index: 1;
  padding: 22px 18px;
  color: #fff;
  width: 100%;
}
.project-card h3 {
  font-size: 25px;
  font-family: "Industry", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.project-card__cta {
  font-size: 20px;
  font-family: "Acumin-Pro", sans-serif;
  font-weight: 400;
  color: white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 6px;
  gap: 6px;
}
.project-card:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-filter: saturate(1.05);
          filter: saturate(1.05);
}
.project-card:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.project-card svg {
  -webkit-transition: -webkit-transform 0.28s ease-in-out;
  transition: -webkit-transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out, -webkit-transform 0.28s ease-in-out;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.project-card:hover svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: -webkit-transform 0.28s ease-in-out;
  transition: -webkit-transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out;
  transition: transform 0.28s ease-in-out, -webkit-transform 0.28s ease-in-out;
}

@media (max-width: 1180px) {
  .projects__slider {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
  }
}
@media (max-width: 820px) {
  .projects__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .projects {
    padding: 80px 0 90px;
  }
  .project-card {
    min-height: 280px;
  }
}
.projects-alt-lock {
  position: relative;
}
.projects-alt-lock > .projects-alt {
  position: sticky;
  top: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .projects-alt-lock > .projects-alt {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 991px) {
  .projects-alt-lock > .projects-alt {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.projects-alt {
  background: #ffffff;
  color: #0f1117;
  padding: 110px 0 120px;
}
.projects-alt__wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  gap: 32px;
  max-width: 1320px;
  margin: 0 auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 767px) {
  .projects-alt__wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.projects-alt__wrap .splide__pagination--ttb {
  top: -9px;
  bottom: 100%;
  right: unset;
  left: unset;
}
.projects-alt__wrap .splide__pagination--ttb .splide__pagination__page {
  background-color: #c18e3a;
}
@media (max-width: 767px) {
  .projects-alt__wrap .splide__pagination--ttb {
    left: 5px;
  }
}
.projects-alt__left {
  grid-column: span 6;
  display: grid;
  grid-gap: 14px;
  gap: 14px;
}
.projects-alt .eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
  gap: 10px;
  color: #c18e3a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}
.projects-alt .eyebrow::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 125px;
  background: #c18e3a;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.projects-alt h2 {
  font-size: 40px;
  line-height: 1.1;
  font-family: "Industry", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .projects-alt h2 {
    padding-top: 0;
  }
}
.projects-alt h2 span {
  color: #c18e3a;
}
.projects-alt .lede {
  max-width: 560px;
  font-family: "Acumin-Pro", sans-serif;
  font-size: 16px;
  color: #1d1f2a;
  line-height: 1.6;
}
.projects-alt .btn-primary {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #c18e3a;
  color: white;
  padding: 10px 20px;
  border-radius: 2px;
  font-family: "Acumin-Pro", sans-serif;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: background 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: background 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}
.projects-alt__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 30px;
  gap: 30px;
  margin-top: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.projects-alt .stat {
  display: grid;
  grid-gap: 4px;
  gap: 4px;
}
.projects-alt .stat strong {
  font-size: 28px;
  color: #0f1117;
  font-family: "Industry", sans-serif;
  font-weight: 700;
}
.projects-alt .stat span {
  font-size: 13px;
  color: #5c6170;
  font-family: "Acumin-Pro", sans-serif;
}
.projects-alt__right {
  grid-column: span 6;
  background: none;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px 12px 16px;
}
.projects-alt__right a {
  text-decoration: none;
}
@media (max-width: 767px) {
  .projects-alt__right {
    padding: 12px 0px 16px;
  }
}
.projects-alt .splide__track {
  height: 100%;
}
.projects-alt .splide__list {
  padding: 8px 0 32px;
}
.projects-alt .projects-alt__card {
  position: relative;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.projects-alt .projects-alt__media img {
  display: block;
  width: 100%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: saturate(1.05);
          filter: saturate(1.05);
}
@media (max-width: 767px) {
  .projects-alt .projects-alt__media img {
    height: auto;
  }
}
.projects-alt .projects-alt__body {
  position: relative;
  padding: 20px;
  color: #0f1117;
  background: #fff;
}
.projects-alt .projects-alt__body h3 {
  font-size: 20px;
  font-family: "Industry", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  color: black;
}
.projects-alt .projects-alt__body p {
  font-size: 14px;
  font-family: "Acumin-Pro", sans-serif;
  line-height: 1.6;
  color: #3b3f4e;
  margin-bottom: 12px;
}
.projects-alt .projects-alt__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 6px;
  gap: 6px;
  color: #c18e3a;
  font-weight: 600;
  font-size: 18px;
  font-family: "Acumin-Pro", sans-serif;
  text-decoration: none;
}
.projects-alt .projects-alt__cta::after {
  content: "→";
  display: inline-block;
  font-size: 15px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

@media (max-width: 991px) {
  .projects-alt__wrap {
    grid-template-columns: 1fr;
  }
  .projects-alt__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .projects-alt__right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 25px;
  }
}
@media (max-width: 640px) {
  .projects-alt {
    padding: 80px 0 90px;
  }
  .projects-alt__card {
    min-height: auto;
  }
}
.experience-hero {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #fdfbf8), color-stop(60%, #faf6f0), to(rgba(193, 142, 58, 0.08)));
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 30%, #faf6f0 60%, rgba(193, 142, 58, 0.08) 100%);
  color: #333;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.experience-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(60% 60% at 15%, at 20%, rgba(193, 142, 58, 0.12), transparent 45%), radial-gradient(70% 70% at 80%, at 0%, rgba(255, 255, 255, 0.5), transparent 50%);
  background: radial-gradient(60% 60% at 15% 20%, rgba(193, 142, 58, 0.12), transparent 45%), radial-gradient(70% 70% at 80% 0%, rgba(255, 255, 255, 0.5), transparent 50%);
  pointer-events: none;
}
.experience-hero__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 40px;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.experience-hero__copy {
  grid-column: span 6;
  display: grid;
  grid-gap: 14px;
  gap: 14px;
}
.experience-hero .eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
  gap: 10px;
  color: #c18e3a;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}
.experience-hero .eyebrow::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 110px;
  background: #c18e3a;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.experience-hero h2 {
  font-family: "Industry", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #1a1a1a;
}
@media (max-width: 767px) {
  .experience-hero h2 {
    font-size: 34px;
  }
}
.experience-hero .lede {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}
.experience-hero__highlights {
  display: grid;
  grid-gap: 10px;
  gap: 10px;
  margin-top: 6px;
}
.experience-hero .xp-pill {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
@media (max-width: 767px) {
  .experience-hero .xp-pill {
    display: block;
    padding: 0;
    margin-bottom: 10px;
  }
}
.experience-hero .xp-pill__year {
  font-family: "Industry", sans-serif;
  font-weight: 600;
  color: #c18e3a;
  font-size: 15px;
}
.experience-hero .xp-pill p {
  margin: 0;
  font-family: "Acumin-Pro", sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.experience-hero__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 18px;
  gap: 18px;
  margin-top: 12px;
}
.experience-hero .xp-stat {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-width: 140px;
}
@media (max-width: 767px) {
  .experience-hero .xp-stat {
    padding: 0;
  }
}
.experience-hero .xp-stat strong {
  display: block;
  font-family: "Industry", sans-serif;
  font-size: 22px;
  color: #c18e3a;
  margin-bottom: 4px;
}
.experience-hero .xp-stat span {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 13px;
  color: #555;
}
.experience-hero__visual {
  grid-column: span 6;
  position: relative;
  min-height: 520px;
}
.experience-hero__glow {
  position: absolute;
  top: -40px;
  right: -20px;
  bottom: -40px;
  left: -20px;
  background: radial-gradient(50% 50% at 50%, at 40%, rgba(255, 210, 0, 0.12), transparent 70%);
  background: radial-gradient(50% 50% at 50% 40%, rgba(255, 210, 0, 0.12), transparent 70%);
  -webkit-filter: blur(30px);
          filter: blur(30px);
  -webkit-animation: xpPulse 6s ease-in-out infinite alternate;
          animation: xpPulse 6s ease-in-out infinite alternate;
}
.experience-hero__card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
          box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease, -webkit-filter 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease, -webkit-filter 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease, -webkit-filter 0.5s ease;
}
.experience-hero__card img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
  transition: transform 0.5s ease, filter 0.5s ease;
  transition: transform 0.5s ease, filter 0.5s ease, -webkit-transform 0.5s ease, -webkit-filter 0.5s ease;
}
.experience-hero__card--main {
  width: 100%;
  height: 420px;
  top: 60px;
  left: 0;
  z-index: 10;
}
.experience-hero__card--top {
  width: 280px;
  height: 200px;
  top: -40px;
  right: -50px;
  z-index: 11;
}
@media (max-width: 767px) {
  .experience-hero__card--top {
    width: 200px;
  }
}
.experience-hero__card--bottom {
  width: 260px;
  height: 190px;
  bottom: -40px;
  right: 40px;
  z-index: 12;
}
@media (max-width: 767px) {
  .experience-hero__card--bottom {
    display: none;
  }
}
.experience-hero__tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.95);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(193, 142, 58, 0.12) 100%);
  color: #1a1a1a;
  padding: 2px 12px;
  border-radius: 10px;
  border: 1px solid rgba(193, 142, 58, 0.25);
  font-family: "Acumin-Pro", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .experience-hero__tag {
    font-size: 12px;
  }
}
.experience-hero__card:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-box-shadow: 0 22px 56px rgba(0, 0, 0, 0.55);
          box-shadow: 0 22px 56px rgba(0, 0, 0, 0.55);
}
.experience-hero__card:hover img {
  -webkit-transform: scale(1.06);
          transform: scale(1.06);
  -webkit-filter: saturate(1.06);
          filter: saturate(1.06);
}

@-webkit-keyframes xpPulse {
  from {
    opacity: 0.65;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes xpPulse {
  from {
    opacity: 0.65;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
@media (max-width: 1024px) {
  .experience-hero__wrap {
    grid-template-columns: 1fr;
    grid-gap: 28px;
    gap: 28px;
  }
  .experience-hero__visual {
    min-height: 460px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .experience-hero__card img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .experience-hero__card--main {
    height: 360px;
  }
  .experience-hero__card--top {
    top: -20px;
    right: 0;
  }
  .experience-hero__card--bottom {
    bottom: -20px;
    right: 20px;
  }
}
@media (max-width: 640px) {
  .experience-hero {
    padding: 90px 0 40px 0;
  }
  .experience-hero__visual {
    min-height: 380px;
  }
  .experience-hero__card--main {
    height: 300px;
  }
  .experience-hero__card--top {
    width: 220px;
    height: 160px;
    right: 10px;
  }
  .experience-hero__card--bottom {
    width: 200px;
    height: 150px;
    right: 0;
  }
}
.experience-timeline {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #fdfbf8), color-stop(60%, #faf6f0), to(rgba(193, 142, 58, 0.08)));
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 30%, #faf6f0 60%, rgba(193, 142, 58, 0.08) 100%);
  color: #333;
  padding: 110px 0 120px;
  position: relative;
  overflow: hidden;
}
.experience-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(70% 70% at 20%, at 20%, rgba(193, 142, 58, 0.1), transparent 50%);
  background: radial-gradient(70% 70% at 20% 20%, rgba(193, 142, 58, 0.1), transparent 50%);
  pointer-events: none;
}
.experience-timeline__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 32px;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 1;
}
.experience-timeline__copy {
  grid-column: span 5;
  display: grid;
  grid-gap: 12px;
  gap: 12px;
}
.experience-timeline .eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
  gap: 10px;
  color: #c18e3a;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
}
.experience-timeline .eyebrow::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100px;
  background: #c18e3a;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.experience-timeline h2 {
  font-family: "Industry", sans-serif;
  font-weight: 500;
  font-size: 42px;
  line-height: 1.2;
  color: #1a1a1a;
}
.experience-timeline .lede {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}
.experience-timeline__list {
  grid-column: span 7;
  position: relative;
  padding-left: 18px;
}
.experience-timeline__list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(#c18e3a), to(rgba(255, 210, 0, 0)));
  background: linear-gradient(180deg, #c18e3a, rgba(255, 210, 0, 0));
}
.experience-timeline .xp-step {
  position: relative;
  padding: 16px 16px 16px 24px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(193, 142, 58, 0.2);
  overflow: hidden;
}
.experience-timeline .xp-step__year {
  display: inline-block;
  font-family: "Industry", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #c18e3a;
  margin-bottom: 6px;
}
.experience-timeline .xp-step__content h3 {
  font-family: "Industry", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 6px;
}
.experience-timeline .xp-step__content p {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.experience-timeline .xp-step:hover {
  border-color: rgba(193, 142, 58, 0.4);
  background: rgba(255, 255, 255, 0.9);
}
.experience-timeline .xp-step:hover .xp-step__content h3 {
  color: #c18e3a;
}

@media (max-width: 1024px) {
  .experience-timeline__wrap {
    grid-template-columns: 1fr;
  }
  .experience-timeline__list {
    padding-left: 12px;
  }
}
@media (max-width: 640px) {
  .experience-timeline {
    padding: 40px 0 40px 0;
  }
  .experience-timeline h2 {
    font-size: 34px;
  }
}
.expertise-split {
  position: relative;
}

.expertise-split__top {
  position: relative;
  background: #fff;
  color: #1a1a1a;
  padding: 80px 0 0;
  overflow: visible;
  margin-bottom: 10%;
}

.expertise-split__container {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-gap: 48px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 120px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (max-width: 1199px) {
  .expertise-split__container {
    padding: 0 24px 180px;
  }
}

.expertise-split__list-col {
  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: 0;
  gap: 0;
}

.expertise-split__pill {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  font-family: "Acumin-Pro", sans-serif;
  font-size: 15px;
  color: #999;
  text-align: left;
  cursor: pointer;
  -webkit-transition: color 0.25s ease, border-color 0.25s ease;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.expertise-split__pill:last-child {
  border-bottom: none;
}
.expertise-split__pill:hover {
  color: #1a1a1a;
}
.expertise-split__pill.is-active {
  color: #1a1a1a;
  font-weight: 600;
  border-bottom-color: #c18e3a;
}

.expertise-split__panel {
  display: none;
}
.expertise-split__panel.is-active {
  display: block;
}
.expertise-split__panel .sertifikat-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  grid-gap: 20px;
  gap: 20px;
}
@media (max-width: 1199px) {
  .expertise-split__panel .sertifikat-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .expertise-split__panel .sertifikat-wrap {
    margin-bottom: 0px;
  }
}
.expertise-split__panel .sertifikat-wrap .certificates-image {
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 222px;
}
@media (max-width: 1199px) {
  .expertise-split__panel .sertifikat-wrap .certificates-image {
    display: none;
  }
}
.expertise-split__panel .sertifikat-wrap .left-col,
.expertise-split__panel .sertifikat-wrap .right-col {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.expertise-split__panel .sertifikat-wrap .left-col .tap-hand,
.expertise-split__panel .sertifikat-wrap .right-col .tap-hand {
  display: none;
}
@media (max-width: 1199px) {
  .expertise-split__panel .sertifikat-wrap .left-col .tap-hand,
  .expertise-split__panel .sertifikat-wrap .right-col .tap-hand {
    display: block;
    -webkit-filter: opacity(0.6);
            filter: opacity(0.6);
    width: 30px;
  }
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-1,
.expertise-split__panel .sertifikat-wrap .left-col .iso-2,
.expertise-split__panel .sertifikat-wrap .left-col .iso-3,
.expertise-split__panel .sertifikat-wrap .left-col .iso-4,
.expertise-split__panel .sertifikat-wrap .left-col .iso-5,
.expertise-split__panel .sertifikat-wrap .left-col .iso-6,
.expertise-split__panel .sertifikat-wrap .right-col .iso-1,
.expertise-split__panel .sertifikat-wrap .right-col .iso-2,
.expertise-split__panel .sertifikat-wrap .right-col .iso-3,
.expertise-split__panel .sertifikat-wrap .right-col .iso-4,
.expertise-split__panel .sertifikat-wrap .right-col .iso-5,
.expertise-split__panel .sertifikat-wrap .right-col .iso-6 {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-1 a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-2 a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-3 a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-4 a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-5 a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-6 a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-1 a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-2 a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-3 a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-4 a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-5 a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-6 a {
  color: black;
  text-decoration: none;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-1 .certificate,
.expertise-split__panel .sertifikat-wrap .left-col .iso-2 .certificate,
.expertise-split__panel .sertifikat-wrap .left-col .iso-3 .certificate,
.expertise-split__panel .sertifikat-wrap .left-col .iso-4 .certificate,
.expertise-split__panel .sertifikat-wrap .left-col .iso-5 .certificate,
.expertise-split__panel .sertifikat-wrap .left-col .iso-6 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-1 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-2 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-3 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-4 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-5 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-6 .certificate {
  font-size: 11px;
  font-weight: 300;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-1 .certificate span,
.expertise-split__panel .sertifikat-wrap .left-col .iso-2 .certificate span,
.expertise-split__panel .sertifikat-wrap .left-col .iso-3 .certificate span,
.expertise-split__panel .sertifikat-wrap .left-col .iso-4 .certificate span,
.expertise-split__panel .sertifikat-wrap .left-col .iso-5 .certificate span,
.expertise-split__panel .sertifikat-wrap .left-col .iso-6 .certificate span,
.expertise-split__panel .sertifikat-wrap .right-col .iso-1 .certificate span,
.expertise-split__panel .sertifikat-wrap .right-col .iso-2 .certificate span,
.expertise-split__panel .sertifikat-wrap .right-col .iso-3 .certificate span,
.expertise-split__panel .sertifikat-wrap .right-col .iso-4 .certificate span,
.expertise-split__panel .sertifikat-wrap .right-col .iso-5 .certificate span,
.expertise-split__panel .sertifikat-wrap .right-col .iso-6 .certificate span {
  display: block;
  font-weight: 700;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-1:hover,
.expertise-split__panel .sertifikat-wrap .left-col .iso-2:hover,
.expertise-split__panel .sertifikat-wrap .left-col .iso-3:hover,
.expertise-split__panel .sertifikat-wrap .left-col .iso-4:hover,
.expertise-split__panel .sertifikat-wrap .left-col .iso-5:hover,
.expertise-split__panel .sertifikat-wrap .left-col .iso-6:hover,
.expertise-split__panel .sertifikat-wrap .right-col .iso-1:hover,
.expertise-split__panel .sertifikat-wrap .right-col .iso-2:hover,
.expertise-split__panel .sertifikat-wrap .right-col .iso-3:hover,
.expertise-split__panel .sertifikat-wrap .right-col .iso-4:hover,
.expertise-split__panel .sertifikat-wrap .right-col .iso-5:hover,
.expertise-split__panel .sertifikat-wrap .right-col .iso-6:hover {
  border-radius: 4px;
  background-color: #c18e3a;
  color: #fff;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-1:hover a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-2:hover a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-3:hover a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-4:hover a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-5:hover a,
.expertise-split__panel .sertifikat-wrap .left-col .iso-6:hover a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-1:hover a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-2:hover a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-3:hover a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-4:hover a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-5:hover a,
.expertise-split__panel .sertifikat-wrap .right-col .iso-6:hover a {
  color: white;
}
@media (max-width: 1199px) {
  .expertise-split__panel .sertifikat-wrap .left-col .iso-1 > div,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-2 > div,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-3 > div,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-4 > div,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-5 > div,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-6 > div,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-1 > div,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-2 > div,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-3 > div,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-4 > div,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-5 > div,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-6 > div {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media (max-width: 1199px) {
  .expertise-split__panel .sertifikat-wrap .left-col .iso-1,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-2,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-3,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-4,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-5,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-6,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-1,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-2,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-3,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-4,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-5,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-6 {
    width: 100%;
    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;
  }
  .expertise-split__panel .sertifikat-wrap .left-col .iso-1 .certificate,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-2 .certificate,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-3 .certificate,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-4 .certificate,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-5 .certificate,
  .expertise-split__panel .sertifikat-wrap .left-col .iso-6 .certificate,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-1 .certificate,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-2 .certificate,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-3 .certificate,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-4 .certificate,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-5 .certificate,
  .expertise-split__panel .sertifikat-wrap .right-col .iso-6 .certificate {
    position: static;
    font-size: 13px;
  }
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-1,
.expertise-split__panel .sertifikat-wrap .right-col .iso-1 {
  position: relative;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-1 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-1 .certificate {
  bottom: 21%;
  right: -38%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-1 .certificate.eng,
.expertise-split__panel .sertifikat-wrap .right-col .iso-1 .certificate.eng {
  right: -47%;
  bottom: 0%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-2,
.expertise-split__panel .sertifikat-wrap .right-col .iso-2 {
  position: relative;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-2 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-2 .certificate {
  bottom: 32%;
  right: -37%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-2 .certificate.eng,
.expertise-split__panel .sertifikat-wrap .right-col .iso-2 .certificate.eng {
  right: -46%;
  bottom: -20%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-3,
.expertise-split__panel .sertifikat-wrap .right-col .iso-3 {
  position: relative;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-3 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-3 .certificate {
  bottom: 45%;
  right: -41%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-3 .certificate.eng,
.expertise-split__panel .sertifikat-wrap .right-col .iso-3 .certificate.eng {
  right: -39%;
  bottom: -5%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-4,
.expertise-split__panel .sertifikat-wrap .right-col .iso-4 {
  position: relative;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-4 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-4 .certificate {
  bottom: 17%;
  left: -31%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-4 .certificate.eng,
.expertise-split__panel .sertifikat-wrap .right-col .iso-4 .certificate.eng {
  bottom: 5%;
  left: -40%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-5,
.expertise-split__panel .sertifikat-wrap .right-col .iso-5 {
  position: relative;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-5 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-5 .certificate {
  bottom: 26%;
  left: -31%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-5 .certificate.eng,
.expertise-split__panel .sertifikat-wrap .right-col .iso-5 .certificate.eng {
  bottom: -17%;
  left: -41%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-6,
.expertise-split__panel .sertifikat-wrap .right-col .iso-6 {
  position: relative;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-6 .certificate,
.expertise-split__panel .sertifikat-wrap .right-col .iso-6 .certificate {
  bottom: 38%;
  left: -29%;
}
.expertise-split__panel .sertifikat-wrap .left-col .iso-6 .certificate.eng,
.expertise-split__panel .sertifikat-wrap .right-col .iso-6 .certificate.eng {
  bottom: -1%;
  left: -29%;
}
.expertise-split__panel .sertifikat-wrap .left-col {
  grid-row-gap: 37px;
  row-gap: 37px;
}
.expertise-split__panel .sertifikat-wrap .left-col p {
  text-align: right;
}
@media (max-width: 1199px) {
  .expertise-split__panel .sertifikat-wrap .left-col p {
    text-align: left;
  }
}
.expertise-split__panel .sertifikat-wrap .left-col > div {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-weight: 300;
  padding: 21px;
  -webkit-box-shadow: 0 0 30px -10px rgba(134, 158, 179, 0.3);
          box-shadow: 0 0 30px -10px rgba(134, 158, 179, 0.3);
}
.expertise-split__panel .sertifikat-wrap .right-col {
  grid-row-gap: 37px;
  row-gap: 37px;
}
.expertise-split__panel .sertifikat-wrap .right-col p {
  text-align: left;
}
.expertise-split__panel .sertifikat-wrap .right-col > div {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  font-weight: 300;
  padding: 20px;
  -webkit-box-shadow: 0 0 30px -10px rgba(134, 158, 179, 0.3);
          box-shadow: 0 0 30px -10px rgba(134, 158, 179, 0.3);
}

.expertise-split__heading {
  font-family: "Industry", sans-serif;
  font-size: 50px;
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.expertise-split__text {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin: 0;
  max-width: 1000px;
  word-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.expertise-split__image-wrap img {
  right: 0;
  bottom: 0;
  width: calc(50% + 450px);
  height: 680px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: -419px;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .expertise-split__image-wrap img {
    height: unset;
  }
}
@media (max-width: 767px) {
  .expertise-split__image-wrap img {
    width: 100%;
    margin-top: unset;
  }
}
@media (min-width: 1280px) {
  .expertise-split__image-wrap {
    left: 46%;
    bottom: -160px;
  }
}

.expertise-split__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  z-index: -1;
}

.expertise-split__bottom {
  background: #5a636e;
  color: #fff;
  padding: 180px 0 80px;
  margin-top: 0px;
}
@media (max-width: 767px) {
  .expertise-split__bottom {
    padding-bottom: 40px;
  }
}

.expertise-split__quote-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.expertise-split__quote {
  font-family: "Acumin-Pro", sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 20px;
  color: #fff;
  font-style: normal;
}

.expertise-split__cite {
  display: block;
  font-family: "Acumin-Pro", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

@media (max-width: 991px) {
  .expertise-split__container {
    grid-template-columns: 1fr;
    grid-gap: 32px;
    gap: 32px;
    padding-bottom: 320px;
  }
  .expertise-split__list-col {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-gap: 8px 16px;
    gap: 8px 16px;
  }
  .expertise-split__pill {
    width: auto;
    border-bottom: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    background: #f0f0f0;
  }
  .expertise-split__pill.is-active {
    background: #c18e3a;
    font-weight: 400;
    color: #fff;
    border-bottom-color: transparent;
  }
  .expertise-split__pill:hover {
    color: #1a1a1a;
  }
  .expertise-split__pill.is-active:hover {
    color: #fff;
  }
  .expertise-split__image-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
    bottom: 0;
  }
  .expertise-split__image-wrap img {
    margin-bottom: 20px;
  }
  .expertise-split__quote {
    word-wrap: break-word;
    word-break: break-word;
  }
  .expertise-split__bottom {
    padding: 50px 0 80px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .expertise-split__top {
    padding: 60px 0 0;
  }
  .expertise-split__container {
    padding: 0 20px 0px;
  }
  .expertise-split__heading {
    font-size: 42px;
  }
  .expertise-split__text {
    font-size: 16px;
  }
}
.solutions-hero {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(30%, #fdfbf8), color-stop(60%, #faf6f0), to(rgba(193, 142, 58, 0.08)));
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf8 30%, #faf6f0 60%, rgba(193, 142, 58, 0.08) 100%);
  color: #333;
  padding: 120px 0;
}
@media (max-width: 1199px) {
  .solutions-hero {
    padding-left: 24px;
    padding-right: 24px;
  }
}
.solutions-hero__wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 40px;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.solutions-hero__text {
  grid-column: span 6;
}
.solutions-hero .eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
  gap: 10px;
  color: #c18e3a;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 30px;
}
.solutions-hero .eyebrow::after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100px;
  background: #c18e3a;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.solutions-hero h2 {
  font-family: "Industry", sans-serif;
  font-weight: 500;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #1a1a1a;
}
@media (max-width: 767px) {
  .solutions-hero h2 {
    font-size: 34px;
  }
}
.solutions-hero .lede {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 620px;
  margin-bottom: 22px;
}
.solutions-hero__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
  gap: 8px;
  color: #c18e3a;
  font-family: "Acumin-Pro", sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}
.solutions-hero__gallery {
  grid-column: span 6;
  position: relative;
  min-height: 520px;
}
.solutions-hero__img {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  -webkit-box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
          box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  -webkit-transition: -webkit-transform 0.45s ease, -webkit-box-shadow 0.45s ease, -webkit-filter 0.45s ease;
  transition: -webkit-transform 0.45s ease, -webkit-box-shadow 0.45s ease, -webkit-filter 0.45s ease;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease, -webkit-transform 0.45s ease, -webkit-box-shadow 0.45s ease, -webkit-filter 0.45s ease;
}
.solutions-hero__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
  -webkit-transition: -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  transition: -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
  transition: transform 0.45s ease, filter 0.45s ease;
  transition: transform 0.45s ease, filter 0.45s ease, -webkit-transform 0.45s ease, -webkit-filter 0.45s ease;
}
.solutions-hero__img--large {
  top: 70px;
  left: 0;
  width: 100%;
  height: 430px;
  z-index: 10;
}
.solutions-hero__img--top {
  top: -80px;
  right: -65px;
  width: 326px;
  height: 244px;
}
@media (max-width: 1199px) {
  .solutions-hero__img--top {
    right: 0;
  }
}
.solutions-hero__img--bottom {
  bottom: -60px;
  right: 80px;
  width: 263px;
  height: 197px;
  z-index: 20;
}
.solutions-hero__img:hover, .solutions-hero__img:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-filter: saturate(1.05);
          filter: saturate(1.05);
  -webkit-box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
          box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1024px) {
  .solutions-hero__wrap {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    gap: 20px;
  }
  .solutions-hero__gallery {
    min-height: 420px;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .solutions-hero__img--large {
    height: 250px;
  }
}
@media (max-width: 991px) {
  .solutions-hero__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .solutions-hero__img--top {
    right: 0%;
  }
}
@media (max-width: 767px) {
  .solutions-hero {
    padding: 0px 10px 40px 10px;
  }
  .solutions-hero__img {
    border-radius: 6px;
  }
  .solutions-hero__gallery {
    min-height: 340px;
  }
  .solutions-hero__img--top {
    right: 10px;
    top: 10px;
    width: 160px;
    height: 120px;
    z-index: 20;
    border-radius: 6px;
  }
  .solutions-hero__img--bottom {
    display: none;
  }
}
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

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

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow.focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page.focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide.focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide.focus-visible {
    border: 3px solid #0bf;
  }
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle.focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*# sourceMappingURL=front-page.css.map*/