@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;
  }
}
.contact-page {
  background: #f5f5f5;
  min-height: 100vh;
  padding-bottom: 0;
}

.contact-hero {
  position: relative;
  padding: 260px 0 200px;
  overflow: hidden;
  min-height: 600px;
  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;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
}
.contact-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.contact-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.4)), color-stop(50%, rgba(0, 0, 0, 0.55)), to(rgba(0, 0, 0, 0.65)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 2;
}
.contact-hero__container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-hero__title-wrap {
  display: inline-block;
  margin-bottom: 16px;
  position: relative;
}

.contact-hero__title {
  position: relative;
  font-family: "Industry", sans-serif;
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding-bottom: 0px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.contact-hero__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#c18e3a), to(#c9a227));
  background: linear-gradient(90deg, #c18e3a, #c9a227);
  border-radius: 2px;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-animation: contact-title-border 2s ease-out forwards;
          animation: contact-title-border 2s ease-out forwards;
}

@-webkit-keyframes contact-title-border {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes contact-title-border {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.contact-hero__subtitle {
  font-family: "Acumin-Pro", sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  line-height: 1.5;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.contact-main {
  background: #fff;
  max-width: 1200px;
  margin: -140px auto 100px;
  padding: 56px 24px 80px;
  position: relative;
  z-index: 4;
  border-radius: 8px;
  -webkit-box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
          box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.1), 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-main__container {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 56px;
  gap: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.contact-info__title {
  font-family: "Industry", sans-serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.contact-info__intro {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 32px;
}

.contact-info__blocks {
  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: 24px;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 16px;
  gap: 16px;
}

.contact-info__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #c18e3a;
  color: #fff;
  border-radius: 50%;
}

.contact-info__icon svg {
  width: 24px;
  height: 24px;
}

.contact-info__content {
  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: 4px;
  gap: 4px;
}

.contact-info__label {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  display: block;
}

.contact-info__text {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  display: block;
}

.contact-social__title {
  font-family: "Acumin-Pro", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  display: block;
  margin-bottom: 12px;
}

.contact-social__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 12px;
  gap: 12px;
}

.contact-social__link {
  width: 44px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #c18e3a;
  color: #fff;
  border-radius: 50%;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.contact-social__link:hover {
  background: #a8762e;
  color: #fff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.contact-social__link svg {
  width: 20px;
  height: 20px;
}

.files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-column-gap: 30px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-top: 50px;
  padding: 20px;
  border: 1px dashed #c18e3a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.files a {
  text-decoration: none;
  font-weight: 300;
  font-family: "Acumin-Pro", sans-serif;
  font-size: 14px;
}
.files p {
  margin-top: 10px;
  letter-spacing: 2px;
  color: #c18e3a;
}
.files svg {
  color: #c18e3a;
  width: 40px;
  height: 40px;
}

.contact-form-wrap__title {
  font-family: "Industry", sans-serif;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px;
  line-height: 1.2;
}

.contact-form {
  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: 20px;
  gap: 20px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}

.contact-form__field {
  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: 6px;
  gap: 6px;
}
.contact-form__field.is-error .contact-form__input, .contact-form__field.is-error .contact-form__textarea {
  border-color: #c53030;
}
.contact-form__field.is-error .contact-form__input:focus, .contact-form__field.is-error .contact-form__textarea:focus {
  border-color: #c53030;
}

.contact-form__field-error {
  font-size: 13px;
  color: #c53030;
  font-family: "Acumin-Pro", sans-serif;
  min-height: 1.2em;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  font-family: "Acumin-Pro", sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
  color: #888;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #888;
}
.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  color: #888;
}
.contact-form__input::-ms-input-placeholder, .contact-form__textarea::-ms-input-placeholder {
  color: #888;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #888;
}
.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #c18e3a;
}

.contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__submit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-gap: 12px;
  gap: 12px;
}

.contact-form__submit {
  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;
  grid-gap: 10px;
  gap: 10px;
  width: 100%;
  font-family: "Acumin-Pro", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #c18e3a;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  cursor: pointer;
  -webkit-transition: background 0.2s ease, opacity 0.2s ease;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.contact-form__submit:hover:not(:disabled) {
  background: #a8762e;
}
.contact-form__submit:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}

.contact-form__spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  -webkit-animation: contact-spin 0.7s linear infinite;
          animation: contact-spin 0.7s linear infinite;
  display: none;
}
.contact-form__spinner.show {
  display: inline-block;
}

.contact-form__feedback {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 8px;
  font-family: "Acumin-Pro", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.contact-form__feedback--success {
  background: rgba(72, 187, 120, 0.15);
  color: #276749;
  border: 1px solid rgba(72, 187, 120, 0.4);
}
.contact-form__feedback--error {
  background: rgba(197, 48, 48, 0.08);
  color: #c53030;
  border: 1px solid rgba(197, 48, 48, 0.3);
}

@-webkit-keyframes contact-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes contact-spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-map {
  width: 100%;
  height: 600px;
  background: #e8e8e8;
}

.contact-map__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-map__wrapper iframe,
.contact-map__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 991px) {
  .contact-hero {
    padding: 200px 0 140px;
    min-height: 480px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }
  .contact-main {
    margin-top: -100px;
    padding: 40px 24px 60px;
    border-radius: 20px 20px 0 0;
  }
  .contact-main__grid {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    gap: 40px;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact-map {
    height: 480px;
  }
}
@media (max-width: 640px) {
  .contact-hero {
    padding: 160px 0 120px;
    min-height: 400px;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }
  .contact-main {
    margin-top: -72px;
    padding: 32px 16px 48px;
    border-radius: 16px 16px 0 0;
  }
  .contact-main__container {
    padding: 0;
  }
  .contact-info__intro {
    margin-bottom: 24px;
  }
  .contact-info__blocks {
    grid-gap: 20px;
    gap: 20px;
    margin-bottom: 24px;
  }
  .contact-info__icon {
    width: 44px;
    height: 44px;
  }
  .contact-info__icon svg {
    width: 22px;
    height: 22px;
  }
  .contact-map {
    height: 400px;
  }
}

/*# sourceMappingURL=contact.css.map*/