:root {
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-heading-color: ;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
  --primary-color: #76af46;
  --secondary-color: #005d98;
  --primary-font: 'Poppins', sans-serif;
  --marquee-width: 80vw;
  --marquee-height: 20vh;
  --marquee-elements-displayed: 5;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}
.fs-14-12{
    font-size: clamp(0.75rem, 0.6631rem + 0.2421vw, 0.875rem) !important;
}
.bg-transparent {
    background-color: transparent !important;
}
.bg-white {
    background-color: #fff !important;
}
.bg-secondary {
    background-color: var(--secondary-color) !important;
}
.border-secondary {
    border-color: var(--secondary-color) !important;
}
.border-white {
    border-color: #fff !important;
}
.text-secondary {
    color: var(--secondary-color) !important;
}
.text-primary {
    color: var(--primary-color) !important;
}
.before\:bg-secondary:before{
    background-color: var(--secondary-color) !important;
}
.before\:bg-primary:before{
    background-color: var(--primary-color) !important;
}
.hov-border-secondary:hover{
    border-color: var(--secondary-color) !important;
}
.hov-border-primary:hover{
    border-color: var(--primary-color) !important;
}
.hov-text-white:hover{
    color: #fff !important;
}
.hov-text-primary:hover{
    color: var(--primary-color) !important;
}
.hov-text-secondary:hover{
    color: var(--secondary-color) !important;
}
.noscroll{
  overflow: hidden;
  padding-right: 17px;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 1.5rem;
  --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: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  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 > * {
  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 {
  flex: 1 0 0%;
}
.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}
.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}
.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}
.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}
.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}
.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.offset-1 {
  margin-left: 8.33333333%;
}
.offset-2 {
  margin-left: 16.66666667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333333%;
}
.offset-5 {
  margin-left: 41.66666667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333333%;
}
.offset-8 {
  margin-left: 66.66666667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333333%;
}
.offset-11 {
  margin-left: 91.66666667%;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}
.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}
.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}
.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}
.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}
.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}
.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}
.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}
.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}
.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}
@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background: rgb(0 0 0 / 50%);
}
.modal.show{
  display: block;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: 0;
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(var(--bs-modal-header-padding-y) * -0.5) calc(var(--bs-modal-header-padding-x) * -0.5) calc(var(--bs-modal-header-padding-y) * -0.5) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
  margin: 0;
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }

  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.float-start {
  float: left !important;
}
.float-end {
  float: right !important;
}
.float-none {
  float: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-last {
  order: 6 !important;
}
.m-0 {
  margin: 0 !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}
.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}
@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }
  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }
  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
* {
	padding: 0;
	margin: 0 auto;
	box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
body {
	font-family: var(--primary-font);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
}
.btn-primary {
  display: inline-block;
	font-size: 16px;
	font-weight: 500;
	padding: 15px 30px;
	text-transform: uppercase;
	background-color: var(--primary-color);
	border: 2px solid var(--primary-color);
	color: #fff;
  cursor: pointer;
	position: relative;
	border-radius: 8px;
  text-decoration: none;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.btn-primary::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
  border-radius: 6px;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:active:focus {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
	color: var(--primary-color);
	box-shadow: none;
	outline: none;
}

.btn-primary:hover::before,
.btn-primary:active::before,
.btn-primary:focus::before,
.btn-primary:active:focus::before{
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
	transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.header_top {
	background-color: var(--secondary-color);
	background-color: #295028;
	color: #fff;
	padding: 10px 0;
}

.header_top .wrapper {
	font-weight: 300;
}

.header_top .wrapper>* {
	margin: 0;
}

.vertical_slider_wrapper {
}

.vertical_content_slide {
}

.vertical_content_slide ul {
	height: 21px;
	overflow: hidden;
	padding: 0;
	margin: 0;
	list-style: none;
}

.vertical_content_slide li {
	position: relative;
	font-size: 14px;
	line-height: 1.5;
	white-space: nowrap;
	-webkit-transition: .3s all ease;
	transition: .3s all ease;
}

.vertical_content_slide li i {
	margin-right: 0.5rem;
}

.marquee_wrapper {
}

.marquee_wrapper .marquee_text_wrapper {
	width: 100%;
	overflow: hidden;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text {
	margin: 0 auto;
	white-space: nowrap;
	box-sizing: border-box;
	animation: marquee 50s linear infinite;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text li {
	display: initial;
	text-align: center;
	width: var(--marquee-element-width);
	margin-right: 12px;
	font-size: 14px;
	line-height: 1.5;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text li span {
	margin-left: 7px;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text:hover {
	animation-play-state: paused;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text:hover li {
	-webkit-filter: blur(3px);
	filter: blur(3px);
	-webkit-transition: all ease-in 0.5s;
	transition: all ease-in 0.5s;
}

.marquee_wrapper .marquee_text_wrapper .marquee_text li:hover {
	-webkit-filter: blur(0px);
	filter: blur(0px);
	-webkit-transition: all ease-in 0.5s;
	transition: all ease-in 0.5s;
}

@keyframes marquee {
	0% {
		text-indent: 27.5em;
	}

	100% {
		text-indent: -105em;
	}
}

.header_top .soacial_wrapper {
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.header_top .social_links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
}

.header_top .social_links li {
	margin: 0;
	font-size: 14px;
	width: 25px;
	height: 25px;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header_top .social_links li a {
	color: #fff;
}
.pageHeaderTopStart{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    height: 100%;
}
.pageHeaderTopInfo{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    margin: 0;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
}
.pageHeaderTopInfo i{}
.pageHeaderTopInfo:hover{
    color: var(--primary-color);
}

header .navbar-expand-lg {
	padding: 10px 0;
	background-color: #fff;
	-webkit-box-shadow: 0 1px 3px 0px rgb(0 0 0 / 50%);
	box-shadow: 0 1px 3px 0px rgb(0 0 0 / 50%);
}

header .navbar-brand {
	margin: 0;
	padding: 0;
}

header .navbar-brand img {
	width: 154px;
	height: 70px;
}
header .pageNav{
    margin: 0;
}
header .pageNavBody{
    display: flex;
    flex-grow: 1;
    padding: 12px;
    overflow-y: auto;
}
header .navBarNav{
    list-style: none;
    margin: 0;
}
header .navBarNav>li{
    display: flex;
    align-items: center;
}
header .navBarNav .dropdown{
    position: relative;
}
header .navBarNav>li>a{
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
header .navBarNav>li>a,
header .navBarNav>li>button{    
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.5s linear;
    transition: 0.5s linear;
}
header .navBarNav>li>button .fa-chevron-down {
    margin-left: 0.25rem;
    font-size: 10px;
    vertical-align: middle;
}
header .navBarNav .dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #fff;
    width: 16rem;
    overflow: auto;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .2);
    z-index: 999;
}
header .navBarNav .dropdown .dropdown-content a {
    color: #000;
    font-size: 14px;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    -webkit-transition: .3s;
    transition: .3s;
}
header .navBarNav .dropdown .dropdown-content a~a {
    border-top: 1px solid #ddd;
}
header .navBarNav .dropdown .dropdown-content a:hover {
    background-color: var(--primary-color);
    color: #fff;
}
header .navBarNav .dropdown .dropdown-content.show {
    display: block;
}
.pageNavConsultBlock{
    display: inline-flex;
    align-items: center;
}
header .navbar-toggler, header .navbar-toggler:focus {
	background-color: var(--primary-color);
	box-shadow: none;
	outline: none;
}

header .navbar-toggler span {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

header .navbar-collapse {
	justify-content: flex-end;
}

header .navbar-expand-lg .navbar-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

header .navbar-expand-lg .navbar-nav li {
	margin-left: 30px;
}

header .navbar-expand-lg .navbar-nav li:first-child {
	margin-left: 0;
}

header .navbar-expand-lg .navbar-nav li a {
	text-decoration: none;
	color: #000;
	-ms-transition: all ease-in 0.3s;
	-moz-transition: all ease-in 0.3s;
	-webkit-transition: all ease-in 0.3s;
	transition: all ease-in 0.3s;
}

header .navbar-expand-lg .navbar-nav li i {
	display: inline-block;
	margin-right: 10px;
	color: var(--primary-color);
	-ms-transition: all ease-in 0.3s;
	-moz-transition: all ease-in 0.3s;
	-webkit-transition: all ease-in 0.3s;
	transition: all ease-in 0.3s;
	vertical-align: middle;
}
header .navbar-expand-lg .navbar-nav li a:hover {
	color: var(--primary-color);
}
header .navbar-expand-lg .navbar-nav .btn-primary {
	color: #fff;
}
header .navbar-expand-lg .navbar-nav .btn-primary i{
  color: inherit;
}
header .navbar-expand-lg .navbar-nav .btn-primary:hover {
	color: var(--primary-color);
}
.mainBannerParent__wr{
  position: relative;
}
.banner_sec{
	position: relative;
}
/*.banner_sec::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgb(33 37 41 / 60%);
	z-index: 0;
}*/
.banner_sec .image_wrapper{
  position: absolute;
  inset: 0;
  display: flex;
}
.banner_sec .image_wrapper::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgb(33 37 41 / 60%);
  z-index: 1;
}
.banner_sec .image_wrapper img{
  -webkit-filter: blur(5px);
  filter: blur(5px);
}
.banner_sec .content_wrapper{
  position: relative;
  /*left: 0;
  right: 0;
  bottom: 0;
  top: 0;*/
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 48px;
  /*display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;*/
}
.banner_sec .content_wrapper>.row>[class*=col-]{
  margin: 0;
}
.banner_sec .banner_content {
	position: relative;
}
.banner_sec .banner_content .banner_title {
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
  margin-bottom: 1rem;
}
.banner_sec .banner_content p {
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	line-height: 1.5;
}
.banner_sec .banner_content .heighlight{
  display: block;
  background: #76af46;
  padding: 5px 15px;
  margin-bottom: 32px;
  border-radius: 10px;
  word-break: break-word;
}
.banner_sec .banner_content .heighlight strong{
  font-size: 110%;
}
.banner_sec .banner_content ul {
	padding: 0;
	list-style: none;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.banner_sec .banner_content ul li {
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 15px;
	width: 50%;
}

.banner_sec .banner_content ul li .icon {
	width: 40px;
	margin: 0;
	margin-right: 15px;
}

.banner_sec .banner_content ul li p {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
}
.banner_form_wrapper{
  padding: 0;
  background-color: #f2f5fa;
}
.banner_form_wrapper .banner_form{
  position: relative;
  background: #fff;
  border-radius: 12px 12px 10px 10px;
  padding-bottom: 24px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.banner_form_wrapper .sec_head{
  padding: 24px 24px;
  border-radius: 10px 10px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 -24px 1rem;
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
}
.banner_form_wrapper .sec_head .title{
  font-size: 18px;
}
.banner_form_wrapper form {
	text-align: center;
  font-family: var(--primary-font);
}
.banner_form_wrapper form .btn-primary {
	width: 100%;
}

form input.form-control, form textarea.form-control {
  display: block;
  width: 100%;
	padding: 15px;
	height: auto;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	color: #848484;
	background-color: #fff;
	border-radius: 0;
	border: 1px solid #c5c5c5;
	box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: var(--primary-font);
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

form textarea.form-control {
	height: 120px;
	resize: none;
}

form input.form-control::-webkit-input-placeholder, form textarea.form-control::-webkit-input-placeholder {
	color: #848484;
}

form input.form-control::-moz-placeholder, form textarea.form-control::-moz-placeholder {
	color: #848484;
}

form input.form-control:-ms-input-placeholder, form textarea.form-control:-ms-input-placeholder {
	color: #848484;
}

form input.form-control:-moz-placeholder, form textarea.form-control:-moz-placeholder {
	color: #848484;
}

.form-control:focus, 
form input.form-control:focus, 
form input.form-control:focus-visible, 
form textarea.form-control:focus,
form textarea.form-control:focus-visible {
	border-color: var(--primary-color);
  outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.what_wedo_sec {
	padding: 40px 0 0;
	background: #f4f7fc;
}

.what_wedo_sec .content_block {
	padding: 50px 40px;
	position: relative;
	text-align: left;
}

.what_wedo_sec .content_block::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	margin: 0 auto;
	z-index: 1;
}

.what_wedo_sec .content_block::after {
	content: "";
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	margin: 0 auto;
	z-index: 2;
}

.what_wedo_sec .content_block .block_title {
	position: relative;
	color: #fff;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.2;
	padding: 0 0 24px;
}

.what_wedo_sec .content_block .block_title::before, .what_wedo_sec .content_block .block_title::after {
	content: "";
	position: absolute;
	left: 0;
	right: auto;
	margin: 0 auto;
	border-radius: 4px;
	height: 4px;
}

.what_wedo_sec .content_block .block_title::before {
	top: auto;
	bottom: 10px;
	width: 148px;
	background-color: var(--secondary-color);
}

.what_wedo_sec .content_block .block_title::after {
	top: auto;
	bottom: 0;
	width: 48px;
	background-color: var(--primary-color);
}

.what_wedo_sec .content_block p{
	font-size: 16px;
	color: #fff;
	line-height: 1.5;
  margin-bottom: 1rem;
}

.what_wedo_sec .content_block ul {
	list-style: disc;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.what_wedo_sec .content_block ul li {
  font-size: 16px;
  color: #fff;
	margin-bottom: 0.5rem;
	text-align: left;
}

/*.what_wedo_sec .content_block ul li::before {
	content: "";
	width: 5px;
	height: 5px;
	background: #fff;
	border-radius: 50%;
	display: inline-block;
	margin-right: 1rem;
	vertical-align: middle;
}*/

.what_wedo_sec .image_block .image_wrapper {
	display: flex;
	height: 100%;
}

.what_wedo_sec .row:nth-child(2) .image_block {
	margin-top: 40px;
}

.what_wedo_sec .row.flex-lg-row .content_block {
	background-color: var(--primary-color);
	background-image: url("../images/black-mamba.png");
}

.what_wedo_sec .row.flex-lg-row-reverse .content_block {
	background-color: var(--secondary-color);
	background-image: url("../images/climpek.png");
}

.what_wedo_sec .row.flex-lg-row .content_block .block_title::after, .what_wedo_sec .row.flex-lg-row-reverse .content_block .block_title::before {
	background-color: #fff;
}

.what_wedo_sec .row.flex-lg-row .content_block .btn-primary {
	background-color: var(--secondary-color);
	border-color: var(--secondary-color);
}

.what_wedo_sec .row.flex-lg-row .content_block .btn-primary:hover, .what_wedo_sec .row.flex-lg-row .content_block .btn-primary:active, .what_wedo_sec .row.flex-lg-row .content_block .btn-primary:focus, .what_wedo_sec .row.flex-lg-row .content_block .btn-primary:active:focus {
	color: var(--secondary-color);
}

.what_wedo_sec .row.flex-lg-row .content_block::before {
	border-bottom: 50px solid var(--primary-color);
}

.what_wedo_sec .row.flex-lg-row-reverse .content_block::before {
	border-bottom: 50px solid var(--secondary-color);
}

.what_wedo_sec .row.flex-lg-row .content_block::after {
	border-bottom: 50px solid rgba(0,0,0,0.5);
	-webkit-mask-image: url("../images/black-mamba.png");
	mask-image: url("../images/black-mamba.png");
	-webkit-mask-repeat: repeat;
	mask-repeat: repeat;
}

.what_wedo_sec .row.flex-lg-row-reverse .content_block::after {
	border-bottom: 50px solid rgba(255,255,255,0.5);
	-webkit-mask-image: url("../images/climpek.png");
	mask-image: url("../images/climpek.png");
	-webkit-mask-repeat: repeat;
	mask-repeat: repeat;
}

.about_sec {
	padding: 40px 0 40px;
	background: #f4f7fc;
	text-align: left;
}

.about_sec .about_content_block {
	margin-bottom: 40px;
}

.about_sec .about_content_block .block_title {
	position: relative;
	color: #000;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.2;
	padding: 0 0 1.5rem;
  margin-bottom: 1rem;
}
.about_sec .about_content_block p{
  margin-bottom: 1rem;
}
.about_sec .about_content_block p:last-child{
  margin-bottom: 0;
}
.about_sec .about_content_block .block_title::before, .about_sec .about_content_block .block_title::after {
	content: "";
	position: absolute;
	left: 0;
	right: auto;
	margin: 0 auto;
	border-radius: 4px;
	height: 4px;
}

.about_sec .about_content_block .block_title::before {
	top: auto;
	bottom: 10px;
	width: 148px;
	background-color: var(--secondary-color);
}

.about_sec .about_content_block .block_title::after {
	width: 48px;
	bottom: 0;
	top: auto;
	background-color: var(--primary-color);
}

.about_sec .about_content_block p {
	font-size: 16px;
	color: #000;
	line-height: 1.5;
}

.about_sec .image_block {
	display: block;
	margin-bottom: 2rem;
	overflow: hidden;
	position: relative;
	;
}

.about_sec .image_block img {
	-o-transition: all ease-in 0.5s;
	-ms-transition: all ease-in 0.5s;
	-moz-transition: all ease-in 0.5s;
	-webkit-transition: all ease-in 0.5s;
	transition: all ease-in 0.5s;
}

.about_sec .image_block:hover img {
	transform: scale(1.05);
}

.about_sec .content_block {
	position: relative;
	display: block;
	background: #fff;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
	border-radius: 10px;
	padding: 30px;
}

.about_sec .content_block .sec_head {
	margin-bottom: 1rem;
}

.about_sec .content_block .sec_head .icon {
	width: 65px;
	height: 65px;
	display: block;
	margin: 0 0 1rem;
}

.about_sec .content_block .sec_head .title {
	position: relative;
	color: #000;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.2;
	padding: 0 0 1.5rem;
  margin-bottom: 1rem;
}

.about_sec .content_block .sec_head .title::before, .about_sec .content_block .sec_head .title::after {
	content: "";
	position: absolute;
	left: 0;
	right: auto;
	margin: 0 auto;
	border-radius: 4px;
	height: 4px;
}

.about_sec .content_block .sec_head .title::before {
	bottom: 10px;
	width: 148px;
	background-color: var(--secondary-color);
}

.about_sec .content_block .sec_head .title::after {
	width: 48px;
	bottom: 0;
	background-color: var(--primary-color);
}

.about_sec .content_block p {
	font-size: 16px;
	color: #000;
	line-height: 1.5;
}

.about_sec .lower_content .content_block {
	margin-top: 2rem;
}

.certified_sec {
	padding: 40px 0;
	text-align: center;
  position: relative;
  /*background-size: cover;
  background-repeat: no-repeat;*/ 
  /*background-position: center center;*/
}
.certified_sec .overlayBgFigure__wr {
    position: absolute;
    inset: 0;
    display: flex;
    overflow: hidden;
}
.certified_sec .overlayBgFigure__wr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
}
.certified_sec .container{
    position: relative;
}
.certified_sec .sec_head {
	padding: 30px;
	border: 5px solid var(--primary-color);
	margin: 0 0 30px;
}

.certified_sec .sec_head .title {
	position: relative;
  text-align: center;
	color: #000;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.2;
	padding: 0 0 24px;
	margin: 0;
}

.certified_sec .sec_head .title span {
	font-weight: 700;
}

.certified_sec .sec_head .title::before, .certified_sec .sec_head .title::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-radius: 4px;
	height: 4px;
}

.certified_sec .sec_head .title::before {
	top: auto;
	bottom: 10px;
	width: 148px;
	background-color: var(--secondary-color);
}

.certified_sec .sec_head .title::after {
	top: auto;
	bottom: 0;
	width: 48px;
	background-color: var(--primary-color);
}

.certified_sec .content_block p {
	font-size: 16px;
	color: #000;
	line-height: 1.5;
	margin: 0;
}

.counter_sec {
	background: #d5ffb2;
	padding: 40px 0;
  position: relative;
  z-index: 99;
}
.counter_sec .counter_item {
	position: relative;
}
.counter_sec .counter_item .item_content {
	text-align: center;
	padding: 120px 0 60px;
	position: relative;
}
.counter_sec .counter_item .item_content .count_num span {
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	-webkit-transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s, opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
	transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s, opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}
.counter_sec .counter_item .item_content .title {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	line-height: 1;
	text-transform: uppercase;
	margin: 15px 0 0;
	-webkit-transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s, opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
	transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s, opacity 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) 0s;
}
.counter_sec .counter_item .overlay_item {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 0;
	padding: 30px 0 0;
	border-radius: 10px;
	overflow: hidden;
}
.counter_sec .counter_item .overlay_item .image_block {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.counter_sec .counter_item .overlay_item .image_block img {
	width: 100%;
	height: 100%;
}
.counter_sec .counter_item .overlay_item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--secondary-color);
	z-index: 2;
	opacity: .8;
}
.counter_sec .counter_item .overlay_item .icon {
	display: block;
	width: 70px;
	height: 70px;
	position: relative;
	z-index: 2;
}
.brandMarqSec__wr{
    background-color: #000;
}
.brandMarqSecHead{
    padding-top: 1.5rem;
}
.brandMarqSecHeadTitle{
    position: relative;
    font-size: clamp(1.25rem, 0.3814rem + 2.4213vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    /*padding-bottom: 24px;*/
}
.partnerMarquSlider__wr{
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
}
.partnerMarquSlider__wr .logoFigure{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}
.partnerMarquSlider__wr .logoFigure img {
    aspect-ratio: 2 / 1;
    object-fit: contain;
    object-position: center;
}
.serviceDescSec__wr{}
.serviceDescSec__wr .container .row{
    padding-top: 3rem;
    padding-bottom: 3rem;
    row-gap: 1.5rem;
}
.serviceDescSec__wr .container .row~.row{
    /*margin-top: -3rem;*/
}
.serviceDescFigure{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}
.serviceDescFigure img{
    width: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all ease 0.5s;
    transition: all ease 0.5s;
}
.serviceDescFigure:hover img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.serviceDescContentBlock{}
.serviceDescHead{}
.serviceDescHeadTitle{
    position: relative;
    font-size: clamp(1.125rem, 0.1695rem + 2.6634vw, 2.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    padding-bottom: 24px;
}
.serviceDescHeadTitle::before,
.serviceDescHeadTitle::after{
    content: "";
    position: absolute;
    left: 0;
    right: auto;
    margin: 0 auto;
    border-radius: 4px;
    height: 4px;
}
.serviceDescHeadTitle::before{
    top: auto;
    bottom: 10px;
    width: 148px;
    background-color: var(--secondary-color);
}
.serviceDescHeadTitle::after{
    top: auto;
    bottom: 0;
    width: 48px;
    background-color: var(--primary-color);
}
.serviceDescContent{}
.serviceDescContent p,
.serviceDescContent ul{
    font-size: clamp(0.875rem, 0.7881rem + 0.2421vw, 1rem);
    color: #000;
    line-height: 1.5;
}
.list-styled {
    list-style: none;
}
.list-inside {
    list-style-position: inside !important;
}
.lh-1-8 {
    line-height: 1.8 !important;
}
.list-styled li {
    position: relative;
    padding-left: 16px;
}
.list-styled li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 13px;
}
.expertise_sec {
	padding: 40px 0;
	background: #f4f7fc;
}
.expertise_sec .image_block {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	-ms-transition: all ease-in 0.3s;
	-moz-transition: all ease-in 0.3s;
	-webkit-transition: all ease-in 0.3s;
	transition: all ease-in 0.3s;
}

.expertise_sec .image_block::before {
	content: "";
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-image: -ms-linear-gradient(transparent,#072867);
	background-image: -moz-linear-gradient(transparent,#072867);
	background-image: -webkit-linear-gradient(transparent,#072867);
	background-image: linear-gradient(transparent,#072867);
}

.expertise_sec .image_block img {
	object-fit: cover;
	-ms-transition: all ease-in 0.3s;
	-moz-transition: all ease-in 0.3s;
	-webkit-transition: all ease-in 0.3s;
	transition: all ease-in 0.3s;
}

.expertise_sec .image_block:hover {
	-webkit-box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
	box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
}

.expertise_sec .image_block:hover img {
	-ms-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.expertise_sec .content_block {
	background: #fff;
	-webkit-box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
	box-shadow: 0px 0px 20px rgb(0 0 0 / 20%);
	border-radius: 10px;
	padding: 40px 50px;
}

.expertise_sec .content_block .sec_title {
	position: relative;
	color: #000;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.2;
	padding: 0 0 24px;
}

.expertise_sec .content_block .sec_title::before, .expertise_sec .content_block .sec_title::after {
	content: "";
	position: absolute;
	left: 0;
	right: auto;
	margin: 0 auto;
	border-radius: 4px;
	height: 4px;
}

.expertise_sec .content_block .sec_title::before {
	top: auto;
	bottom: 10px;
	width: 148px;
	background-color: var(--secondary-color);
}

.expertise_sec .content_block .sec_title::after {
	top: auto;
	bottom: 0;
	width: 48px;
	background-color: var(--primary-color);
}

.expertise_sec .content_block p{
	font-size: 16px;
	color: #000;
	line-height: 1.5;
  margin-bottom: 1rem;
}

.expertise_sec .content_block ul {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.expertise_sec .content_block ul li {
  font-size: 16px;
  color: #000;
  line-height: 1.5;
	margin-bottom: 0.5rem;
}

.expertise_sec .content_block .btn-primary {
	/*width: 100%;*/
  text-align: center;
}

.contact_sec {
  position: relative;
	background-color: #f9f9f9;
	padding: 60px 0;
}
.contact_sec .overlayBgFigure__wr {
    position: absolute;
    inset: 0;
    display: flex;
    overflow: hidden;
}
.contact_sec .overlayBgFigure__wr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.contact_sec .container {
    position: relative;
}
.contact_sec .form_block {
	background-color: #fff;
	border: 2px solid var(--secondary-color);
	padding: 40px 50px;
	position: relative;
	z-index: 1;
}

.contact_sec .form_block form .btn-primary {
	width: 100%;
}

.contact_sec .sec_head {
	margin-bottom: 30px;
}

.contact_sec .sec_head .title {
	position: relative;
	color: #000;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.2;
	padding: 0 0 24px;
}

.contact_sec .sec_head .title::before, .contact_sec .sec_head .title::after ,
.clients_sec .sec_title::before, .clients_sec .sec_title::after{
	content: "";
	position: absolute;
	left: 0;
	right: auto;
	margin: 0 auto;
	border-radius: 4px;
	height: 4px;
}

.contact_sec .sec_head .title::before,
.clients_sec .sec_title::before{
	top: auto;
	bottom: 10px;
	width: 148px;
	background-color: var(--secondary-color);
}

.contact_sec .sec_head .title::after,
.clients_sec .sec_title::after{
	top: auto;
	bottom: 0;
	width: 48px;
	background-color: var(--primary-color);
}

.contact_sec .info_block {
	background-color: var(--secondary-color);
	padding: 40px 50px;
	color: #fff;
	margin-top: 50px;
	position: relative;
	z-index: 1;
}

.contact_sec .info_block .title {
	color: #fff;
}

.contact_sec .info_block .sec_head .title::before {
	background-color: #fff;
}

.contact_sec .info_block .info_list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact_sec .info_block .info_list li {
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	margin-bottom: 30px;
}

.contact_sec .info_block .info_list li .icon {
	width: 50px;
	height: 50px;
	margin-right: 15px;
	display: inline-block;
}

.contact_sec .info_block .info_list li .content {
	display: inline-block;
	width: calc(100% - 65px);
}

.contact_sec .info_block .info_list li p, .contact_sec .info_block .info_list li a {
	font-size: 16px;
	line-height: 1.2;
	color: #fff;
	margin: 0;
	text-decoration: none;
}

.contact_sec .info_block .info_list li .title_label {
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact_sec .info_block .info_list li a {
	-ms-transition: all ease-in 0.3s;
	-moz-transition: all ease-in 0.3s;
	-webkit-transition: all ease-in 0.3s;
	transition: all ease-in 0.3s;
}

.contact_sec .info_block .info_list li a:hover {
	color: var(--primary-color);
}

.request_sec {
	background-color: var(--secondary-color);
	text-align: center;
}

.request_sec .content_block {
	padding: 40px 0;
	color: #fff;
}

.request_sec .content_block form .btn-primary {
	width: 100%;
}

.request_sec .content_block .title {
	color: #fff;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
}

.request_sec .content_block p {
	font-size: 18px;
	line-height: 1.5;
	color: #fff;
	margin-bottom: 1.5rem;
}

.request_sec .image_block {
	display: block;
}

.clients_sec {
	text-align: center;
	padding: 1rem 0;
}

.clients_sec .sec_title {
  position: relative;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
  padding: 0 0 24px;
}
.logoSliderContainer__wr{
    width: 100%;
    overflow: hidden;
    position: relative;
}
.logoSlider__wr{
    display: flex;
    animation: logo-marquee 15s linear infinite; /* Adjust animation duration */
}
.logoSlideItem__wr{
    flex: 0 0 auto;
    min-width: 100px; /* Adjust based on your logo size */
    padding: 0 15px;
    box-sizing: border-box;
}
.logoFigure__wr{
    display: flex;
}
.logoFigure__wr img{
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
@keyframes logo-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*.clients_sec .logo_slider.owl-carousel .owl-item img {
	width: 170px;
  height: 100px;
}*/

footer .top_bar_sec {
	background: #e5e5e5;
	padding: 1rem 0;
}

footer .top_bar_sec .item, footer .bottom_bar_sec .item {
	text-align: center;
	width: 100%;
	margin: 0 0 0.5rem;
}

footer .top_bar_sec .item:last-child, footer .bottom_bar_sec .item:last-child {
	margin-bottom: 0;
}

footer .top_bar_sec .item p, footer .top_bar_sec .item a {
	font-size: 16px;
	line-height: 1.3;
	color: var(--secondary-color);
	text-decoration: none;
	margin: 0;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

footer .top_bar_sec .item i {
	margin: 0;
	margin-right: 10px;
	color: var(--primary-color);
}

footer .top_bar_sec .item a:hover {
	color: var(--primary-color);
}

footer .bottom_bar_sec {
	background-color: var(--primary-color);
	background-color: #295028;
	padding: 1rem 0;
	color: #fff;
}

footer .foot_social, footer .bottom_bar_sec .links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

footer .foot_social li {
	margin: 0;
	font-size: 14px;
	margin-right: 10px;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-moz-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

footer .foot_social li:last-child {
	margin-right: 0;
}

footer .foot_social li a {
	color: #fff;
}

footer .bottom_bar_sec .links li {
	margin: 0;
	margin-right: 15px;
}

footer .bottom_bar_sec .links li:last-child {
	margin-right: 0;
}

footer .bottom_bar_sec .item p, footer .bottom_bar_sec .item a {
	font-size: 14px;
	line-height: 1.2;
	color: #fff;
	margin: 0;
	text-decoration: none;
}

footer .top_bar_sec .item .navbar-brand, footer .bottom_bar_sec .item .navbar-brand {
	display: block;
}

.body_call_btn {
	position: fixed;
	top: 15rem;
	left: 10px;
	margin: auto;
	z-index: 99;
	border-radius: 50%;
	box-shadow: 0 0 60px 1px rgb(0 0 0 / 50%);
	width: 50px;
	height: 50px;
}

.body_call_btn a {
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	padding: 0;
	position: relative;
	text-decoration: none;
	font-size: 24px;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-o-animation: call-shadow-pulse 2s infinite;
	-ms-animation: call-shadow-pulse 2s infinite;
	-moz-animation: call-shadow-pulse 2s infinite;
	-webkit-animation: call-shadow-pulse 2s infinite;
	animation: call-shadow-pulse 2s infinite;
}
.callBtnWrap__wr{
    position: fixed;
    top: 15rem;
    left: 10px;
    margin: auto;
    z-index: 99;
    border-radius: 50%;
    box-shadow: 0 0 60px 1px rgb(0 0 0 / 50%);
    width: 50px;
    height: 50px;
}
.callBtnWrap__wr a{
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 0;
    position: relative;
    text-decoration: none;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: call-shadow-pulse 2s infinite;
    animation: call-shadow-pulse 2s infinite;
}
.callBtnWrap__wr.active .popoverWrap__wr {
    display: block;
}
.callBtnWrap__wr .popoverWrap__wr {
    max-width: 275px;
    width: 275px;
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    display: none;
}
.callBtnWrap__wr .popoverWrap__wr .arrow__wr {
    display: block;
    width: 0;
    height: 0;
    border-width: 11px;
    border-color: transparent;
    border-style: solid;
    position: absolute;
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0;
}
.callBtnWrap__wr .popoverWrap__wr .title__wr {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}
.callBtnWrap__wr .popoverWrap__wr .content__wr {
    padding: 9px 14px;
    font-size: 14px;
}
.callBtnWrap__wr .popoverWrap__wr .arrow__wr::before {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 10px;
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0;
}
@keyframes call-shadow-pulse{
    0% {box-shadow: 0 0 0 0px rgba(255, 165, 0, 0.5);}
    100% {box-shadow: 0 0 0 35px rgba(255, 165, 0, 0);}
}
.watsAppWrap__wr{
    position: fixed;
/*    bottom: 15rem;*/
    top: 30rem;
    left: 10px;
    margin: auto;
    z-index: 99;
    border-radius: 50%;
    box-shadow: 0 0 60px 1px rgb(0 0 0 / 50%);
    width: 50px;
    height: 50px;
}
.watsAppWrap__wr a{
    background: #25d366;
    color: var(--bs-white);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    padding: 0;
    position: relative;
    text-decoration: none;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: watapp-shadow-pulse 2s infinite;
    animation: watapp-shadow-pulse 2s infinite;
}
@keyframes watapp-shadow-pulse{
    0% {box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.5);}
    100% {box-shadow: 0 0 0 35px rgba(37, 211, 102, 0);}
}
@-o-keyframes call-shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgb(118, 175, 70);
	}

	100% {
		box-shadow: 0 0 0 35px rgba(118, 175, 70, 0);
	}
}

@-ms-keyframes call-shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgb(118, 175, 70);
	}

	100% {
		box-shadow: 0 0 0 35px rgba(118, 175, 70, 0);
	}
}

@-moz-keyframes call-shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgb(118, 175, 70);
	}

	100% {
		box-shadow: 0 0 0 35px rgba(118, 175, 70, 0);
	}
}

@-webkit-keyframes call-shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgb(118, 175, 70);
	}

	100% {
		box-shadow: 0 0 0 35px rgba(118, 175, 70, 0);
	}
}

@keyframes call-shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgb(118, 175, 70);
	}

	100% {
		box-shadow: 0 0 0 35px rgba(118, 175, 70, 0);
	}
}

.body_whatsapp_btn {
	position: fixed;
	top: 30rem;
	left: 10px;
	margin: auto;
	z-index: 99;
	border-radius: 50%;
	box-shadow: 0 0 60px 1px rgb(0 0 0 / 50%);
	width: 50px;
	height: 50px;
}

.body_whatsapp_btn a {
	background: #25d366;
	color: #fff;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	line-height: 50px;
	padding: 0;
	position: relative;
	text-decoration: none;
	font-size: 35px;
	display: -ms-flexbox;
	display: -moz-flex;
	display: -webkit-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-o-animation: watapp-shadow-pulse 2s infinite;
	-ms-animation: watapp-shadow-pulse 2s infinite;
	-moz-animation: watapp-shadow-pulse 2s infinite;
	-webkit-animation: watapp-shadow-pulse 2s infinite;
	animation: watapp-shadow-pulse 2s infinite;
}

@-webkit-keyframes watapp-shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.5);
	}

	100% {
		box-shadow: 0 0 0 35px rgba(37, 211, 102, 0);
	}
}

@keyframes watapp-shadow-pulse {
	0% {
		box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.5);
	}

	100% {
		box-shadow: 0 0 0 35px rgba(37, 211, 102, 0);
	}
}
.offcanvas_form_wrapper{
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 650px;
    background-color: #fff;
    z-index: 9999;
    -webkit-transition: all ease-in 0.5s;
    transition: all ease-in 0.5s;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}
.offcanvas_form_wrapper .offcanvas_btnwrapper{
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    z-index: 5;
    top: 0;
    border-radius: 50%;
    bottom: 0;
    margin: auto;
    box-shadow: -10px 0 60px #24214a7d;
    display: inline-block;
    left: -50px;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    -moz-transition: all ease-in 0.3s;
    -o-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}
.offcanvas_form_wrapper .offcanvas_btnwrapper .enq_text{
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    display: inline-block;
    padding: 0;
    position: absolute;
    top: 45px;
    margin: 0;
    left: -55px;
    font-weight: 600;
    max-width: 100%;
    -webkit-transition: all ease-in 0.5s;
    transition: all ease-in 0.5s;
}
.offcanvas_form_wrapper .offcanvas_btnwrapper .offcanvas_openebtn{
  font-size: 30px;
  color: #fff;
  margin: 0;
  margin-left: -47px;
}
.offcanvas_form_wrapper .offcanvas_btnwrapper .offcanvas_closebtn{
  display: none;
  font-size: 40px;
  color: #fff;
  margin: 0;
  text-decoration: none;
}
.offcanvas_form_wrapper .offcanvas_body{
  padding: 0 30px 0;
  padding-left: 80px;
  margin: 0;
  color: #000;
}
.offcanvas_form_wrapper .sec_head{
  padding: 30px;
  padding-left: 80px;
  position: relative;
}
.offcanvas_form_wrapper .sec_head .sec_title{
  font-size: 35px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  color: #232527;
  margin: 0 0 1rem;
  text-align: left;
}
.offcanvas_form_wrapper .sec_head p{
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: capitalize;
  color: #000;
}
.offcanvas_form_wrapper .sec_head .offcanvas_xs_closebtn{
  color: #000;
  font-size: 30px;
  display: none;
  position: absolute;
  right: 30px;
  top: 30px;
  text-decoration: none;
}
.offcanvas_form_wrapper .offcanvas_body .btn-primary{
  width: 100%;
}
.offcanvas_form_wrapper.open{
  -webkit-transform: translateX(0);
  transform: translateX(0);
  z-index: 2000000001 !important;
}
.offcanvas_form_wrapper.open .offcanvas_btnwrapper .offcanvas_openebtn{
  display: none;
}
.offcanvas_form_wrapper.open .offcanvas_btnwrapper .enq_text{
  color: #fff;
}
.offcanvas_form_wrapper.open .offcanvas_btnwrapper .offcanvas_closebtn{
  display: inline-block;
}
.offcanvas_backdrop{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
}
.offcanvas_backdrop.show{
  opacity: .8;
  visibility: visible;
}
.team_sec{
  position: relative;
  padding: 80px 0;
  /*background: #005D98;*/
}
/*.team_sec::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/team-member-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}*/
.team_sec .overlayBgFigure__wr{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 40%;
}
.team_sec .overlayBgFigure__wr::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0 93 152 / 80%);
    z-index: 1;
}
.team_sec .overlayBgFigure__wr img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.team_sec .container{
    position: relative;
    z-index: 2;
}
.team_sec .sec_head{
    margin-bottom: 48px;
}
.team_sec .sec_head p{
  margin-bottom: 1rem;
}
.team_sec .sec_head .sec_sup_title{
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
}
.team_sec .sec_head .sec_title{
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    padding: 0 0 24px;
    position: relative;
}
.team_sec .sec_head .sec_title::before, 
.team_sec .sec_head .sec_title::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 4px;
    height: 4px;
}
.team_sec .sec_head .sec_title::before{
    top: auto;
    bottom: 10px;
    width: 148px;
    background-color: #fff;
}
.team_sec .sec_head .sec_title::after{
    top: auto;
    bottom: 0;
    width: 48px;
    background-color: var(--primary-color);
}
/*.team_slider{}
.team_slider .member_wrap{
  position: relative;
  transition: all .35s cubic-bezier(.68,-.55,.27,1.55) 0s,opacity .4s cubic-bezier(.68,-.55,.27,1.55) 0s;
}
.team_slider .member_wrap::before{
    content: '';
    position: absolute;
    left: 0;
    top: -100px;
    width: 100%;
    height: 350px;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    background-image: url(../images/team-member-hover.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0 29px;
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: all .35s cubic-bezier(.68,-.55,.27,1.55) 0s,opacity .4s cubic-bezier(.68,-.55,.27,1.55) 0s;
}
.team_slider .member_wrap .member_figure{
    display: block;
    margin: 0;
    width: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    transition: all .35s cubic-bezier(.68,-.55,.27,1.55) 0s,opacity .4s cubic-bezier(.68,-.55,.27,1.55) 0s;
}
.team_slider .member_wrap .member_figure::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #005D98;
    opacity: .6;
    transition: all .35s cubic-bezier(.68,-.55,.27,1.55) 0s,opacity .4s cubic-bezier(.68,-.55,.27,1.55) 0s;
    display: none;
}
.team_slider .member_wrap .member_figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.team_slider .member_wrap .member_role{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    background: var(--primary-color);
    border-radius: 3px;
    color: #fff;
    font-size: 10px;
    color: #fff;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    visibility: visible;
    opacity: 1;
    transition: all .35s cubic-bezier(.68,-.55,.27,1.55) 0s,opacity .4s cubic-bezier(.68,-.55,.27,1.55) 0s;
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: calc(100% - 16px);
    height: 40px;
    padding: 0 10px;
    text-align: center;
}
.team_slider .member_wrap .memmber_info{
  position: relative;
}
.team_slider .member_wrap .memmber_info .title{
    font-size: 16px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    line-height: 1.39;
    transition: all .35s cubic-bezier(.68,-.55,.27,1.55) 0s,opacity .4s cubic-bezier(.68,-.55,.27,1.55) 0s;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.team_slider .member_wrap .memmber_info .social{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--primary-color);
}
.team_slider .member_wrap .memmber_info .social li{
  margin: 0;
}
.team_slider .member_wrap .memmber_info .social li a{
  text-decoration: none;
  color: inherit;
}*/
.team_sec .teamGridWrap__wr {
    margin-left: 0;
    margin-right: 0;
}
.team_sec
    > .container
    > .row
    > [class*="col-"]
    > .row
    > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}
.team_sec .teamGridWrap__wr .teamItemWrap__wr {
    margin-left: 0;
    margin-right: 0;
}
.team_sec
    > .container
    > .row
    > [class*="col-"]
    > .row
    > [class*="col-"]
    > .row
    > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    display: flex;
}
.team_sec .teamGridWrap__wr .teamItemWrap__wr .memberFigureblock__wr {
    width: 100%;
    position: relative;
    display: flex;
}
.team_sec .teamGridWrap__wr .teamItemWrap__wr .memberImage__wr {
    display: flex;
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
}
.team_sec .teamGridWrap__wr .teamItemWrap__wr .memberImage__wr::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: -webkit-linear-gradient(
        to top,
        rgb(118 175 70 / 90%) 0,
        rgb(255 255 255 / 0) 100%
    );
    background: linear-gradient(
        to top,
        rgb(118 175 70 / 90%) 0,
        rgb(255 255 255 / 0) 100%
    );
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.team_sec .teamGridWrap__wr .teamItemWrap__wr .memberImage__wr img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.team_sec
    .teamGridWrap__wr
    .teamItemWrap__wr
    .memberRole__wr {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    border-radius: 4px;
    background: var(--primary-color);
    transform: translateY(150%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.team_sec
    .teamGridWrap__wr
    .teamItemWrap__wr:hover
    .memberImage__wr::before {
    opacity: 0;
    z-index: -1;
}
.team_sec
    .teamGridWrap__wr
    .teamItemWrap__wr:hover
    .memberRole__wr {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.team_sec .teamGridWrap__wr .teamItemWrap__wr .contentWrap__wr {
    width: 100%;
    position: relative;
    padding: 50px 60px;
    background-color: var(--secondary-color);
    background-image: url("../images/climpek.png");
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.team_sec .teamGridWrap__wr .teamItemWrap__wr .contentWrap__wr::before {
    content: "";
    width: 0;
    height: 0;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid var(--secondary-color);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    margin: 0 auto;
    z-index: 1;
}
.team_sec
    .teamGridWrap__wr
    .teamItemWrap__wr
    .contentWrap__wr
    .memberInfoWrap__wr{
      display: block;
      margin: 0;
}
.team_sec
    .teamGridWrap__wr
    .teamItemWrap__wr
    .contentWrap__wr
    .memberInfoWrap__wr
    .title__wr {
    font-size: clamp(1.25rem, 0.8144rem + 1.2121vw, 1.875rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 16px;
}
.team_sec
    .teamGridWrap__wr
    .teamItemWrap__wr
    .contentWrap__wr
    .memberInfoWrap__wr
    p:not([class]) {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: inherit;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.team_sec
    .teamGridWrap__wr
    .teamItemWrap__wr
    .contentWrap__wr
    .socialWrap__wr {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
}
.team_sec
    .teamGridWrap__wr
    .teamItemWrap__wr
    .contentWrap__wr
    .socialWrap__wr
    a {
    font-size: 14px;
    text-decoration: none;
    color: #ffffff;
    margin: 0;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s;
}
.team_sec
    .teamGridWrap__wr
    .teamItemWrap__wr
    .contentWrap__wr
    .socialWrap__wr
    a:hover {
    color: var(--primary-color);
}
/* ***************************** Modal Css *********************************** */
#CalenderModal img {
	border: 0;
	outline: none;
	max-width: 100%;
}

#CalenderModal .modal-dialog {
	max-width: 850px;
}

#CalenderModal .modal-dialog .modal-content {
	border: none;
	box-shadow: none;
	border-radius: 0;
}

.CalenderArea {
	display: flex;
	margin: -15px;
	min-height: 505px;
}

.CalenderArea .Close {
	position: absolute;
	top: 0;
	right: 10px;
	z-index: 2;
	color: #fff;
	font-size: 50px;
	line-height: 55px;
	width: 50px;
	text-align: center;
	color: #000;
	text-decoration: none;
}

.CalenderArea .CalenderLeft {
	width: 50%;
	border-right: 1px solid #d6d6d6;
	transition: 0.5s all ease-in-out;
}

.CalenderArea .CalenderLeft figure {
	margin: 0;
	padding: 60px 40px;
	border-bottom: 1px solid #ddd;
	text-align: center;
}

.CalenderArea .CalenderLeft figure img {
}

.CalenderArea .CalenderLeft .thankyou-text {
	padding: 25px 40px;
	min-height: 300px;
}

.CalenderArea .CalenderLeft .thankyou-text h3 {
	color: #062867;
	font-weight: 500;
	margin: 0 0 10px 0px;
	font-size: 26px;
}

.CalenderArea .CalenderLeft .thankyou-text h4 {
	font-size: 18px;
	font-weight: 500;
	color: #000;
	margin: 0 0 10px 0;
}

.CalenderArea .CalenderLeft .thankyou-text p {
	font-size: 15px;
  margin-bottom: 1rem;
}

.CalenderArea .CalenderRight {
	width: 50%;
	padding: 40px 0 0 15px;
	transition: 0.5s all ease-in-out;
	overflow: hidden;
}

.CalenderArea .CalenderRight h3 {
	font-weight: 500;
	font-size: 25px;
	margin: 0 0 15px 0;
}

.CalenderArea .CalenderRight .CalenderBox {
	position: relative;
	transition: 0.5s all ease-in-out;
}

.CalenderArea .CalenderRight .CalenderBox .Controls {
	position: absolute;
	right: 50px;
	z-index: 9;
}

.CalenderArea .CalenderRight .CalenderBox .Controls #prev, 
.CalenderArea .CalenderRight .CalenderBox .Controls #next {
	font-size: 25px;
	line-height: 17px;
	font-weight: 700;
	margin: 0 0px;
	cursor: pointer;
}

.CalenderArea .CalenderRight .CalenderBox #calendar .current-date {
	position: relative;
	padding: 0 0 10px 100px !important;
}

.CalenderArea .CalenderRight .CalenderBox #calendar .current-date .current-month {
	font-size: 16px;
	font-weight: 500;
	color: #000;
}

.CalenderArea .CalenderRight .CalenderBox #calendar .week-days {
	display: flex;
}

.CalenderArea .CalenderRight .CalenderBox #calendar .week-days .week-day {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 14px;
	line-height: 1;
	width: 45px;
	height: 25px;
	text-align: center;
}

.CalenderArea .CalenderRight .CalenderBox #calendar .weeks {
}

.CalenderArea .CalenderRight .CalenderBox #calendar .weeks .week {
	display: flex;
}

.CalenderArea .CalenderRight .CalenderBox #calendar .weeks .week .day {
	position: relative;
	display: block;
	width: 45px;
	height: 45px;
	padding: 1px 0 0;
	font-size: 16px;
	text-align: center;
	border: 1px solid transparent;
	border-radius: 50%;
	cursor: pointer;
	color: #000;
	font-weight: 500;
	line-height: 40px;
}

.CalenderArea .CalenderRight .CalenderBox #calendar .weeks .week .day.today {
	background-color: #062867;
	color: #fff;
}

.CalenderArea .CalenderRight .CalenderBox #calendar .weeks .week .day.not-current-month {
	color: #dedede;
}

.CalenderArea.AddSlot {
}

.CalenderArea.AddSlot .CalenderLeft {
	width: 40%;
}

.CalenderArea.AddSlot .CalenderRight {
	width: 65%;
}

.CalenderArea.AddSlot .CalenderRight aside .TimeSlot {
	transform: translate(0px);
}

.CalenderArea .CalenderRight aside {
	display: flex;
	transition: 0.5s all ease-in-out;
}

.CalenderArea .CalenderRight .TimeSlot {
	padding: 0 0 0 10px;
	transform: translate(90px, 0px);
}

.CalenderArea .CalenderRight .TimeSlot h5 {
	font-weight: 500;
	color: #000;
	margin: 0 0 15px 0;
}

.CalenderArea .CalenderRight .TimeSlot ul {
	overflow: hidden;
	white-space: nowrap;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	height: 365px;
	overflow-y: auto;
	width: 186px;
	padding: 0 5px 0 0;
}

.CalenderArea .CalenderRight .TimeSlot ul {
}

.CalenderArea .CalenderRight .TimeSlot ul::-webkit-scrollbar {
	width: 10px;
}

.CalenderArea .CalenderRight .TimeSlot ul::-webkit-scrollbar-track {
	background: #ffffff;
}

.CalenderArea .CalenderRight .TimeSlot ul::-webkit-scrollbar-thumb {
	background: #4c4b4b;
	border: 2px solid #fff;
	border-radius: 15px;
}

.CalenderArea .CalenderRight .TimeSlot ul li {
	margin-bottom: 10px;
	font-size: 16px;
	transition: 0.5s all ease-in-out;
}

.CalenderArea .CalenderRight .TimeSlot ul li span.Time {
	width: 100%;
	height: 50px;
	border: 1px solid #adaeb1;
	display: inline-block;
	text-align: center;
	line-height: 45px;
	font-weight: 600;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.5s all ease-in-out;
	background-color: #fff;
}

.CalenderArea .CalenderRight .TimeSlot ul li span.Confirm {
	width: 100%;
	height: 50px;
	transform: translateX(15px);
	display: inline-block;
	background-color: #062867;
	color: #fff;
	border-radius: 5px;
	line-height: 45px;
	text-align: center;
	cursor: pointer;
	transition: 0.5s all ease-in-out;
}

.CalenderArea .CalenderRight .TimeSlot ul li.timeactive span.Time {
	background-color: #616161;
	border-color: #616161;
	color: #fff;
	width: 49%;
}

.CalenderArea .CalenderRight .TimeSlot ul li.timeactive span.Confirm {
	transform: translateX(0px);
	width: 49%;
}

.CalenderForm {
	width: 60%;
	padding: 40px 40px 25px;
	transition: 0.5s all ease-in-out;
	display: none;
	position: relative;
}

.CalenderForm .back {
	font-size: 36px;
	color: #000;
	line-height: 1;
	text-decoration: none;
	position: absolute;
	top: 0;
}

.CalenderForm h4 {
	font-weight: 500;
	font-size: 25px;
	margin: 0 0 15px 0;
}

.CalenderForm .form-group {
}

.CalenderForm .form-group label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #000;
}

.CalenderForm .form-group .form-control {
	outline: 0;
	box-shadow: none;
}

.CalenderForm .form-group textarea.form-control {
}

.CalenderForm .form-group .form-check {
	padding: 0;
}

.CalenderForm .form-group .form-check .form-check-label {
	position: relative;
	display: flex;
	font-size: 15px;
	padding: 0 0 0 25px;
	margin: 0 0 8px 0;
}

.CalenderForm .form-group .form-check .form-check-label input {
	margin: 0;
	width: 17px;
	height: 17px;
	left: 0;
	top: 7px;
	position: absolute;
}

.CalenderForm .form-group .form-check .form-check-label span.Icon {
	margin: 0 16px 0 0;
	font-size: 15px;
	padding: 4px 0;
}

.CalenderForm .form-group .form-check .form-check-label span.Name {
	margin: 0;
	display: block;
	font-weight: 400;
	line-height: 1.5;
}

.CalenderForm button {
	width: 100%;
	margin: 1rem 0 0;
}

#CalenderModal .BespokeBox {
	margin: 0 0 50px 0;
	border: 2px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0px 4px 10px #ddd;
	text-align: center;
	transition: 0.5s all ease-in-out;
}

#CalenderModal .BespokeBox img {
	transition: 0.5s all ease-in-out;
}

#CalenderModal .BespokeBox:hover {
	box-shadow: none;
	border: 2px solid #283796;
}

#CalenderModal .BespokeBox:hover img {
	transform: scale(0.9);
}

#CalenderModal .enquiry-error {
	border: 2px solid !important;
	border-color: red !important;
}

#CalenderModal .disable-time {
	cursor: not-allowed !important;
	color: gray;
}

#CalenderModal .show-p {
	display: block;
}

#CalenderModal .hide-p {
	display: none;
}

#CalenderModal #schedule-date-time {
	font-weight: 500;
	color: #072867;
}

#schedule-timezone {
	font-weight: 500;
}

#CalenderModal .fa-angle-left {
	right: 192px;
	position: absolute;
}

#CalenderModal .fa-globe {
	font-size: 22px;
}

#CalenderModal .fa-video {
	color: #4888F7;
}

#CalenderModal .fa-location-dot {
	color: red;
}

#CalenderModal .fa-phone {
	color: green;
}

#free-quote-popup {
	height: auto !important;
}

#snackbar {
	visibility: hidden;
	min-width: 250px;
	margin-left: -125px;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	padding: 16px;
	position: fixed;
	z-index: 99;
	left: 50%;
	bottom: 30px;
	;
}

.bg-danger {
	background-color: #e62020;
}

.bg-success {
	background-color: #609132;
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 0;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 0;
		opacity: 0;
	}
}

.enquiry-error {
	border-color: red !important;
}

.help-block {
	font-size: 14px;
	display: block;
	color: red;
	text-align: left;
	;
}
#CalenderModal {
    z-index: 2000000001;
}
/*REVIEW SEC S*/
    .reviewSec__wr{
        padding: 60px 0;
        position: relative;
        background: url(../images/testimonial-bg.jpg) repeat-y center center / cover;
        position: relative;
        -webkit-animation: testing 20s linear forwards infinite;
        animation: testing 20s linear forwards infinite;
    }
    @-webkit-keyframes testing{
        0% {background-position: 0 0;}
        100% {background-position: 0 -100%;}
    }
    @keyframes testing{
        0% {background-position: 0 0;}
        100% {background-position: 0 -100%;}
    }
    .reviewSecHead{
        margin-bottom: 32px;
        text-align: center;
    }
    .reviewSecHeadTitle{
        position: relative;
        font-size: clamp(1.25rem, 0.5985rem + 1.816vw, 2.1875rem);
        font-weight: 600;
        line-height: 1.2;
        color: inherit;
        margin-bottom: 0;
        padding-top: 24px;
    }
    .reviewSecHeadTitle span{
        /*color: var(--primary-color);*/
        color: var(--secondary-color);
    }
    .reviewSecHeadTitle::before{
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 4px;
        height: 4px;
        top: 12px;
        bottom: auto;
        width: 148px;
        background-color: var(--secondary-color);
    }
    .reviewSecHeadTitle::after{
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 4px;
        height: 4px;
        top: 0;
        bottom: auto;
        width: 48px;
        background-color: var(--primary-color);
    }
    /*REVIEW HEAD S*/
        .reviewHeadBox{
            padding: 1.5rem;
            background-color: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }
        .reviewHeadInfoBlock{
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            gap: 4px;
            margin: 0;
        }
        .reviewHeadTitleContainer{
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 6px;
        }
        .gBrandIcon{
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .gBrandIcon img{}
        .reviewHeadInfoTitle{
            display: inline-flex;
            font-size: 22px;
            font-weight: 700;
            line-height: 1;
            color: rgb(17, 17, 17);
            font-family: var(--KaushanScriptFont__wr);
        }
        .reviewHeadRatingContainer{
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.5rem;
        }
        .reviewHeadRatingValue{
            display: inline-flex;
            font-size: 22px;
            font-weight: 700;
            line-height: 1;
            color: rgb(17, 17, 17);
            word-break: normal !important;
            font-family: var(--KaushanScriptFont__wr);
        }
        .reviewHeadRating{
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 1px;
            font-size: 22px;
            line-height: 1;
            color: #fcbf02;
        }
        .reviewHeadRating i{}
        .reviewHeadRatingCount{
            display: inline-flex;
            font-size: 16px;
            line-height: 1;
            color: rgba(17, 17, 17, 0.5);
            font-family: var(--KaushanScriptFont__wr);
        }
        .reviewHeadBtnBlock{
            margin: 0;
        }
        .reviewHeadBtn{
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            line-height: 1.2;
            text-decoration: none;
            font-family: var(--KaushanScriptFont__wr);
            border-radius: 50rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 7px 18px;
            background-color: rgb(25, 123, 255);
            border: 2px solid rgb(25, 123, 255);
            cursor: pointer;
            outline: 0;
            box-shadow: none;
            -webkit-transition: 0.5s;
            transition: 0.5s;
            margin: 0;
        }
        .reviewHeadBtn:hover{
            background-color: rgb(48, 136, 255);
            border-color: rgb(48, 136, 255);
            color: #fff;
        }
    /*REVIEW HEAD E*/
    .testimonialSlider__wr{}
    .testimonialSlider__wr.owl-carousel .owl-stage{
        padding-top: 5px;
        padding-bottom: 5px;
        display: flex;
        flex: 1 0 auto;
        height: 100%;
    }
    .testimonialSlider__wr.owl-carousel .item{
        height: 100%;
    }
    .reviewBlock{
        display: block;
        background-color: rgb(246, 246, 248);
        padding: 1.5rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        height: 100%;
        -webkit-transition: all ease 0.1s;
        transition: all ease 0.1s;
    }
    .reviewBlock:hover{
        background-color: rgb(255, 255, 255);
    }
    .reviewAuthBlock{
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 1rem;
    }
    .reviewAvtarBlock{
        position: relative;
        display: inline-flex;
        flex-shrink: 0;
        margin: 0;
    }
    .reviewAvtar{
        display: inline-flex;
        width: 40px;
        aspect-ratio: 1 / 1;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: #78909c;
        font-size: 20px;
        line-height: 1;
        color: #fff;
    }
    .reviewAvtar.bg-red{
        background-color: #EC4434;
    }
    .reviewAvtar.bg-blue{
        background-color: #4484F4;
    }
    .reviewAvtar.bg-green{
        background-color: #34AC54;
    }
    .reviewAvtar.bg-yellow{
        background-color: #FCBC04;
    }
    .reviewAvtar.bg-purple{
        background-color: #512DA8;
    }
    .reviewAvtar.bg-orange{
        background-color: #EF6C00;
    }
    .reviewAvtar span{
        display: inline-flex;
        line-height: 1;
        /*height: 13px;*/
    }
    .gIconFigure{
        display: inline-flex;
        position: absolute;
        bottom: -6px;
        right: -6px;
    }
    .gIconFigure img{
        width: 24px !important;
    }
    .reviewAuthInfoBlock{
        width: calc(100% - 52px);
        display: flex;
        flex-direction: column;
        gap: 4px;
        flex: 1;
    }
    .reviewAuthInfo{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        text-align: left;
        gap: 5px;
        margin: 0;
    }
    .reviewAuthName{
        display: block;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 600;
        color: rgb(17, 17, 17);
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .verifyBadgeFigure{
        display: inline-flex;
    }
    .verifyBadgeFigure img{
        width: 14px !important;
    }
    .reviewDate{
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        font-size: 14px;
        line-height: 1;
        color: rgba(17, 17, 17, 0.5);
        margin: 0;
    }
    .reviewContentBlock{
        margin: 0;
    }
    .reviewRating{
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 2px;
        font-size: 16px;
        color: #fcbf02;
        margin-bottom: 0.5rem;
    }
    .reviewRating i{
        margin: 0;
    }
    .reviewContent{
        width: 100%;
        font-size: 16px;
        line-height: 1.5;
        overflow: hidden;
        /*height: 340px;*/
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        -moz-line-clamp: 4;
        -moz-box-orient: vertical;
    }
    .reviewContent p{
        margin-bottom: 0;
    }
    .reviewBtnBlock{
        width: 100%;
        display: flex;
        margin-top: 0.5rem;
    }
    .reviewBtn{
        display: inline-flex;
        font-size: 16px;
        font-weight: 400;
        line-height: 1.2;
        color: rgb(25, 123, 255);
        text-decoration: none;
        margin: 0;
    }
    .reviewBtn:hover{
        color: rgb(25, 123, 255);
        text-decoration: underline;
    }
    .testimonialSlider__wr.owl-theme .owl-nav [class*=owl-] {
        margin: 0;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(17, 17, 17, 0.5);
        font-size: 14px;
        line-height: 1;
        color: #fff;
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.08));
        outline: none;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: all linear 0.5s;
        transition: all linear 0.5s;
    }
    .testimonialSlider__wr.owl-theme .owl-nav [class*=owl-]:hover{
        /*background: var(--bsPrimary5__wr);*/
        background: rgb(17, 17, 17);
        color: #fff;
    }
    .testimonialSlider__wr.owl-carousel .owl-nav button.owl-prev {
        left: 8px;
    }
    .testimonialSlider__wr.owl-carousel .owl-nav button.owl-next {
        right: 8px;
    }
    /*REVIEW MODAL S*/
        .modal-dialog {
            position: relative;
            width: auto;
            margin: .5rem;
            pointer-events: none;
        }
        .modal-dialog-centered {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
            align-items: center;
            min-height: calc(100% - 1rem);
        }
        .modal-dialog-scrollable {
            display: -ms-flexbox;
            display: flex;
            max-height: calc(100% - 1rem);
        }
        .modal-dialog-centered.modal-dialog-scrollable {
            -ms-flex-direction: column;
            flex-direction: column;
            -ms-flex-pack: center;
            justify-content: center;
            height: 100%;
        }
        #testimonialModal .modal-content{
            border-radius: 8px;
        }
        .reviewModalClose{
            background: transparent;
            border: none;
            padding: 0;
            width: 32px;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            color: #000 !important;
            text-decoration: none;
            position: absolute;
            top: 12px;
            right: 12px;
        }
        .modal-content {
            position: relative;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: column;
            flex-direction: column;
            width: 100%;
            pointer-events: auto;
            background-color: #fff;
            background-clip: padding-box;
            border: 1px solid rgba(0, 0, 0, .2);
            border-radius: .3rem;
            outline: 0;
        }
        .modal-dialog-scrollable .modal-content {
            max-height: calc(100vh - 1rem);
            overflow: hidden;
        }
        .modal-dialog-centered.modal-dialog-scrollable .modal-content {
            max-height: none;
        }
        .modal-body {
            position: relative;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
            padding: 1rem;
        }
        .modal-dialog-scrollable .modal-body {
            overflow-y: auto;
        }
        #testimonialModal .modal-body{
            padding: 40px 1.5rem;
        }
        .reviewMoadlContainer .reviewBlock{
            width: 100%;
            display: flex;
            flex-direction: column;
            flex-wrap: nowrap;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 12px;
            margin-bottom: 1.5rem;
            background-color: transparent;
            padding: 0;
            border: none;
            border-radius: 0;
            height: auto;
            -webkit-transition: unset;
            transition: unset;
        }
        .reviewMoadlContainer .reviewBlock:hover {
            background-color: transparent;
        }
        .reviewMoadlContainer .reviewAvtar{
            width: 48px;
            font-size: 20px;
        }
        .reviewMoadlContainer .reviewAuthInfoBlock{
            width: auto;
            flex: unset;
            margin: 0;
        }
        .reviewMoadlContainer .reviewRating{
            font-size: clamp(1rem, 0.8263rem + 0.4843vw, 1.25rem);
            margin-bottom: 1rem;
        }
        .reviewMoadlContainer .reviewContent{
            font-size: clamp(0.875rem, 0.7013rem + 0.4843vw, 1.125rem);
            overflow: visible;
            display: block;
            -webkit-line-clamp: unset;
            -webkit-box-orient: unset;
            -moz-line-clamp: unset;
            -moz-box-orient: unset;
        }
        .reviewMoadlContainer .reviewContent p{
            margin-bottom: 0;
        }
        .reviewMoadlContainer .reviewBtnBlock{
            display: none;
        }
    /*REVIEW MODAL E*/
/*REVIEW SEC E*/
.toggle-popover-block {
    display: inline-flex;
    position: relative;
    z-index: 99;
}
.popoverBlock{
    max-width: 275px;
    width: 275px;
    position: absolute;
    left: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: none;
}
.toggle-popover-block.active .popoverBlock{
    display: block;
}
.toggle-popover-block .popoverBlock .arrow__wr{
    display: block;
    width: 0;
    height: 0;
    border-width: 11px;
    border-color: transparent;
    border-style: solid;
    position: absolute;
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: rgba(0, 0, 0, 0.25);
    border-left-width: 0;
}
.toggle-popover-block .popoverBlock .arrow__wr::before{
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 10px;
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0;
}
.toggle-popover-block .popoverBlock .title__wr{
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}
.toggle-popover-block .popoverBlock .content__wr{
    padding: 9px 14px;
    font-size: 14px;
}
