@import url(https://fonts.googleapis.com/css?family=Poppins:400,500,600,700,800,900);
@charset "UTF-8";
/*!
 * Bootstrap Grid v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --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-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    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 > * {
  box-sizing: border-box;
  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;
  }
}
.d-inline {
  display: inline !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
/**
 * Swiper 7.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 24, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

body, input, textarea {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 30px;
  color: #2e2c5e;
}
@media (min-width: 768px) and (max-width: 1919px) {
  body, input, textarea {
    font-size: 18px;
    line-height: 27px;
  }
}
@media (max-width: 767.98px) {
  body, input, textarea {
    font-size: 16px;
    line-height: 24px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

h1, .h1 {
  font-size: 48px;
  line-height: 67.2px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  h1, .h1 {
    font-size: 38px;
    line-height: 53.2px;
  }
}
@media (max-width: 767.98px) {
  h1, .h1 {
    font-size: 38px;
    line-height: 53.2px;
  }
}

h2, .h2 {
  font-size: 38px;
  line-height: 53.2px;
  font-weight: 800;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  h2, .h2 {
    font-size: 31px;
    line-height: 43.4px;
  }
}
@media (max-width: 767.98px) {
  h2, .h2 {
    font-size: 24px;
    line-height: 33.6px;
    margin-bottom: 15px;
  }
}

h3, .h3 {
  font-size: 24px;
  line-height: 33.6px;
  font-weight: 800;
  margin-bottom: 15px;
}
h3.upper, .h3.upper {
  text-transform: uppercase;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  h3, .h3 {
    font-size: 20px;
    line-height: 29.6px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  h3, .h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

h4, .h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  h4, .h4 {
    font-size: 18px;
    line-height: 27px;
  }
}

p {
  margin-top: 0;
  margin-bottom: 26px;
}
@media (max-width: 767.98px) {
  p {
    margin-bottom: 20px;
  }
}

ul.checklist {
  margin: 0 0 90px 0;
  padding: 0;
}
ul.checklist li {
  position: relative;
  list-style: none;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  padding-left: 50px;
  margin-bottom: 15px;
}
ul.checklist li:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: 1px;
  width: 30px;
  height: 30px;
  background-image: url(../images/svg/list_check.svg);
  background-size: cover;
  background-position: center center;
  vertical-align: middle;
  margin-right: 20px;
}
@media (max-width: 767.98px) {
  ul.checklist li:before {
    top: 7px;
    width: 20px;
    height: 20px;
    margin-right: 19px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  ul.checklist li:before {
    left: 3px;
  }
}
@media (max-width: 767.98px) {
  ul.checklist li {
    font-size: 16px;
    line-height: 24px;
    padding-left: 39px;
    margin-bottom: 19px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  ul.checklist li {
    margin-bottom: 10px;
    padding-left: 52px;
  }
}
@media (max-width: 767.98px) {
  ul.checklist {
    margin-bottom: 57px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  ul.checklist {
    margin-bottom: 50px;
  }
}

body a {
  color: inherit;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}
body a:not([href]):not([tabindex]).button {
  font-family: "Poppins", sans-serif;
  color: white;
  font-weight: 700;
  background-color: #EF5FA8;
  border-radius: 10px;
  padding: 10px 15px;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  margin-top: 15px;
  cursor: pointer;
  background-image: url(/svg/button_gradient.svg);
  background-size: cover;
}
body a:not([href]):not([tabindex]).button_secondary {
  color: #EF5FA8;
  border-color: #EF5FA8;
  border: 1px solid #EF5FA8;
  border-radius: 10px;
  padding: 10px 15px;
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.05rem;
  margin-top: 15px;
  cursor: pointer;
}
body a.pdf-link {
  text-decoration: underline;
}
body label.checkbox__button {
  position: relative;
  width: 50px;
  height: 35px;
}
body label.checkbox__button input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
body label.checkbox__button input[type=checkbox] + div {
  border-radius: 30px;
  background-color: #929292;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
body label.checkbox__button input[type=checkbox] + div div {
  border-radius: 50%;
  background-color: white;
  position: absolute;
  width: 33px;
  height: 33px;
  top: 1px;
  left: 1px;
  transition: 0.3s;
}
body label.checkbox__button input[type=checkbox]:checked + div {
  background-color: #ED697A;
}
body label.checkbox__button input[type=checkbox]:checked + div div {
  left: 16px;
}

input.check-to-radio {
  display: none !important;
}
input.check-to-radio + div {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  border: 2px solid #929292;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
input.check-to-radio:checked + div {
  border: 2px solid #ED697A;
}
input.check-to-radio:checked + div div {
  border-radius: 50%;
  background-color: #ED697A;
  position: absolute;
  width: 7px;
  height: 7px;
  top: 2px;
  left: 2px;
}

.button,
button.load-more {
  display: table;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  border: 4px solid transparent;
  text-align: center;
  font-weight: 600;
  letter-spacing: -0.15px;
  color: white;
  background-color: #22969F;
  padding: 0 28px;
  cursor: pointer;
  transition: ease-in-out 0.3s;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.button:hover,
button.load-more:hover {
  background-color: #2e2c5e;
}
.button.read-more,
button.load-more.read-more {
  color: #332E2E;
  border-color: #22969F;
  background-color: transparent;
  padding: 0 56px;
}
.button.read-more:hover,
button.load-more.read-more:hover {
  color: white;
  border-color: #2e2c5e;
  background-color: #2e2c5e;
}
@media (max-width: 767.98px) {
  .button.read-more,
button.load-more.read-more {
    padding: 0 27px;
  }
}
@media (max-width: 413px) {
  .button.read-more,
button.load-more.read-more {
    padding: 0 12px;
  }
}
.button.shadow,
button.load-more.shadow {
  box-shadow: 0px 4px 4px rgba(52, 43, 89, 0.3);
}
@media (min-width: 768px) and (max-width: 1919px) {
  .button,
button.load-more {
    padding: 0 39px;
  }
}
@media (max-width: 767.98px) {
  .button,
button.load-more {
    padding: 0 16px;
  }
}
@media (max-width: 413px) {
  .button,
button.load-more {
    padding: 0 12px;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #FDE4E4;
}
body.admin-bar header {
  top: 32px;
}
body.white, body.white header {
  background-color: #fdf8f9;
}
body.white .page-footer {
  background-color: #FDE4E4;
}

#app {
  padding-top: 80px;
}

#app > h2:first-child {
  margin-top: 120px;
  margin-bottom: 100px;
}
@media (max-width: 767.98px) {
  #app > h2:first-child {
    font-size: 38px;
    line-height: 53.2px;
    margin-top: 50px;
    margin-bottom: 55px;
  }
}

@media (max-width: 767.98px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1314px;
  }

  .row {
    margin-left: -48px;
    margin-right: -48px;
  }

  .row > * {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  .container {
    max-width: 1297px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .row {
    margin-left: -37px;
    margin-right: -37px;
  }

  .row > * {
    padding-left: 37px;
    padding-right: 37px;
  }
}
.desktop_only {
  display: none;
}
@media (min-width: 1200px) {
  .desktop_only {
    display: unset;
  }
}

@media (min-width: 1200px) {
  .mobile_only {
    display: none;
  }
}

.modal-info {
  position: relative;
  padding-left: 5px;
  font-family: serif;
  color: #666;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}

#info_modal {
  display: none;
}
#info_modal.active {
  font-size: 9px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 22;
  background: white;
  border: 1px solid black;
  height: 200px;
  width: 90vw;
  left: unset;
  padding: 20px;
  top: -20px;
  border-radius: 15px;
}
@media (min-width: 1200px) {
  #info_modal.active {
    width: 400px;
    left: 20px;
  }
}

div.close-out {
  width: 53px;
  height: 44px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  cursor: pointer;
}
div.close-out:hover {
  opacity: 0.8;
}
div.close-out:before, div.close-out:after {
  position: absolute;
  left: 15px;
  content: "";
  height: 38px;
  width: 5px;
  background-color: #362B5C;
}
div.close-out:before {
  transform: rotate(45deg);
}
div.close-out:after {
  transform: rotate(-45deg);
}

img {
  max-width: 100%;
}

img[class*=wp-image] {
  height: auto;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.grecaptcha-badge {
  display: none !important;
}

#app table.prices {
  background-color: #FDE4E4;
  border-radius: 30px;
  border-collapse: collapse;
}
@media (max-width: 767.98px) {
  #app table.prices {
    text-align: left;
  }
}
#app table.prices td {
  padding: 15px;
  border: none;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}
@media (max-width: 767.98px) {
  #app table.prices td {
    width: auto;
  }
  #app table.prices td:last-child {
    width: 35%;
  }
}
#app table.prices .button {
  margin: 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  #app table.prices .button {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
}

body {
  padding-top: 0px;
  margin-left: 0% !important;
}
body header {
  background-color: #FDE4E4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0;
  height: 84px;
  transition: top 0.5s;
}
@media (min-width: 1200px) {
  body header {
    margin: 0 auto;
  }
}
body header .container {
  display: flex;
}
@media (min-width: 1400px) {
  body header .container {
    max-width: 1511px;
    padding-left: 59px;
    padding-right: 84px;
  }
}
body header .nav {
  display: flex;
}
body header .identity {
  margin: auto 0;
}
body header .identity a {
  color: #2e2c5e;
  font-weight: 900;
  font-size: 26px;
  margin: 0;
}
body header .identity a span {
  color: #ED697A;
  font-weight: 900;
}
body header .identity a img {
  display: block;
  width: 156px;
  height: 39.98px;
  transform: scale(1.1);
}
body header .menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto 0;
}
body header .menu div {
  height: 5px;
  width: 100%;
  background-color: #2e2c5e;
}
body header .menu img {
  display: block;
  width: 53px;
  height: 44px;
}
body header.sticky-menu {
  position: fixed;
  top: -90px;
}
body header.sticky-menu.expanded {
  top: 0;
  transition: top 0.5s;
}
body .contact__social {
  display: flex;
  margin-left: -10px;
}
body .contact__social .icon {
  margin-left: 10px;
  margin-right: 10px;
  font-size: 2rem;
}
body .contact__social .icon a {
  font-size: 2rem;
}
body .desktop_menu {
  margin: auto auto auto 127px;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  body .desktop_menu {
    margin: auto auto auto 40px;
  }
}
body .desktop_menu ul, body .desktop_menu li {
  display: inline-block;
}
body .desktop_menu a, body .desktop_menu b {
  font-size: 16px;
}
body .desktop_menu #menu-primary {
  white-space: nowrap;
}
body .desktop_menu #menu-primary > li {
  position: relative;
  margin-right: 32px;
}
body .desktop_menu #menu-primary > li:last-of-type {
  margin-right: 0;
}
body .desktop_menu #menu-primary > li.menu-item-has-children {
  cursor: pointer;
}
body .desktop_menu #menu-primary > li.menu-item-has-children:after {
  content: "";
  position: relative;
  display: inline-block;
  width: 12px;
  height: 8px;
  background-image: url(../images/svg/menu_arrow_down.svg);
  margin-left: 7px;
  top: -2px;
}
body .desktop_menu #menu-primary > li.menu-item-2673 > .sub-menu {
  left: 10px;
}
body .desktop_menu #menu-primary > li.current-menu-item > a:after, body .desktop_menu #menu-primary > li.current-menu-ancestor > a:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ED697A;
}
body .desktop_menu #menu-primary > li:hover > a {
  font-weight: 600;
}
body .desktop_menu #menu-primary > li > a {
  position: relative;
  z-index: 2;
}
body .desktop_menu #menu-primary > li > a:hover {
  text-decoration: none;
}
body .desktop_menu #menu-primary > li > .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: -65px;
  padding: 48px 0 0 0;
  /*li.current-menu-item a {
    background: #FDE4E4;
  }*/
}
body .desktop_menu #menu-primary > li > .sub-menu.level-3-is-open:before {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
body .desktop_menu #menu-primary > li > .sub-menu:before {
  content: "";
  width: 100%;
  height: calc(100% - 48px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(182, 169, 203, 0.6);
}
body .desktop_menu #menu-primary > li > .sub-menu li:first-of-type a {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
body .desktop_menu #menu-primary > li > .sub-menu li:last-of-type a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
body .desktop_menu #menu-primary > li > .sub-menu a {
  display: block;
  position: relative;
  padding: 13px 20px;
  white-space: nowrap;
  font-size: 18px;
  line-height: 27px;
  z-index: 1;
}
body .desktop_menu #menu-primary > li > .sub-menu a:hover {
  background: #FDE4E4;
}
body .desktop_menu #menu-primary > li > .sub-menu a span {
  display: inline-block;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
}
body .desktop_menu #menu-primary > li > .sub-menu > li {
  display: block;
}
body .desktop_menu #menu-primary > li > .sub-menu > li > .sub-menu {
  display: none;
  position: absolute;
  top: 0;
  right: -270px;
  width: 270px;
  height: 100%;
  padding-top: 89px;
  padding-left: 44px;
}
body .desktop_menu #menu-primary > li > .sub-menu > li > .sub-menu:before {
  content: "";
  width: 100%;
  height: calc(100% - 43px);
  position: absolute;
  bottom: 0;
  left: 0;
  background: #362B5C;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}
body .desktop_menu #menu-primary > li > .sub-menu > li > .sub-menu li {
  display: block;
  margin-bottom: 0;
}
body .desktop_menu #menu-primary > li > .sub-menu > li > .sub-menu a {
  padding-left: 0;
  color: white;
}
body .flyout {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  z-index: 12;
  transition: 0.3s;
}
body .flyout__inner {
  position: absolute;
  width: 300px;
  height: 100%;
  top: 0;
  right: 0;
  text-align: left;
  margin: auto auto auto 85px;
  background: white;
  z-index: 11;
}
body .flyout__inner .scroll {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 80px 32px 30px 32px;
  height: 100%;
  overflow-x: scroll;
}
@media (min-width: 1200px) {
  body .flyout__inner .scroll {
    overflow-x: auto;
  }
}
body .flyout__inner .menus {
  width: 100%;
  margin-bottom: 50px;
}
body .flyout__inner ul, body .flyout__inner li {
  margin: 0;
  padding: 0;
  list-style: none;
}
body .flyout__inner ul {
  margin-bottom: 33px;
}
body .flyout__inner ul.footer-menu li.title {
  display: none;
}
body .flyout__inner li {
  margin-bottom: 20px;
}
body .flyout__inner a, body .flyout__inner b {
  display: block;
  font-size: 18px;
  line-height: 25px;
}
body .flyout__inner a div.bankid-menu, body .flyout__inner b div.bankid-menu {
  width: 30px;
  height: 30px;
  float: right;
  margin-top: 10px;
  margin-right: 20px;
  background-image: url("../images/svg/bankid.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (min-width: 1200px) {
  body .flyout__inner a:hover, body .flyout__inner b:hover {
    text-decoration: underline;
  }
}
body .flyout__inner div.close-menu {
  text-align: center;
  position: absolute;
  right: 20px;
  top: 20px;
}
body .flyout__inner div.close-menu .close-out:before, body .flyout__inner div.close-menu .close-out:after {
  transform: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body .flyout__inner div.close-menu .close-out.open:before {
  transform: rotate(45deg);
}
body .flyout__inner div.close-menu .close-out.open:after {
  transform: rotate(-45deg);
}
body .flyout__inner div.close-menu .close-out.open:before, body .flyout__inner div.close-menu .close-out.open:after {
  transition-delay: 0.4s;
}
body .flyout.open {
  left: 0;
}
body .flyout.open .flyout__inner:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 100%;
  top: 0;
  left: -20px;
  background-image: linear-gradient(to right, transparent, #000);
  opacity: 0.4;
}
body .mobile-menu a {
  position: relative;
}
body .mobile-menu > li.menu-item-has-children > a > .toggle {
  display: block;
}
body .mobile-menu > li.current-menu-item > a, body .mobile-menu > li.current-menu-ancestor > a {
  text-decoration: underline;
  -webkit-text-decoration-color: #FF7573;
          text-decoration-color: #FF7573;
}
body .mobile-menu > li > .sub-menu {
  display: none;
  padding-top: 15px;
  padding-left: 15px;
}
body .mobile-menu > li > .sub-menu > .menu-item-has-children > a > .toggle {
  display: block;
}
body .mobile-menu > li > .sub-menu > .menu-item-has-children .sub-menu {
  display: none;
  padding-left: 15px;
}
body .mobile-menu .toggle {
  display: none;
  width: 28px;
  height: 16px;
  position: absolute;
  top: 10px;
  right: 10px;
  background-image: url(../images/icons/menu-dropdown.svg);
  background-size: 14px 8px;
  background-repeat: no-repeat;
  background-position: right center;
  filter: invert(100%);
  z-index: 1;
}
body .mobile-menu .toggle.active {
  transform: rotate(-180deg);
}
body .secondary {
  margin: auto 0 auto auto;
}
body .secondary ul {
  display: none;
  margin: 0;
  padding: 0;
}
body .secondary ul li {
  list-style: none;
}
body .secondary ul li:not(:last-of-type) {
  margin-right: 15px;
}
@media (min-width: 1200px) {
  body .secondary ul li {
    display: flex;
  }
}
@media (min-width: 1200px) {
  body .secondary ul {
    display: flex;
    margin-right: 20px;
  }
}
body .flyout .primary > li > a {
  font-weight: bold;
}
body .flyout .secondary {
  margin-bottom: 20px;
}
body .flyout .secondary li.mypages {
  position: relative;
}
body .flyout .secondary li.mypages a {
  position: relative;
  z-index: 1;
}
body .flyout .secondary li.mypages:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 10px;
  margin-right: 20px;
  background-image: url(../images/svg/bankid.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
body .flyout .contact__social {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 60px;
  left: calc(50% + 18px);
  width: 100%;
  margin-left: -18px;
  margin-right: -18px;
  padding-bottom: 35px;
}
body .flyout .contact__social .share_label {
  position: relative;
  top: 7px;
}
body .flyout .contact__social .share_label img {
  vertical-align: middle;
}
body .flyout .contact__social > div {
  margin-left: 18px !important;
  margin-right: 18px !important;
}
body .flyout .contact__social > div:nth-of-type(2) img {
  width: 27px;
  height: 27px;
}
body .flyout .contact__social > div:nth-of-type(3) img {
  width: 25px;
  height: 25px;
}
body .flyout .contact__social .share_icon.icon {
  margin: 0;
}
body .flyout .contact__social img.pink {
  display: none !important;
}
body .flyout .contact__social img.blue {
  display: inline !important;
}

.secondary a {
  height: 49px;
  border-radius: 50px;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  color: white;
  background-color: #FF7573;
  padding: 10px 27px;
  transition: ease-in-out 0.3s;
}
.secondary a:hover {
  background-color: #667085;
}
.secondary a:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  top: 3px;
  background-image: url(../images/svg/menu_login.svg);
  background-size: contain;
  margin-right: 9px;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.page-footer {
  margin: auto;
  padding-top: 109px;
  padding-bottom: 78px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-footer .container {
    display: flex;
    padding-left: 18px;
  }
  .page-footer .container.top {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .page-footer .text {
    width: 29.77%;
  }
}
@media (max-width: 767.98px) {
  .page-footer .text {
    margin-bottom: 54px;
  }
}
.page-footer .text .identity {
  margin-bottom: 26px;
}
@media (max-width: 767.98px) {
  .page-footer .text .identity {
    margin-bottom: 19px;
  }
}
.page-footer .text .identity a {
  color: #2e2c5e;
  font-weight: 900;
  font-size: 47px;
  margin: 0;
}
@media (max-width: 767.98px) {
  .page-footer .text .identity a {
    font-size: 35px;
  }
}
.page-footer .text .identity a img {
  max-width: 100%;
  max-height: 100%;
  width: 280px;
}
.page-footer .text .identity a span {
  color: #ED697A;
  font-weight: 900;
}
.page-footer .text p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .page-footer .text p {
    margin-bottom: 36px;
  }
}
@media (min-width: 768px) {
  .page-footer .text .button {
    padding: 0 22px;
  }
}
@media (max-width: 767.98px) {
  .page-footer .text .button {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .page-footer .spacer-1 {
    width: 17.13%;
  }
}
@media (min-width: 768px) {
  .page-footer .sitemap {
    width: 31.4%;
    padding-top: 5px;
  }
}
.page-footer .sitemap .footer-menu {
  grid-template-columns: 1fr auto;
  display: grid;
  margin: 0;
  padding: 0;
}
@media (max-width: 767.98px) {
  .page-footer .sitemap .footer-menu {
    margin-right: 22px;
    margin-bottom: 23px;
  }
}
.page-footer .sitemap .footer-menu li {
  list-style: none;
  margin-bottom: 14px;
}
@media (max-width: 767.98px) {
  .page-footer .sitemap .footer-menu li {
    margin-bottom: 16px;
  }
}
.page-footer .sitemap .footer-menu > li.title {
  margin-bottom: 15px;
}
.page-footer .sitemap .footer-menu > li.title a {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .page-footer .sitemap .footer-menu > li.title {
    margin-bottom: 19px;
  }
}
.page-footer .sitemap .footer-menu > li:not(.title) a:hover {
  text-decoration: underline;
}
.page-footer .sitemap .footer-menu a {
  font-size: 16px;
  line-height: 24px;
}
.page-footer .sitemap .footer-menu .sub-menu {
  margin: 20px 0 30px 0;
  padding: 0;
}
.page-footer .sitemap .footer-menu .sub-menu li {
  font-size: 15px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .page-footer .spacer-2 {
    width: 9.3%;
  }
}
.page-footer .contact__info {
  position: relative;
}
@media (min-width: 768px) {
  .page-footer .contact__info {
    width: 12.02%;
    padding-top: 3px;
  }
}
.page-footer .contact__info h4 {
  margin-bottom: 18px;
}
@media (max-width: 767.98px) {
  .page-footer .contact__info h4 {
    margin-bottom: 17px;
  }
}
.page-footer .contact__info p {
  font-size: 15px;
  line-height: 2;
  margin-bottom: 12px;
}
.page-footer .contact__info p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .page-footer .contact__info p {
    margin-bottom: 8px;
  }
}
.page-footer .contact__info a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .page-footer {
    padding-top: 72px;
    padding-bottom: 70px;
  }
}

#page_footer .contact__social-heading {
  font-weight: bold;
}
#page_footer div.contact__social {
  display: flex;
  justify-content: space-between;
  width: 12.8%;
  margin-top: 15px;
  margin-left: auto;
}
#page_footer div.contact__social div.icon {
  margin-left: 0;
  margin-right: 0;
}
#page_footer div.contact__social div.icon a,
#page_footer div.contact__social div.icon .share_label {
  transition: ease-in-out 0.3s;
}
#page_footer div.contact__social div.icon .share_label {
  position: relative;
  top: -12px;
}
#page_footer div.contact__social div.icon a:hover,
#page_footer div.contact__social div.icon .share_label:hover {
  filter: grayscale(100%) opacity(0.7);
}

.sub-footer {
  background: #362B5C;
}
@media (min-width: 768px) {
  .sub-footer .container {
    display: flex;
    align-items: center;
    height: 74px;
  }
}
.sub-footer .container .contact__social {
  margin-bottom: 29px;
}
@media (min-width: 768px) {
  .sub-footer .container .contact__social {
    margin-bottom: 24px;
  }
}
.sub-footer .container .contact__social .share_label {
  position: relative;
  top: -12px;
}
.sub-footer .container .contact__social .icon {
  margin-left: 17px;
  margin-right: 17px;
}
.sub-footer .container .copyright {
  color: white;
  margin: auto auto auto 0;
}
.sub-footer .container ul {
  display: flex;
  margin: auto 0 auto auto;
  padding: 0;
}
.sub-footer .container ul li {
  list-style: none;
}
.sub-footer .container ul li:not(:last-of-type) {
  margin-right: 51px;
}
@media (max-width: 767.98px) {
  .sub-footer .container ul li:not(:last-of-type) {
    margin-right: 25px;
  }
}
.sub-footer .container ul a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #FDE4E4;
}
.sub-footer .container ul a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  .sub-footer {
    padding-top: 27px;
    padding-bottom: 24px;
  }
}

#app > h2, #app > h3, #app > h4, #app > h5, #app > h6, #app > p, #app > blockquote {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
#app .table-wrapper {
  overflow-x: auto;
  margin-bottom: 25px;
}
#app table {
  width: 100%;
  border: none;
  border-spacing: 0;
  border-collapse: collapse;
  text-align: center;
  padding: 0;
}
#app table th {
  color: white;
  background: #362B5C;
  border: 1px solid #615f6b;
  padding: 30px 15px;
}
#app table td {
  border: 1px solid #362B5C;
  padding: 16px 15px;
}
@media (min-width: 1200px) {
  #app table th, #app table td {
    padding-left: 0;
    padding-right: 0;
  }
}
#app > section.new_red_light, #app > section.full-width-image-text .content.new_red_light {
  background-color: #FDE4E4;
}
#app > section.white, #app > section.full-width-image-text .content.white {
  background-color: #fff;
}
#app > section.new_blue, #app > section.full-width-image-text .content.new_blue {
  background-color: #2e2c5e;
}
#app > section.new_blue *, #app > section.full-width-image-text .content.new_blue * {
  color: #FDE4E4;
}
#app > section.new_blue th, #app > section.new_blue td, #app > section.full-width-image-text .content.new_blue th, #app > section.full-width-image-text .content.new_blue td {
  border-color: #fff;
}
#app > section.new_blue .faq div.accordion div.accordion__item, #app > section.full-width-image-text .content.new_blue .faq div.accordion div.accordion__item {
  border-color: #fff;
}
#app > section.new_blue .faq .accordion__toggle-button:before,
#app > section.new_blue .faq .accordion__toggle-button:after, #app > section.full-width-image-text .content.new_blue .faq .accordion__toggle-button:before,
#app > section.full-width-image-text .content.new_blue .faq .accordion__toggle-button:after {
  background: #fff;
}
#app > section.new_blue .h1.red, #app > section.full-width-image-text .content.new_blue .h1.red {
  color: #ED697A;
}
#app > section.new_blue .boxes h3, #app > section.full-width-image-text .content.new_blue .boxes h3 {
  color: #2e2c5e;
}
#app > section.white_alt, #app > section.full-width-image-text .content.white_alt {
  background-color: #FEF8F9;
}
#app > section iframe, #app > section.full-width-image-text .content iframe {
  height: 500px;
}
#app img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-block {
  background: white;
}

.wp-block-separator {
  position: relative;
  height: 1px;
  border: none;
  background: #1E1E1E;
  margin: 0;
}

.text-plus-image + .wp-block {
  margin-top: -40px;
}

.signup + .wp-block {
  margin-top: -5px;
}

body .to-top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 50px;
  right: 20px;
  background-color: #ED697A;
  z-index: 5;
  transition: 0.3s;
  opacity: 0;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background-image: url(../images/svg/arrow_up.svg);
  background-size: cover;
  background-position: center;
}
body .to-top.displayed {
  opacity: 1;
}
@media (min-width: 1200px) {
  body .to-top:hover {
    box-shadow: none;
  }
}

div.content.contact div.contact__social .share_icon, .share_icon {
  position: relative;
  display: inline-block;
}
div.content.contact div.contact__social .share_icon .social_share, .share_icon .social_share {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}
div.content.contact div.contact__social .share_icon .social_share .social_share_inner, .share_icon .social_share .social_share_inner {
  background-color: white;
  position: relative;
  padding: 100px 50px;
  max-width: 90%;
}
div.content.contact div.contact__social .share_icon .social_share .social_share_inner h3, .share_icon .social_share .social_share_inner h3 {
  font-size: 1.5rem;
  margin-bottom: 50px;
  max-width: 400px;
}
div.content.contact div.contact__social .share_icon .social_share .social_share_inner i, .share_icon .social_share .social_share_inner i {
  cursor: pointer;
  font-size: 3rem;
}
div.content.contact div.contact__social .share_icon .social_share .social_share_inner i:hover, .share_icon .social_share .social_share_inner i:hover {
  opacity: 0.8;
}
div.content.contact div.contact__social .share_icon .social_share .social_share_inner .close-out, .share_icon .social_share .social_share_inner .close-out {
  position: absolute;
  top: 30px;
  right: 20px;
}
div.content.contact div.contact__social .share_icon .social_share.open, .share_icon .social_share.open {
  display: flex;
}
div.content.contact div.contact__social .share_icon div, .share_icon div {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 2rem;
}
div.content.contact div.contact__social .share_icon div.share_label, .share_icon div.share_label {
  margin-left: 0;
  margin-right: 0;
}
div.content.contact div.contact__social .share_icon div.share_label img, .share_icon div.share_label img {
  width: 27px;
}
div.content.contact div.contact__social .share_icon .social_share_icons, .share_icon .social_share_icons {
  position: absolute;
  width: 250px;
  left: -100px;
  top: -100px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 15px;
  display: none;
  z-index: 10;
}
div.content.contact div.contact__social .share_icon .social_share_icons .close-out, .share_icon .social_share_icons .close-out {
  padding-top: 3px;
  display: inline-block !important;
  position: relative !important;
  top: 0 !important;
  right: 0 !important;
}
@media (min-width: 1200px) {
  div.content.contact div.contact__social .share_icon .social_share_icons .share_text, .share_icon .social_share_icons .share_text {
    display: none;
  }
}
div.content.contact div.contact__social .share_icon .social_share_icons.open, .share_icon .social_share_icons.open {
  display: block;
}

section.signup {
  background-color: white;
  padding-top: 119px;
  padding-bottom: 165px;
  overflow-x: hidden;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.signup {
    padding-top: 70px;
    padding-bottom: 121px;
  }
}
@media (max-width: 767.98px) {
  section.signup {
    padding-top: 49px;
    padding-bottom: 78px;
  }
}

body.form-focused {
  width: 100%;
  position: fixed;
}
body.form-focused header {
  display: none;
}
body.form-focused .powered_img {
  display: none;
}
body.form-focused .to-top.displayed {
  display: none;
}
body.form-focused div.get-now #form_wrapper {
  margin-top: 0;
}
body.form-focused div.get-now #form_wrapper form {
  padding: 100px 30px 210px;
}
body.form-focused div.get-now #form_wrap {
  pointer-events: all;
  background-color: #f6ecf3;
  transition: 0.5s;
  position: fixed !important;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 99;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
body.form-focused div.get-now #form_wrap .close-out {
  display: block;
}

div.get-now {
  background-color: transparent !important;
}
div.get-now .cta_wrap {
  padding: 0 20px 30px;
}
div.get-now .cta_wrap .to-form {
  margin-top: 20px;
  margin-bottom: 5px;
  background-color: #FADB5C;
  border-radius: 20px;
  border: 5px solid #2e2c5e;
  padding: 10px;
  text-align: center;
  height: 60px;
}
div.get-now #form_wrap {
  overflow: scroll;
  position: relative;
  background-color: #f2f2f2;
  transition: 0.5s;
}
div.get-now #form_wrap .close-out {
  display: none;
  position: absolute;
  top: 30px;
  right: 30px;
}
div.get-now p.intro {
  color: #929292;
}
div.get-now .grey {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
div.get-now .grey.section_intro {
  max-width: none;
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 20px;
}
div.get-now h1 {
  margin-bottom: 0;
  margin-top: -10px;
  font-size: 4.25rem;
  line-height: 1;
}
div.get-now .counter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
div.get-now .counter .smoke_guide h3 {
  padding-left: 3px;
  font-weight: 600;
}
div.get-now .counter label.checkbox__button {
  margin-bottom: 0;
  cursor: pointer;
}
div.get-now .counter .grey {
  max-width: 100px;
  display: inline-block;
  position: relative;
  text-align: left;
  border-bottom: 2px solid black;
  margin-bottom: 0;
  font-weight: 600;
}
div.get-now .counter h3 {
  margin-bottom: 0.2rem;
}
div.get-now .counter .box_wrap {
  display: flex;
}
div.get-now .counter .box_wrap span {
  padding-top: 3px;
  font-weight: 400;
}
div.get-now .counter .box_wrap label {
  margin-right: 5px;
  margin-left: 5px;
}
div.get-now div.amounts {
  margin-top: 30px;
  margin-bottom: 45px;
}
div.get-now div.amounts label[for="1"] .plan-inner div:last-of-type {
  margin-left: 0;
}
div.get-now div.amounts label[for="1"] .plan-inner div h2:last-of-type {
  display: none;
}
div.get-now div.amounts label {
  width: 100%;
  margin-bottom: 20px;
}
div.get-now div.amounts label[for="3000000"] h2.number {
  position: relative;
}
div.get-now div.amounts label[for="3000000"] h2.number:before {
  content: "";
  position: absolute;
  top: calc(50% + 0px);
  left: -105px;
  transform: translateY(-50%);
  background-image: url(../images/icons/bestseller.png);
  background-size: cover;
  background-position: center;
  width: 90px;
  height: 90px;
}
@media (max-width: 767.98px) {
  div.get-now div.amounts label[for="3000000"] h2.number:before {
    top: 50%;
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575.98px) {
  div.get-now div.amounts label[for="3000000"] h2.number:before {
    left: -80px;
  }
}
div.get-now div.amounts label .plan-inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 60px;
  position: relative;
  border-radius: 10px;
  background-color: #FDE4E4;
  padding: 12px 25px;
  margin-top: 20px;
}
div.get-now div.amounts label .plan-inner div:last-of-type {
  margin-left: auto;
}
div.get-now div.amounts label .plan-inner h2.line-end {
  padding-left: 5px;
}
div.get-now div.amounts label .plan-inner input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
div.get-now div.amounts label .plan-inner .checkbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 39px;
  height: 36px;
  border: 2px solid #362B5C;
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  transition: ease-in-out 0.6s;
}
@media (max-width: 767.98px) {
  div.get-now div.amounts label .plan-inner .checkbox {
    width: 28px;
    height: 26px;
  }
}
div.get-now div.amounts label .plan-inner input[type=radio]:checked + .checkbox {
  background-color: #362B5C;
  background-image: url(../images/svg/checkmark.svg);
}
div.get-now div.amounts label .plan-inner h2.first {
  position: relative;
  padding-left: 54px;
}
@media (max-width: 767.98px) {
  div.get-now div.amounts label .plan-inner h2.first {
    padding-left: 36px;
  }
}
div.get-now div.amounts label .plan-inner h2 {
  display: inline-block;
  font-size: 20px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  div.get-now div.amounts label .plan-inner h2 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now div.amounts label .plan-inner h2 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 360px) {
  div.get-now div.amounts label .plan-inner h2 {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 767.98px) {
  div.get-now div.amounts label .plan-inner {
    height: 44px;
    margin-top: 12px;
    padding: 9px 15px;
  }
}
@media (max-width: 767.98px) {
  div.get-now div.amounts label {
    margin-bottom: 11px;
  }
}
div.get-now div.amounts label:first-child input[type=radio] + div {
  border-top: none;
}
div.get-now div.amounts label:last-child input[type=radio]:checked + div:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: -10px;
  left: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
  opacity: 1;
  transition: 0.2s;
}
@media (max-width: 767.98px) {
  div.get-now div.amounts {
    margin-top: 18px;
    margin-bottom: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now div.amounts {
    margin-top: 20px;
    margin-bottom: 32px;
  }
}
div.get-now div.age-popup {
  width: 100%;
  margin-top: 0;
}
div.get-now div.age-popup div.age-popup__wrap {
  width: 280px;
  height: 280px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__picker {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  overflow: hidden;
  top: 0;
  left: 0;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__picker .age-popup__picker__record {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ED697A;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  background-size: 105%;
  background-position: center;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__picker .age-popup__picker__shadow {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  overflow: hidden;
  transform: rotate(-20deg);
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__picker .age-popup__picker__shadow div {
  position: absolute;
  height: 50%;
  width: 200%;
  left: -50%;
  background-color: #db3c58;
  transition: transform 0.1s;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__picker .age-popup__picker__shadow .top-block {
  top: 0;
  opacity: 0;
  z-index: 1;
  background-color: #ED697A;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__picker .age-popup__picker__shadow .top {
  top: 0;
  transform-origin: bottom center;
  transform: rotate(133.0434782609deg);
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__picker .age-popup__picker__shadow .bottom {
  bottom: 0;
  transform-origin: top center;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__button {
  width: 160px;
  height: 160px;
  background-color: #f7fbfc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 4;
  cursor: default;
  border: 3px solid #f7fbfc;
  padding-top: 10px;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__button h3.upper {
  font-weight: 400;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__button div.age-result h1 {
  display: inline-block;
  width: 47px;
  font-size: 5.25rem;
  text-align: center;
  font-weight: 400;
  padding-top: 10px;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__button .spinner {
  position: absolute;
  top: -3px;
  left: -3px;
  height: 140px;
  width: 140px;
  border-radius: 50%;
  border: 5px solid;
  border-radius: 50%;
  border-color: #EF5FA8 transparent;
  -webkit-animation: spinner1 5000ms infinite;
          animation: spinner1 5000ms infinite;
}
div.get-now div.age-popup div.age-popup__wrap .age-popup__button .spinner2 {
  position: absolute;
  top: 2px;
  left: 2px;
  height: 130px;
  width: 130px;
  border: 5px solid;
  border-radius: 50%;
  border-color: #EF5FA8 transparent;
  -webkit-animation: spinner2 5000ms infinite;
          animation: spinner2 5000ms infinite;
}
div.get-now .continue {
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  div.get-now .continue {
    margin-bottom: 17px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .continue {
    margin-bottom: 20px;
  }
}
div.get-now .button {
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  div.get-now .button {
    height: 45px;
    line-height: 45px;
    padding: 0 17px;
    margin-bottom: 19px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .button {
    margin-bottom: 22px;
  }
}
div.get-now p.login {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767.98px) {
  div.get-now p.login {
    margin-bottom: 31px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now p.login {
    margin-bottom: 10px;
  }
}
div.get-now p.login a {
  color: #362B5C;
  font-weight: 600;
  text-decoration: underline;
}
div.get-now p.login a:hover {
  text-decoration: none;
}
div.get-now .row .get-now-details {
  border-right: 1px solid #B9B2C3;
}
div.get-now .row .get-now-details p + h3 {
  margin-top: 20px;
}
div.get-now .row .get-now-details ul li:not(:last-of-type),
div.get-now .row .get-now-details ol li:not(:last-of-type) {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  div.get-now .row .get-now-details {
    width: 49.5%;
  }
}
@media (max-width: 767.98px) {
  div.get-now .row .get-now-details {
    order: 2;
    border-right: none;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .row .get-now-details {
    padding-left: 37px;
    width: 49.3%;
  }
}
div.get-now .row .card-title {
  max-width: 570px;
}
@media (max-width: 767.98px) {
  div.get-now .row .card-title {
    border-top: 1px solid #B9B2C3;
    padding-top: 50px;
    margin-bottom: 17px;
  }
}
@media (min-width: 768px) {
  div.get-now .row .get-now-calculator {
    padding-left: 63px;
    padding-right: 40px;
  }
}
@media (max-width: 767.98px) {
  div.get-now .row .get-now-calculator {
    order: 1;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .row .get-now-calculator {
    padding-left: 52px;
    padding-right: 30px;
  }
}
@media (min-width: 576px) {
  div.get-now .row .get-now-calculator .step3-wrapper {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .row .get-now-calculator .step3-wrapper {
    display: block;
  }
}
div.get-now .row .get-now-calculator .logos {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 767.98px) {
  div.get-now .row .get-now-calculator .logos {
    margin-bottom: 33px;
  }
}
@media (max-width: 575.98px) {
  div.get-now .row .get-now-calculator .logos {
    margin-left: 0;
  }
}
div.get-now .row .get-now-calculator .logos a:not(:last-of-type) {
  margin-right: 13px;
}
div.get-now .row .get-now-calculator .logos img {
  image-rendering: -webkit-optimize-contrast;
  max-height: 57px;
  vertical-align: top;
}
div.get-now .row .heading,
div.get-now .row .thread-entry__content {
  margin-bottom: 42px;
}
@media (max-width: 767.98px) {
  div.get-now .row .heading,
div.get-now .row .thread-entry__content {
    margin-bottom: 28px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .row .heading,
div.get-now .row .thread-entry__content {
    margin-bottom: 44px;
  }
}
div.get-now .row .title-wrapper {
  display: flex;
  margin-bottom: 19px;
}
@media (max-width: 767.98px) {
  div.get-now .row .title-wrapper {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .row .title-wrapper {
    margin-bottom: 25px;
  }
}
div.get-now .row .title-wrapper h4 {
  margin-bottom: 0;
}
div.get-now .row .title-wrapper h6 {
  height: 58px;
  line-height: 58px;
  font-weight: 700;
  font-size: 20px;
  color: #2e2c5e;
  background: #FDE4E4;
  border-radius: 30px;
  margin-top: -12px;
  margin-left: auto;
  margin-bottom: 0;
  padding: 0 20px 0 14px;
}
@media (max-width: 767.98px) {
  div.get-now .row .title-wrapper h6 {
    height: 34px;
    line-height: 34px;
    padding: 0 11px;
    margin-top: -3px;
    margin-bottom: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .row .title-wrapper h6 {
    padding-right: 20px;
  }
}
div.get-now .row .get-now-calculator .range-slider {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
  padding: 0;
}
@media (max-width: 767.98px) {
  div.get-now .row .get-now-calculator .range-slider {
    margin-bottom: 34px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .row .get-now-calculator .range-slider {
    margin-bottom: 46px;
  }
}
div.get-now .row .range-slider-rail,
div.get-now .row .range-slider-fill {
  height: 16px;
  border-radius: 28px;
}
@media (max-width: 767.98px) {
  div.get-now .row .range-slider-rail,
div.get-now .row .range-slider-fill {
    height: 9px;
    border-radius: 16px;
  }
}
div.get-now .row .get-now-calculator .range-slider-rail {
  background-color: #B9B2C3;
}
div.get-now .row .get-now-calculator .range-slider-fill {
  background-color: #2e2c5e;
}
div.get-now .row .get-now-calculator .range-slider-knob {
  width: 50px;
  height: 50px;
  box-shadow: none;
  background-color: #2e2c5e;
}
div.get-now .row .get-now-calculator .range-slider-knob:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 100%;
}
@media (max-width: 767.98px) {
  div.get-now .row .get-now-calculator .range-slider-knob:after {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 767.98px) {
  div.get-now .row .get-now-calculator .range-slider-knob {
    width: 30px;
    height: 30px;
  }
}
div.get-now .row .get-now-details p {
  margin-bottom: 35px;
}
div.get-now .row .get-now-details p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  div.get-now .row .get-now-details p {
    margin-bottom: 22px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  div.get-now .row .get-now-details p {
    margin-bottom: 30px;
  }
}
div.get-now .row .get-now-details img {
  display: block;
}

.open-signup-modal {
  font-size: small;
  text-decoration: underline;
  cursor: pointer;
}

.signup-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  transform: translate(-50%, -50%);
  padding: 40px 30px 50px 30px;
  background: white;
  z-index: 11;
}
@media (max-width: 767.98px) {
  .signup-modal {
    height: 100%;
  }
}
.signup-modal h3 {
  padding-right: 20%;
}
.signup-modal .close-out {
  position: absolute;
  top: 30px;
  right: 20px;
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 2rem;
}
.signup-modal .form {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.signup-modal .form .field-wrapper {
  flex: 50%;
  max-width: 50%;
  margin-bottom: 15px;
  padding: 0 15px;
}
.signup-modal .form .field-wrapper.field-textarea {
  flex: 100%;
  max-width: 100%;
}
.signup-modal .form .field-wrapper.field-button {
  margin-top: 5px;
  margin-left: auto;
}
.signup-modal .form .field-wrapper.field-link {
  font-size: 14px;
}
.signup-modal .form .field-wrapper.field-link a {
  text-decoration: underline;
}
.signup-modal .form .field-wrapper.field-link a:hover {
  text-decoration: none;
}
.signup-modal input:not(.button),
.signup-modal textarea {
  border-radius: 10px;
  border: 2px solid #362b5c;
  background: transparent;
  padding: 5px;
  width: 100%;
}
.signup-modal textarea {
  height: 100px;
}
.signup-modal .button {
  width: 100%;
  margin: 0;
  border-width: 3px;
}
.signup-modal .wpcf7 form .wpcf7-response-output {
  margin: 0;
}

.signup-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 10;
}

.content + section.signup {
  padding-top: 146px;
}

.text-plus-image.white + .signup {
  padding-top: 0;
}

section.slider {
  position: relative;
  padding-top: 168px;
  padding-bottom: 164px;
  overflow: hidden;
}
section.slider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 172px;
  background-image: url(../images/svg/testimonials_top.svg);
  background-color: white;
}
@media (max-width: 767.98px) {
  section.slider:before {
    height: 47px;
    background-image: url(../images/svg/testimonials_top_m.svg);
  }
}
@media (min-width: 1400px) {
  section.slider .container {
    max-width: 1250px;
  }
}
section.slider .slider-wrap {
  background-color: #FDE4E4;
}
section.slider .title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  section.slider .title {
    margin-bottom: 10px;
  }
}
section.slider .h2 {
  margin-bottom: 25px !important;
  padding: 0 !important;
}
@media (max-width: 767.98px) {
  section.slider .h2 {
    margin-bottom: 42px !important;
  }
}
section.slider .slider-container {
  display: flex;
  align-items: center;
}
section.slider .slider-container .slide {
  height: 100%;
  display: flex;
  align-items: center;
}
section.slider .slider-container .slide .main-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 93%;
  height: 100%;
  margin: 0 auto;
  padding-top: 120px;
}
section.slider .slider-container .slide .main-wrap .image-wrap {
  width: 100%;
  display: block;
  text-align: center;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  background-color: white;
}
section.slider .slider-container .slide .main-wrap .image-wrap br {
  display: none;
}
section.slider .slider-container .slide .main-wrap .image-wrap .avatar {
  position: relative;
  top: -60px;
  height: 120px;
  width: 120px;
  display: block;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto -44px auto;
}
@media (max-width: 767.98px) {
  section.slider .slider-container .slide .main-wrap .image-wrap .avatar {
    width: 112px;
    height: 112px;
    top: -56px;
    margin-bottom: -36px;
  }
}
section.slider .slider-container .slide .main-wrap .image-wrap .h3 {
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 7px;
}
@media (max-width: 767.98px) {
  section.slider .slider-container .slide .main-wrap .image-wrap .h3 {
    margin-bottom: 12px;
  }
}
section.slider .slider-container .slide .main-wrap .text-wrap {
  flex: 1;
  display: block;
  align-content: center;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  background-color: white;
  padding: 0 55px 55px 48px;
}
section.slider .slider-container .slide .main-wrap .text-wrap .h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  text-align: center;
  color: #332E2E;
  margin-bottom: 24px;
  display: block;
}
section.slider .slider-container .slide .main-wrap .text-wrap p {
  font-size: 16px;
  line-height: 24px;
  color: #667085;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  section.slider .slider-container .slide .main-wrap .text-wrap {
    padding: 0 39px 30px 39px;
  }
}
section.slider .slider-container .slide .main-wrap .rate {
  border-top: 1px solid #2e2c5e;
  margin-bottom: 9px;
  padding: 13px 0 0 0;
}
@media (max-width: 767.98px) {
  section.slider .slider-container .slide .main-wrap .rate {
    margin-top: -14px;
    padding-top: 26px;
  }
}
section.slider .slider-container .slide .main-wrap .rate input {
  position: absolute;
  top: -9999px;
}
section.slider .slider-container .slide .main-wrap .rate label {
  width: 20px;
  overflow: hidden;
  white-space: nowrap;
  font-size: 20px;
  color: #ccc;
}
section.slider .slider-container .slide .main-wrap .rate label:before {
  content: "★ ";
}
section.slider .slider-container .slide .main-wrap .rate label.checked {
  color: #F7DE5C !important;
}
@media (min-width: 480px) and (max-width: 725px) {
  section.slider .slider-container .slide .main-wrap .rate {
    height: 25px;
  }
  section.slider .slider-container .slide .main-wrap .rate label {
    width: 15px;
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  section.slider .slider-container .slide .main-wrap {
    background-size: contain;
  }
  section.slider .slider-container .slide .main-wrap .text-wrap p {
    font-size: 0.9rem;
  }
}
@media (max-width: 767.98px) {
  section.slider .slider-container .slide .main-wrap {
    padding-top: 56px;
  }
}
section.slider .slider-container .agile__actions {
  display: flex;
  justify-content: center;
}
section.slider .slider-container .agile__actions ul.agile__dots {
  margin-top: 10px;
}
@media (min-width: 1200px) {
  section.slider .slider-container .agile__actions ul.agile__dots {
    display: none;
  }
}
section.slider .slider-container .agile__actions ul.agile__dots li button {
  border-radius: 50%;
  padding: 7px;
  background-color: transparent;
  border-color: #362B5C;
  margin: 0 3px;
}
section.slider .slider-container .agile__actions ul.agile__dots li.agile__dot--current button {
  background-color: #362B5C;
}
section.slider .slider-container .agile__actions .agile__nav-button {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  height: 100%;
  position: absolute;
  top: 80px;
  transition: 0.3s all ease;
  width: 80px;
  width: auto;
}
@media (max-width: 767.98px) {
  section.slider .slider-container .agile__actions .agile__nav-button {
    top: 84px;
  }
}
section.slider .slider-container .agile__actions .agile__nav-button.agile__nav-button--next {
  right: -30px;
  text-indent: 5px;
}
@media (max-width: 767.98px) {
  section.slider .slider-container .agile__actions .agile__nav-button.agile__nav-button--next {
    right: -32px;
  }
}
@media (max-width: 400px) {
  section.slider .slider-container .agile__actions .agile__nav-button.agile__nav-button--next {
    right: -26px;
  }
}
section.slider .slider-container .agile__actions .agile__nav-button.agile__nav-button--next i {
  background-image: url(../images/svg/arrow_right.svg);
}
section.slider .slider-container .agile__actions .agile__nav-button.agile__nav-button--prev {
  left: -35px;
  text-indent: -5px;
}
@media (max-width: 767.98px) {
  section.slider .slider-container .agile__actions .agile__nav-button.agile__nav-button--prev {
    left: -26px;
  }
}
section.slider .slider-container .agile__actions .agile__nav-button.agile__nav-button--prev i {
  background-image: url(../images/svg/arrow_left.svg);
}
section.slider .slider-container .agile__actions .agile__nav-button i {
  display: block;
  background-size: cover !important;
  background-position: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #ED697A;
  border-radius: 100%;
  color: white;
}
section.slider .slider-container .agile__actions .agile__nav-button i:before {
  display: none;
}
@media (min-width: 1200px) {
  section.slider .slider-container:hover .agile__nav-button {
    display: block !important;
  }
}
@media (max-width: 767.98px) {
  section.slider {
    padding-top: 119px;
    padding-bottom: 62px;
  }
}

.new_blue + .slider:before {
  background-color: #2e2c5e;
}

.white_alt + .slider:before {
  background-color: #FEF8F9;
}

.new_red_light + .slider:before {
  background-color: #FDE4E4;
}

.text-center {
  text-align: center !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

section.accordion {
  padding-top: 130px;
  padding-bottom: 68px;
}
section.accordion .container {
  max-width: 844px;
}
section.accordion h2 {
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  section.accordion h2 {
    font-size: 38px;
    line-height: 53.2px;
    margin-bottom: 17px;
  }
}
section.accordion .intro {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  section.accordion .intro {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 28px;
  }
}
section.accordion .items {
  margin-bottom: 50px;
}
section.accordion .items .item {
  border-top: 1px solid #D9D9D9;
}
section.accordion .items .item:first-of-type {
  border-top: none;
}
section.accordion .items .item .title {
  position: relative;
  font-weight: 500;
  margin: 0;
  padding-top: 24px;
  padding-bottom: 35px;
  cursor: pointer;
}
section.accordion .items .item .title:after {
  content: "";
  position: absolute;
  top: 25px;
  right: 5px;
  width: 25px;
  height: 25px;
  background-image: url(../images/svg/plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: auto;
  transition: transform 0.2s ease;
}
@media (max-width: 767.98px) {
  section.accordion .items .item .title:after {
    top: 28px;
    right: -1px;
  }
}
section.accordion .items .item .title.active {
  padding-bottom: 10px;
}
section.accordion .items .item .title.active:after {
  background-image: url(../images/svg/minus.svg);
}
section.accordion .items .item .title span {
  display: inline-block;
  max-width: 679px;
}
@media (max-width: 767.98px) {
  section.accordion .items .item .title span {
    max-width: none;
    padding-right: 33px;
  }
}
@media (max-width: 767.98px) {
  section.accordion .items .item .title {
    font-size: 20px;
    line-height: 30px;
    padding-top: 26px;
    padding-bottom: 34px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.accordion .items .item .title {
    padding-bottom: 32px;
  }
}
section.accordion .items .item .value {
  display: none;
  max-width: 679px;
  padding-bottom: 35px;
}
@media (max-width: 767.98px) {
  section.accordion .items .item .value {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.accordion .items .item .value {
    padding-bottom: 32px;
  }
}
@media (max-width: 767.98px) {
  section.accordion .items {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.accordion .items {
    margin-bottom: 28px;
  }
}
section.accordion .button {
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  border-width: 2px;
  padding: 0 105px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.accordion .button {
    height: 45px;
    line-height: 45px;
  }
}
@media (max-width: 413px) {
  section.accordion .button {
    padding: 0 90px;
  }
}
section.accordion.white .value, section.accordion.white p {
  color: #667085;
}
section.accordion.new_blue .items .item .title:after {
  background-image: url(../images/svg/plus_pink.svg);
}
section.accordion.new_blue .items .item .title.active:after {
  background-image: url(../images/svg/minus_pink.svg);
}
@media (max-width: 767.98px) {
  section.accordion {
    padding-bottom: 82px;
  }
}

.hero-umbrella + section.accordion {
  padding-top: 37px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  .hero-umbrella + section.accordion {
    padding-top: 47px;
  }
}

.text-plus-image.white + .accordion.white {
  padding-top: 0;
}

.headroom--not-top {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
  transform: translateY(-100%);
  transition: top 0.5s;
}

.headroom--not-top.headroom--pinned {
  top: 84px;
  transform: translateY(0);
}

.headroom--not-top.headroom--unpinned {
  top: 0;
  transform: translateY(0);
}

.reflex {
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.reflex .MuiContainer-root {
  max-width: 800px !important;
  margin-top: 0px !important;
}
.reflex .MuiContainer-root iframe {
  border-style: none !important;
}
.reflex .MuiContainer-root .sc-bkzYnD {
  margin-bottom: 3em !important;
}
.reflex .MuiContainer-root .sc-bkzYnD .sc-dlfnuX {
  border-bottom: 0px !important;
}
.reflex .MuiContainer-root .sc-bkzYnD .sc-dlfnuX h1 {
  font-weight: 800;
  font-size: 2.4rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Poppins", sans-serif;
  color: #362B5C !important;
}
.reflex .MuiContainer-root .sc-bkzYnD .hcoXNi .MuiPaper-root {
  width: auto !important;
}
.reflex .MuiContainer-root .sc-bkzYnD .sc-hKgJUU h2 {
  font-family: "Poppins", sans-serif !important;
}
.reflex .MuiContainer-root .sc-bkzYnD .MuiPaper-root {
  width: auto !important;
}
.reflex .MuiPaper-root .sc-bqyKOL {
  text-align: left !important;
}
.reflex .idunliv-forsakringstagare-thanksAfterAvtal h1,
.reflex .idunliv-forsakrad-halsodeklaration h1,
.reflex .idunliv-forsakringstagare-contact h1,
.reflex .idunliv-forsakringstagare-offert h1,
.reflex .idunliv-forsakrad-review h1,
.reflex .idunliv-forsakrad-revie h1,
.reflex .liv-forsakrad-review h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
}
.reflex .idunliv-forsakringstagare-thanksAfterAvtal .sc-dlfnuX,
.reflex .idunliv-forsakrad-halsodeklaration .sc-dlfnuX,
.reflex .idunliv-forsakringstagare-contact .sc-dlfnuX,
.reflex .idunliv-forsakringstagare-offert .sc-dlfnuX,
.reflex .idunliv-forsakrad-review .sc-dlfnuX,
.reflex .idunliv-forsakrad-revie .sc-dlfnuX,
.reflex .liv-forsakrad-review .sc-dlfnuX {
  border-bottom: 0px !important;
}
.reflex .MuiLink-underlineHover {
  text-decoration: underline !important;
}
.reflex .idunliv-forsakringstagare-offert {
  text-align: left !important;
}
.reflex .reflex-back {
  padding-bottom: 70px;
}
.reflex .reflex-back a {
  font-size: 0.7rem;
  border-bottom: 3px solid #FADB5C;
  font-weight: 500;
}
.reflex .MuiTooltip-popper .MuiTooltip-tooltip {
  background-color: rgba(255, 255, 255, 0.9) !important;
}
.reflex .MuiTypography-colorPrimary {
  color: #362B5C !important;
}
.reflex .MuiInputLabel-root.Mui-focused {
  color: #362B5C !important;
}
.reflex .MuiInput-underline::after {
  border-bottom: 2px solid #362B5C !important;
}
.reflex .MuiGrid-grid-md-3 {
  max-width: 50% !important;
  flex-basis: 50% !important;
}
.reflex .MuiGrid-grid-md-9 {
  max-width: 50% !important;
  flex-basis: 50% !important;
}
.reflex .MuiBox-root.jss12 .jss13 {
  margin-left: 0% !important;
}
.reflex .MuiBox-root.jss12 .jss15 {
  margin-left: 0% !important;
}
.reflex .MuiBox-root.jss19 {
  text-align: left !important;
}
.reflex .MuiBox-root.jss20 {
  text-align: left !important;
}
.reflex .MuiBox-root.jss21 {
  text-align: left !important;
}

#breadcrumbs {
  margin-bottom: 78px;
}

section.contact-form .form.container,
section.contact .form.container {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  section.contact-form .form.container,
section.contact .form.container {
    max-width: 512px;
  }
  section.contact-form .form.container .row,
section.contact .form.container .row {
    margin-left: -16px;
    margin-right: -16px;
  }
  section.contact-form .form.container .row > *,
section.contact .form.container .row > * {
    padding-left: 16px;
    padding-right: 16px;
  }
}
section.contact-form p,
section.contact p {
  margin-bottom: 2px;
}
@media (max-width: 767.98px) {
  section.contact-form label,
section.contact label {
    display: block;
    margin-top: -4px;
  }
}
section.contact-form input[type=text],
section.contact-form input[type=email],
section.contact-form input[type=tel],
section.contact-form textarea,
section.contact input[type=text],
section.contact input[type=email],
section.contact input[type=tel],
section.contact textarea {
  width: 100%;
  height: 48px;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #D0D5DD;
  border-radius: 10px;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  background-color: white;
  padding: 16px;
  margin-top: 5px;
}
section.contact-form input[type=text].wpcf7-not-valid,
section.contact-form input[type=email].wpcf7-not-valid,
section.contact-form input[type=tel].wpcf7-not-valid,
section.contact-form textarea.wpcf7-not-valid,
section.contact input[type=text].wpcf7-not-valid,
section.contact input[type=email].wpcf7-not-valid,
section.contact input[type=tel].wpcf7-not-valid,
section.contact textarea.wpcf7-not-valid {
  border-color: #EF5350;
}
@media (max-width: 767.98px) {
  section.contact-form input[type=text],
section.contact-form input[type=email],
section.contact-form input[type=tel],
section.contact-form textarea,
section.contact input[type=text],
section.contact input[type=email],
section.contact input[type=tel],
section.contact textarea {
    height: 39px;
    font-size: 13px;
    line-height: 19.66px;
    padding: 13px;
  }
}
section.contact-form textarea,
section.contact textarea {
  height: 124px;
}
@media (max-width: 767.98px) {
  section.contact-form textarea,
section.contact textarea {
    height: 100px;
  }
}
section.contact-form .button,
section.contact .button {
  width: 100%;
  height: 48px;
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  border: 1px solid #FDE4E4;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 30px;
  color: #332E2E;
  background: #FDE4E4;
}
section.contact-form .button:hover,
section.contact .button:hover {
  border-color: #D9D9D9;
  background: #D9D9D9;
}
@media (max-width: 767.98px) {
  section.contact-form .button,
section.contact .button {
    height: 43px;
    line-height: 43px;
  }
}
section.contact-form .checkbox,
section.contact .checkbox {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 29px;
}
section.contact-form .checkbox input[type=checkbox],
section.contact .checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  vertical-align: sub;
  margin-right: 12px;
}
section.contact-form .checkbox a,
section.contact .checkbox a {
  font-weight: 400;
  text-decoration: underline;
}
section.contact-form .checkbox a:hover,
section.contact .checkbox a:hover {
  text-decoration: none;
}
@media (max-width: 767.98px) {
  section.contact-form .checkbox,
section.contact .checkbox {
    font-weight: 500;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.contact-form .checkbox,
section.contact .checkbox {
    margin-top: 15px;
    margin-bottom: 45px;
  }
}
section.contact-form .wpcf7-list-item,
section.contact .wpcf7-list-item {
  margin: 0;
}
section.contact-form .wpcf7-spinner,
section.contact .wpcf7-spinner {
  display: none;
}
section.contact-form .wpcf7-not-valid-tip,
section.contact .wpcf7-not-valid-tip {
  color: #EF5350;
  margin-top: 5px;
  margin-bottom: -20px;
}
section.contact-form .wpcf7-not-valid-tip:before,
section.contact .wpcf7-not-valid-tip:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/svg/form_error.svg);
  vertical-align: sub;
  margin-right: 10px;
}

section.hero {
  position: relative;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 50px;
}
@media (min-width: 1200px) {
  section.hero {
    padding-top: 170px;
    padding-bottom: 160px;
  }
}
section.hero .image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
section.hero .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.hero .text {
  position: relative;
  max-width: 1270px;
  margin: 0 auto;
  z-index: 1;
  padding-left: 40px;
  padding-right: 40px;
}
section.hero .text .inner h1, section.hero .text .inner p, section.hero .text .inner li {
  color: white;
}
section.hero .text .inner h1 {
  font-weight: 800;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  section.hero .text .inner h1 {
    font-size: 2.4rem;
  }
}
section.hero .text .inner p {
  max-width: 570px;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
section.hero .text .inner ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 621px;
  margin: 0 0 0 -1px;
  padding: 0;
}
section.hero .text .inner ul li {
  display: block;
  width: 100%;
  list-style: none;
  font-size: 14px;
  padding-right: 5px;
  margin-bottom: 18px;
}
@media (min-width: 1200px) {
  section.hero .text .inner ul li {
    display: inline-block;
    width: 50%;
  }
}
section.hero .text .inner ul li:before {
  content: "";
  display: inline-block;
  width: 27px;
  height: 27px;
  background-image: url(../images/icons/check.png);
  background-size: cover;
  background-position: center center;
  vertical-align: middle;
  margin-right: 10px;
}
section.hero .text .inner .button {
  margin-left: 0;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1200px) {
  section.hero .text .inner .button {
    width: auto;
    padding-left: 42px;
    padding-right: 42px;
  }
}

section.hero-umbrella {
  position: relative;
  background-color: #FDE4E4;
  padding-top: 192px;
  padding-bottom: 270px;
}
section.hero-umbrella:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 849px;
  background-image: url(../images/svg/hero_bg_2.png);
  background-position: bottom center;
  background-repeat: repeat-x;
  background-color: white;
}
@media (max-width: 767.98px) {
  section.hero-umbrella:after {
    bottom: 0;
    height: 155px;
    background-image: url(../images/svg/hero_bg_m_2.png);
    background-size: cover;
    background-position: center;
    z-index: 1;
  }
}
section.hero-umbrella .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  section.hero-umbrella .container {
    z-index: 2;
  }
}
section.hero-umbrella .row {
  margin: 0;
}
section.hero-umbrella .row > div {
  padding: 0;
}
section.hero-umbrella .row > div {
  display: flex;
}
@media (max-width: 767.98px) {
  section.hero-umbrella .row > div:last-of-type {
    display: none;
  }
}
section.hero-umbrella .content {
  margin: auto 0;
}
section.hero-umbrella .content h1 span {
  font-weight: 600;
}
section.hero-umbrella .content .h1 {
  line-height: 120%;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.hero-umbrella .content .h1 {
    font-size: 38px;
  }
}
section.hero-umbrella .content .h2 {
  margin-bottom: 21px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.hero-umbrella .content .h2 {
    font-size: 38px;
    line-height: 53.2px;
  }
}
section.hero-umbrella .content p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  section.hero-umbrella .content p {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 40px;
  }
}
section.hero-umbrella .content .buttons {
  display: flex;
  margin-top: 40px;
}
section.hero-umbrella .content .buttons .button:not(:last-of-type) {
  margin-right: 38px;
}
@media (max-width: 767.98px) {
  section.hero-umbrella .content .buttons .button:not(:last-of-type) {
    margin-right: 16px;
  }
}
section.hero-umbrella .content .contact__social {
  margin-top: 20px;
}
section.hero-umbrella .content .contact__social > div:first-of-type {
  display: none;
}
@media (max-width: 767.98px) {
  section.hero-umbrella .content {
    padding-bottom: 40px;
  }
}
section.hero-umbrella .image {
  margin-top: 6px;
}
section.hero-umbrella .image img {
  display: block;
  border-radius: 50px;
}
section.hero-umbrella .video {
  max-width: 680px;
  position: relative;
}
section.hero-umbrella .video .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
section.hero-umbrella .video .play {
  position: absolute;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  left: 50%;
  top: 40%;
  z-index: 2;
  background-color: #ed697a;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  pointer-events: none;
  padding: 15px;
  transform: translateX(-50%);
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  cursor: pointer;
}
section.hero-umbrella .video video {
  max-width: 100%;
}
@media (max-width: 767.98px) {
  section.hero-umbrella {
    padding-top: 113px;
    padding-bottom: 65px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.hero-umbrella {
    padding-top: 122px;
    padding-bottom: 175px;
  }
}

@media (min-width: 768px) {
  .hero-umbrella.has-parallax .content h1.h2,
.hero-umbrella.has-video .content h1.h2 {
    max-width: 490px;
  }
}
.hero-umbrella.has-parallax .content p,
.hero-umbrella.has-video .content p {
  max-width: 540px;
}
.hero-umbrella.has-parallax .image,
.hero-umbrella.has-video .image {
  margin-top: 0;
}

@media (min-width: 768px) and (max-width: 1919px) {
  .hero-umbrella.has-video {
    padding-top: 130px;
    padding-bottom: 185px;
  }
  .hero-umbrella.has-video .row > div {
    max-width: 46.5%;
  }
  .hero-umbrella.has-video .content p:last-of-type {
    font-size: 20px;
    line-height: 30px;
  }
  .hero-umbrella.has-video .contact__social {
    margin-left: -3px;
  }
}

.hero-umbrella.has-parallax .row > div:last-of-type {
  position: relative;
  bottom: -33px;
  overflow: hidden;
  right: -20px;
  -webkit-clip-path: path("M0,455.6c102.5-17.3,211.2-30.2,344.5-27.6c83.4,0.3,174.5-2.1,302,30.9V0H0V455.6z");
          clip-path: path("M0,455.6c102.5-17.3,211.2-30.2,344.5-27.6c83.4,0.3,174.5-2.1,302,30.9V0H0V455.6z");
}
@media (min-width: 768px) and (max-width: 1919px) {
  .hero-umbrella.has-parallax .row > div:last-of-type {
    bottom: 0;
    right: -35px;
  }
}
@media (min-width: 1500px) {
  .hero-umbrella.has-parallax .row > div:last-of-type {
    right: -35px;
    bottom: 0;
  }
}
@media (min-width: 1800px) {
  .hero-umbrella.has-parallax .row > div:last-of-type {
    right: -35px;
  }
}
@media (min-width: 1900px) {
  .hero-umbrella.has-parallax .row > div:last-of-type {
    bottom: -125px;
  }
}
@media (min-width: 1270px) and (max-width: 1290px) {
  .hero-umbrella.has-parallax .row > div:last-of-type {
    bottom: 6px;
    /* -18px pc */
    right: -30px;
  }
}
@media (min-width: 768px) {
  .hero-umbrella.has-parallax {
    padding-top: 193px;
    padding-bottom: 200px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  .hero-umbrella.has-parallax {
    padding-top: 99px;
    padding-bottom: 110px;
  }
}

@media (min-width: 768px) {
  .hero-umbrella:not(.has-video):not(.has-parallax) .row > div:first-child {
    padding-top: 40px;
    padding-right: 119px;
  }
  .hero-umbrella:not(.has-video):not(.has-parallax) .row > div:last-of-type {
    flex: 0 0 462px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  .hero-umbrella:not(.has-video):not(.has-parallax) .row > div:first-child {
    padding-top: 0;
    padding-right: 109px;
  }
}

@media (min-width: 1270px) and (max-width: 1290px) {
  body.windows .hero-umbrella.has-parallax .row > div:last-of-type {
    bottom: 13px;
  }
}

section.content {
  padding-top: 103px;
  padding-bottom: 58px;
}
@media (max-width: 767.98px) {
  section.content.change-column-order-on-mobile .content-col:first-child {
    order: 2;
    margin-bottom: 0;
  }
  section.content.change-column-order-on-mobile .content-col:last-child {
    order: 1;
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  section.content .content-col:first-child {
    margin-bottom: 30px;
  }
}
section.content .content-col *:last-child {
  margin-bottom: 0;
}
section.content .heading {
  margin-bottom: 50px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.content .heading {
    margin-bottom: 35px;
  }
}
section.content h2 span {
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.content h4 {
    margin-bottom: 18px;
  }
}
section.content p + h4 {
  margin-top: 42px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.content p + h4 {
    margin-top: 32px;
  }
}
section.content p + h3 {
  margin-top: 52px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.content p + h3 {
    margin-top: 35px;
  }
}
section.content p {
  margin-bottom: 20px;
}
section.content ul:not(.checklist) {
  margin: 0;
  padding: 0 0 0 30px;
}
section.content ul:not(.checklist) li {
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.content ul:not(.checklist) li {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  section.content .full-width {
    width: 62%;
  }
}
section.content .row + .row .full-width {
  margin-top: 20px;
}
section.content .more-content-wrapper {
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.content .more-content-wrapper {
    margin-top: 30px;
  }
}
section.content .expand {
  display: inline-block;
  font-weight: 600;
  border-bottom: 1px solid #2e2c5e;
  padding-bottom: 7px;
  cursor: pointer;
  transition: ease-in-out 0.6s;
  margin-bottom: -5px;
}
section.content .expand.is-expanded:after {
  transform: rotate(180deg);
}
section.content .expand:hover {
  border-bottom-color: #FF7573;
  color: #FF7573;
}
section.content .expand:hover:after {
  background-image: url(../images/svg/expand_content_hover.svg);
}
section.content .expand:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  background-image: url(../images/svg/expand_content.svg);
  margin-left: 18px;
  transition: background-image ease-in-out 0.6s;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.content .expand:after {
    margin-left: 26px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.content .expand {
    padding-bottom: 10px;
  }
}
section.content .more-content {
  display: none;
}
section.content .button {
  margin-top: 25px;
}
@media (max-width: 767.98px) {
  section.content {
    padding-top: 47px;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.content {
    padding-top: 78px;
    padding-bottom: 85px;
  }
}

.content.new_blue .expand,
.content.new_blue .expand:active {
  color: #FDF8F9;
  border-bottom-color: #FDF8F9;
}
.content.new_blue .expand:after,
.content.new_blue .expand:active:after {
  background-image: url(../images/svg/expand_content_pink.svg);
}
.content.new_blue .expand:hover,
.content.new_blue .expand:active:hover {
  color: #F9F9F9 !important;
  border-bottom-color: #F9F9F9;
}
.content.new_blue .expand:hover:after,
.content.new_blue .expand:active:hover:after {
  background-image: url(../images/svg/expand_content_white.svg);
}

.hero-umbrella + .content {
  padding-top: 111px;
}
@media (max-width: 767.98px) {
  .hero-umbrella + .content {
    padding-top: 62px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  .hero-umbrella + .content {
    padding-top: 52px;
  }
}

.wp-block + .content {
  padding-top: 60px;
}

@media (min-width: 768px) and (max-width: 1919px) {
  #app > section.content:first-of-type {
    padding-top: 130px;
  }
}

section.text-plus-image {
  background: white;
  padding-top: 146px;
  padding-bottom: 159px;
}
section.text-plus-image .more-content-wrapper {
  margin-top: 40px;
}
section.text-plus-image ul.checklist + .more-content-wrapper {
  margin-top: -50px;
}
section.text-plus-image .expand {
  display: inline-block;
  font-weight: 600;
  border-bottom: 1px solid #2e2c5e;
  padding-bottom: 5px;
  cursor: pointer;
}
section.text-plus-image .expand.is-expanded:after {
  transform: rotate(180deg);
}
section.text-plus-image .expand:hover {
  border-bottom-color: #FF7573;
  color: #FF7573 !important;
}
section.text-plus-image .expand:hover:after {
  background-image: url(../images/svg/expand_content_hover.svg);
}
section.text-plus-image .expand:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  background-image: url(../images/svg/expand_content.svg);
  margin-left: 18px;
}
section.text-plus-image .more-content {
  display: none;
}
section.text-plus-image .row {
  align-items: center;
}
@media (min-width: 1400px) {
  section.text-plus-image .row > div:first-of-type {
    padding-left: 50px;
    padding-right: 118px;
  }
}
@media (min-width: 1400px) {
  section.text-plus-image .row > div:last-of-type {
    padding-left: 26px;
    padding-right: 50px;
  }
}
@media (min-width: 1400px) {
  section.text-plus-image.image-text .row > div:last-of-type {
    padding-left: 50px;
    padding-right: 118px;
  }
}
@media (min-width: 1400px) {
  section.text-plus-image.image-text .row > div:first-of-type {
    padding-left: 28px;
    padding-right: 50px;
  }
}
section.text-plus-image .image img {
  display: block;
  border-radius: 20px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.text-plus-image .image {
    padding-left: 62px;
    padding-right: 42px;
  }
}
section.text-plus-image .text > *:last-child {
  margin-bottom: 0;
}
section.text-plus-image .text h2 {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  section.text-plus-image .text h2 {
    margin-bottom: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.text-plus-image .text h2 {
    margin-bottom: 42px;
  }
}
section.text-plus-image .text h2 span {
  font-weight: 600;
}
section.text-plus-image .text h3 {
  font-weight: 600;
  margin-bottom: 25px;
}
section.text-plus-image .text p + h2 {
  margin-top: 75px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.text-plus-image .text p + h2 {
    margin-top: 35px;
  }
}
section.text-plus-image .text p + h3 {
  margin-top: 35px;
}
section.text-plus-image .text p {
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.text-plus-image .text p {
    margin-bottom: 30px;
  }
}
section.text-plus-image .text ul:not(.checklist) {
  margin: 0;
  padding: 0 0 0 30px;
}
section.text-plus-image .text ul:not(.checklist) li {
  margin-bottom: 15px;
}
section.text-plus-image .text ul.checklist {
  padding: 0;
}
section.text-plus-image .text ul.checklist li {
  margin-bottom: 15px;
}
section.text-plus-image .text ul.checklist li:before {
  top: 50%;
  transform: translateY(-50%);
}
section.text-plus-image .text h3 + ul.checklist {
  padding-top: 7px;
}
section.text-plus-image .text .button {
  margin-top: 40px;
}
section.text-plus-image .text a:not(.button) {
  text-decoration: underline;
}
section.text-plus-image .text a:not(.button):hover {
  text-decoration: none;
}
@media (max-width: 767.98px) {
  section.text-plus-image .text {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  section.text-plus-image.image-text .row > div.text {
    order: 2;
  }
  section.text-plus-image.image-text .row > div.image {
    order: 1;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.text-plus-image.image-text .row > div.text {
    padding-left: 10px;
  }
  section.text-plus-image.image-text .row > div.image {
    padding-right: 110px;
  }
}
@media (max-width: 767.98px) {
  section.text-plus-image {
    padding-top: 48px;
    padding-bottom: 86px;
  }
}

.text-plus-image.new_blue ul.checklist li:before {
  background-image: url(../images/svg/list_check_pink.svg);
}
.text-plus-image.new_blue .expand,
.text-plus-image.new_blue .expand:active {
  color: #FDF8F9;
  border-bottom-color: #FDF8F9;
}
.text-plus-image.new_blue .expand:after,
.text-plus-image.new_blue .expand:active:after {
  background-image: url(../images/svg/expand_content_pink.svg);
}
.text-plus-image.new_blue .expand:hover,
.text-plus-image.new_blue .expand:active:hover {
  color: #F9F9F9 !important;
  border-bottom-color: #F9F9F9;
}
.text-plus-image.new_blue .expand:hover:after,
.text-plus-image.new_blue .expand:active:hover:after {
  background-image: url(../images/svg/expand_content_white.svg);
}
.text-plus-image.new_blue .button.read-more:hover {
  color: #362B5C !important;
  border-color: #FDE4E4;
  background-color: #FDE4E4;
}

.hero-umbrella + .text-plus-image {
  padding-top: 81px;
}

.text-plus-image.white + .text-plus-image.white {
  margin-top: -185px;
}
@media (max-width: 767.98px) {
  .text-plus-image.white + .text-plus-image.white {
    margin-top: -70px;
  }
}

.signup + .text-plus-image.white {
  padding-top: 0;
}

.wp-block + .text-plus-image {
  margin-top: -25px;
}
@media (min-width: 768px) and (max-width: 1919px) {
  .wp-block + .text-plus-image {
    margin-bottom: -20px;
  }
}

section.cta.new_blue h3 {
  color: white !important;
}
section.cta .container {
  padding-top: 78px;
  padding-bottom: 73px;
}
@media (min-width: 768px) {
  section.cta .container {
    display: flex;
    padding-left: 30px;
  }
}
@media (max-width: 767.98px) {
  section.cta .container {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.cta .container {
    padding-left: 20px;
    padding-right: 0;
  }
}
section.cta .text {
  flex: 1;
}
section.cta h2 {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  section.cta h2 {
    font-size: 38px;
    line-height: 53.2px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.cta h2 {
    font-size: 38px;
    line-height: 53.2px;
  }
}
section.cta h3 {
  font-weight: 600;
  color: white;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  section.cta h3 {
    font-size: 38px;
    line-height: 53.2px;
    margin-bottom: 31px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.cta h3 {
    font-size: 38px;
    line-height: 53.2px;
  }
}
section.cta .button-wrapper {
  margin-top: auto;
}
section.cta .button-wrapper .button:hover {
  color: #362B5C !important;
  background-color: #FDE4E4;
}
@media (max-width: 767.98px) {
  section.cta .button-wrapper .button {
    width: 100%;
    font-size: 20px;
  }
}

.text-plus-image + .cta {
  margin-top: -35px;
}

section.anchor-menu {
  width: 100%;
  height: 70px;
  line-height: 70px;
  background: #FEF8F9;
  z-index: 1;
}
section.anchor-menu .inner {
  max-width: 1275px;
  height: inherit;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}
section.anchor-menu ul {
  margin: 0;
  padding: 0;
  white-space: nowrap;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
section.anchor-menu ul::-webkit-scrollbar {
  display: none;
}
section.anchor-menu ul li {
  display: inline-block;
  margin: auto 0;
  list-style: none;
}
section.anchor-menu ul li:not(:last-of-type) {
  margin-right: 55px;
}
section.anchor-menu ul.fade-left:before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 20px;
  pointer-events: none;
  background: linear-gradient(90deg, rgb(254, 248, 249) 0%, rgba(255, 255, 255, 0) 100%);
  width: 70px;
  height: 100%;
}
section.anchor-menu ul.fade-right:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 20px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(254, 248, 249) 100%);
  width: 70px;
  height: 100%;
}

section.terms .inner {
  display: flex;
  flex-wrap: wrap;
  max-width: 1275px;
  margin: 0 auto;
  padding: 50px 40px;
}
@media (min-width: 1200px) {
  section.terms .inner {
    padding: 80px 40px;
  }
}
section.terms + .terms {
  margin-top: -50px;
}
@media (min-width: 1200px) {
  section.terms + .terms {
    margin-top: -80px;
  }
}
section.terms .description {
  width: 100%;
  max-width: none;
}
@media (min-width: 1200px) {
  section.terms .description {
    width: auto;
    max-width: 440px;
    padding-top: 50px;
    padding-right: 25px;
  }
}
section.terms .description h2 {
  font-weight: 800;
  font-size: 2.45rem;
  line-height: 1.2;
  margin-bottom: 30px;
}
section.terms .boxes {
  width: 100%;
  max-width: none;
  margin-left: auto;
}
@media (min-width: 1200px) {
  section.terms .boxes {
    display: flex;
    width: auto;
    max-width: 645px;
  }
}
section.terms .boxes .box {
  background: white;
  border: 2px solid #362b5c;
  border-radius: 15px;
  padding: 31px 26px;
}
section.terms .boxes .box:not(:last-of-type) {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  section.terms .boxes .box:not(:last-of-type) {
    margin-right: 30px;
    margin-bottom: 0;
  }
}
section.terms .boxes .box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 22px;
}
section.terms .boxes .box .button-wrapper {
  display: flex;
}
section.terms .boxes .box .button-wrapper .button {
  flex: 1;
  line-height: 50px;
  margin: 0;
  padding: 0;
}
section.terms .boxes .box .button-wrapper .button:not(.print) {
  margin-right: 15px;
}
section.terms .boxes .box .button-wrapper .button.print {
  max-width: 62px;
  background-image: url(../images/icons/pdf.svg);
  background-size: 26px;
  background-position: center center;
  background-repeat: no-repeat;
}
section.terms.center .boxes {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  section.terms.center .boxes {
    width: 50%;
  }
  section.terms.center .boxes .box {
    width: 50%;
  }
}

section.terms-overview {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 30px;
}
section.terms-overview .menu-content {
  text-align: left;
  padding: 0 20px;
}
section.terms-overview .menu-content .card {
  border: 1px solid #362b5c;
  margin: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border-radius: 0.25rem;
}
section.terms-overview .menu-content .card a {
  padding: 50px 10px;
}
section.terms-overview .menu-content .card a .card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
section.terms-overview .menu-content .card a .card-body h3 {
  font-size: 1.2rem;
}
section.terms-overview .pl-0, section.terms-overview .px-0 {
  padding-left: 0 !important;
}
section.terms-overview .pr-0, section.terms-overview .px-0 {
  padding-right: 0 !important;
}

.keep-reading .button {
  margin: 0;
}

section.video {
  background-color: white;
  padding-bottom: 120px;
}
section.video .wrapper {
  max-width: 800px;
  min-height: 454px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
section.video .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}
section.video .play {
  position: absolute;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  left: 50%;
  top: 40%;
  z-index: 2;
  background-color: #ed697a;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  pointer-events: none;
  padding: 15px;
  transform: translateX(-50%);
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  cursor: pointer;
}
section.video video {
  max-width: 100%;
}

section.press {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
section.press .press-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background-color: #f7fbfc;
  border-radius: 5px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: -15px;
  padding: 15px;
  display: flex;
  align-items: center;
}
section.press .press-item:first-of-type {
  margin-top: 0;
}
section.press .press-item a {
  display: flex;
  align-items: center;
  width: 100%;
}
section.press .press-item a .img-col {
  display: inline-flex;
  width: 25%;
  position: relative;
  align-items: center;
}
@media (min-width: 1200px) {
  section.press .press-item a .img-col {
    justify-content: center;
  }
}
section.press .press-item a .img-col img {
  height: 50px;
}
section.press .press-item a .text-col {
  display: inline-block;
  width: 70%;
}
section.press .press-item a .text-col h2 {
  margin-bottom: 3px;
  font-size: 1rem;
  line-height: 1.48;
}
@media (max-width: 767.98px) {
  section.press .press-item a .text-col h2 {
    line-height: 140%;
  }
}
section.press .press-item a .text-col p {
  margin-bottom: 10px;
  font-size: 10px;
  line-height: 1.48;
}
@media (max-width: 767.98px) {
  section.press .press-item a .text-col p {
    line-height: 140%;
  }
}

section.contact-form {
  color: white;
  background-color: white;
  padding-bottom: 105px;
}
@media (min-width: 1400px) {
  section.contact-form .container {
    max-width: 1326px;
  }
}
section.contact-form .bg-wrapper {
  border-radius: 30px;
  background-color: #2e2c5e;
  padding: 52px 0;
}
@media (max-width: 767.98px) {
  section.contact-form .bg-wrapper {
    padding: 35px 0;
  }
}
section.contact-form .top {
  text-align: center;
  padding-left: 42px;
  padding-right: 42px;
}
section.contact-form .top h2 {
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  section.contact-form .top h2 {
    margin-bottom: 13px;
  }
}
section.contact-form .top p {
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  section.contact-form .top p {
    margin-bottom: 5px;
  }
}
@media (max-width: 767.98px) {
  section.contact-form {
    padding-bottom: 139px;
  }
}
@media (min-width: 768px) and (max-width: 1919px) {
  section.contact-form {
    padding-bottom: 117px;
  }
}

section.contact {
  background-color: white;
  padding-top: 150px;
  padding-bottom: 112px;
}
@media (min-width: 1400px) {
  section.contact > .container {
    left: -20px;
    max-width: 1342px;
  }
}
@media (min-width: 768px) {
  section.contact > .container {
    position: relative;
  }
  section.contact > .container .row {
    margin-left: -52px;
    margin-right: -52px;
  }
  section.contact > .container .row > * {
    padding-left: 52px;
    padding-right: 52px;
  }
}
@media (max-width: 767.98px) {
  section.contact > .container > .row > div:first-of-type {
    order: 2;
  }
}
section.contact h2 {
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  section.contact h2 {
    margin-bottom: 13px;
  }
}
section.contact .form-wrapper {
  max-width: 525px;
  margin-left: auto;
  padding-top: 32px;
}
@media (max-width: 767.98px) {
  section.contact .form-wrapper h2 {
    font-size: 38px;
    line-height: 53.2px;
    margin-bottom: 5px;
  }
}
section.contact .form-wrapper > p {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  section.contact .form-wrapper > p {
    font-size: 20px;
    line-height: 30px;
  }
}
section.contact .form-wrapper .form {
  max-width: none;
  margin: 0;
  padding: 0;
}
section.contact .form-wrapper .form .button {
  color: white;
  background: #2e2c5e;
}
section.contact .form-wrapper .form .button:hover {
  color: white;
  border-color: #667085;
  background: #667085;
}
@media (max-width: 767.98px) {
  section.contact .form-wrapper {
    padding-top: 43px;
  }
}
section.contact .info {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  border-radius: 10px;
  color: white;
  background: #2e2c5e;
  padding: 40px;
}
section.contact .info p {
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  section.contact .info p {
    margin-bottom: 26px;
  }
}
section.contact .info .top {
  max-width: 448px;
}
section.contact .info .contact {
  font-size: 18px;
  line-height: 27px;
}
section.contact .info .contact div:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  vertical-align: sub;
  margin-right: 10px;
}
section.contact .info .contact .email {
  margin-bottom: 20px;
}
section.contact .info .contact .email:before {
  background-image: url(../images/svg/contact_mail.svg);
}
@media (max-width: 767.98px) {
  section.contact .info .contact .email {
    margin-bottom: 25px;
  }
}
section.contact .info .contact .phone:before {
  background-image: url(../images/svg/contact_phone.svg);
}
section.contact .info .contact a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  section.contact .info .contact {
    margin-bottom: 26px;
  }
}
section.contact .info .bottom {
  font-size: 16px;
  line-height: 24px;
  margin-top: auto;
}
section.contact .info .bottom h4 {
  margin-bottom: 5px;
}
section.contact .info .bottom p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  section.contact .info {
    padding: 35px 22px;
  }
}
@media (max-width: 767.98px) {
  section.contact {
    padding-top: 82px;
    padding-bottom: 100px;
  }
}

body.white section.contact {
  background-color: transparent;
}

section.content-fullwidth {
  background-color: white;
  overflow: hidden;
}

section.post-slider {
  padding: 70px 0;
}
section.post-slider .container {
  position: relative;
}
@media (max-width: 767.98px) {
  section.post-slider .container {
    padding-left: 45px;
    padding-right: 45px;
  }
}
section.post-slider h2 {
  text-align: center;
}
section.post-slider .swiper-slide img {
  display: block;
  height: auto;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  aspect-ratio: 400/290;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 20px;
}
section.post-slider .prev,
section.post-slider .next {
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  height: 100%;
  position: absolute;
  top: 50%;
  display: flex;
  z-index: 1;
}
section.post-slider .prev i,
section.post-slider .next i {
  display: block;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background: #ED697A;
  border-radius: 100%;
  color: white;
}
section.post-slider .prev i:before,
section.post-slider .next i:before {
  display: none;
}
@media (max-width: 575.98px) {
  section.post-slider .prev i,
section.post-slider .next i {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
section.post-slider .prev {
  left: 0;
}
section.post-slider .prev i {
  background-image: url(../images/svg/arrow_left.svg);
}
@media (min-width: 1400px) {
  section.post-slider .prev {
    left: -30px;
  }
}
@media (min-width: 1480px) {
  section.post-slider .prev {
    left: -50px;
  }
}
@media (max-width: 767.98px) {
  section.post-slider .prev {
    left: -50px;
  }
}
@media (max-width: 575.98px) {
  section.post-slider .prev {
    left: 5px;
  }
}
section.post-slider .next {
  right: 0px;
}
section.post-slider .next i {
  background-image: url(../images/svg/arrow_right.svg);
}
@media (min-width: 1400px) {
  section.post-slider .next {
    right: -30px;
  }
}
@media (min-width: 1480px) {
  section.post-slider .next {
    right: -50px;
  }
}
@media (max-width: 767.98px) {
  section.post-slider .next {
    right: -50px;
  }
}
@media (max-width: 575.98px) {
  section.post-slider .next {
    right: 5px;
  }
}
@media (max-width: 767.98px) {
  section.post-slider {
    padding: 50px 0;
  }
}

section.full-width-image-text {
  position: relative;
  height: 80vh;
}
@media (max-width: 991.98px) {
  section.full-width-image-text .container {
    max-width: none;
    padding: 0;
  }
}
section.full-width-image-text .image {
  display: block;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media (max-width: 991.98px) {
  section.full-width-image-text .image {
    background-attachment: initial;
  }
}
section.full-width-image-text .content {
  position: absolute;
  bottom: 80px;
  width: 100%;
  max-width: 630px;
  border-radius: 24px;
  padding: 40px;
}
section.full-width-image-text .content.left {
  left: 80px;
}
section.full-width-image-text .content.right {
  right: 80px;
}
section.full-width-image-text .content p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  section.full-width-image-text .content {
    right: 30px !important;
    left: 30px !important;
    bottom: 30px;
    width: calc(100% - 60px);
    max-width: none;
    padding: 30px;
  }
}

.blog-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 120px 40px;
}
@media (max-width: 767.98px) {
  .blog-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-wrapper .blog-header {
  max-width: 490px;
  text-align: center;
  margin: 0 auto 75px auto;
}
.blog-wrapper .blog-header img {
  width: 218px;
  margin-bottom: 44px;
  -webkit-animation: umbrella infinite 3s;
          animation: umbrella infinite 3s;
}
.blog-wrapper .blog-header h1 {
  font-size: 35px;
  margin-bottom: 20px;
}
.blog-wrapper .blog-header p {
  font-size: 1.15rem;
  line-height: 1.3;
}
@media (min-width: 1200px) {
  .blog-wrapper .blog-main {
    display: flex;
    flex-wrap: wrap;
    padding-left: 5px;
  }
}
.blog-wrapper .blog-main .filter-wrapper {
  display: flex;
  width: 100%;
  margin-bottom: 50px;
}
.blog-wrapper .blog-main .filter-wrapper > div {
  position: relative;
  height: 60px;
  line-height: 55px;
  font-size: 1rem;
  border: 2px solid #362b5c;
  border-radius: 15px;
  padding: 0 21px;
}
@media (min-width: 1200px) {
  .blog-wrapper .blog-main .filter-wrapper > div {
    padding: 0 31px;
  }
}
.blog-wrapper .blog-main .filter-wrapper > div .title:after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 10px;
}
.blog-wrapper .blog-main .filter-wrapper > div .dropdown {
  display: none;
  position: absolute;
  left: -2px;
  padding-top: 10px;
  z-index: 1;
}
.blog-wrapper .blog-main .filter-wrapper > div .dropdown ul {
  margin: 0;
  padding: 31px;
  background: #fdf8f9;
  border: 2px solid #362b5c;
  border-radius: 15px;
}
.blog-wrapper .blog-main .filter-wrapper > div .dropdown ul li {
  line-height: 1;
  list-style: none;
  cursor: pointer;
}
.blog-wrapper .blog-main .filter-wrapper > div .dropdown ul li:hover, .blog-wrapper .blog-main .filter-wrapper > div .dropdown ul li.active {
  text-decoration: underline;
}
.blog-wrapper .blog-main .filter-wrapper > div .dropdown ul li:not(:last-of-type) {
  margin-bottom: 25px;
}
.blog-wrapper .blog-main .filter-wrapper .filters .title:after {
  width: 21px;
  height: 17px;
  background-image: url(../images/icons/filter.svg);
}
.blog-wrapper .blog-main .filter-wrapper .sortby {
  margin-left: auto;
  padding-left: 30px;
  padding-right: 28px;
}
.blog-wrapper .blog-main .filter-wrapper .sortby .title:after {
  width: 22px;
  height: 22px;
  background-image: url(../images/icons/sort.svg);
  margin-left: 7px;
}
@media (min-width: 1200px) {
  .blog-wrapper .blog-main .posts {
    flex: 1;
    padding-right: 55px;
  }
}
.blog-wrapper .blog-main .posts #ajax-load-more-2 {
  display: none;
}
.blog-wrapper .blog-main .posts .post {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 15px;
  margin-bottom: 40px;
}
.blog-wrapper .blog-main .posts .post .description {
  order: 2;
  padding: 30px 35px 0 30px;
}
@media (min-width: 480px) {
  .blog-wrapper .blog-main .posts .post .description {
    order: 1;
    width: calc(50% + 20px);
    padding: 45px 50px 0 45px;
  }
}
.blog-wrapper .blog-main .posts .post .description .category {
  font-size: 12px;
  font-weight: 500;
  color: #362B5C;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.blog-wrapper .blog-main .posts .post .description .date {
  font-size: 16px;
  margin-bottom: 6px;
}
.blog-wrapper .blog-main .posts .post .description .date:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../images/icons/calendar.svg);
  background-size: contain;
  background-position: center center;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 5px;
}
.blog-wrapper .blog-main .posts .post .description h3, .blog-wrapper .blog-main .posts .post .description h3 a {
  font-size: 1.4rem;
  line-height: 41px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .blog-wrapper .blog-main .posts .post .description h3, .blog-wrapper .blog-main .posts .post .description h3 a {
    font-size: 1.7rem;
  }
}
.blog-wrapper .blog-main .posts .post .description .button {
  height: 45px;
  line-height: 45px;
  margin-left: 0;
  margin-bottom: 42px;
  padding-left: 42px;
  padding-right: 42px;
}
.blog-wrapper .blog-main .posts .post .image {
  position: relative;
  order: 1;
}
@media (min-width: 480px) {
  .blog-wrapper .blog-main .posts .post .image {
    order: 2;
    width: calc(50% - 20px);
  }
}
.blog-wrapper .blog-main .posts .post .image img {
  height: auto;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
@media (min-width: 480px) {
  .blog-wrapper .blog-main .posts .post .image img {
    width: 355px;
    height: 100%;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
    float: right;
  }
}
.blog-wrapper .blog-main .posts .post .image .featured {
  position: absolute;
  top: 27px;
  right: 0;
  height: 34px;
  line-height: 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: white;
  background: #ED697A;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  padding: 0 20px;
}
.blog-wrapper .blog-main .posts .load-more {
  width: 100%;
  margin-bottom: 0;
}
.blog-wrapper .blog-main .posts .load-more.done {
  display: none;
}
.blog-wrapper .blog-main .sidebar {
  width: 392px;
  max-width: 100%;
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .blog-wrapper .blog-main .sidebar {
    margin-top: 0;
    margin-left: auto;
  }
}
.blog-wrapper .blog-main .sidebar .latest-posts {
  margin-bottom: 60px;
}
.blog-wrapper .blog-main .sidebar .latest-posts .heading {
  height: 100px;
  line-height: 100px;
  font-weight: 800;
  font-size: 1.7rem;
  color: white;
  background: #362B5C;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding-left: 35px;
  padding-right: 35px;
}
.blog-wrapper .blog-main .sidebar .latest-posts .l-posts {
  background: white;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-left: 35px;
  padding-right: 35px;
  padding-bottom: 18px;
}
.blog-wrapper .blog-main .sidebar .latest-posts .l-posts .l-post {
  padding: 20px 0 23px 0;
}
.blog-wrapper .blog-main .sidebar .latest-posts .l-posts .l-post:not(:last-of-type) {
  border-bottom: 1px solid #362B5C;
}
.blog-wrapper .blog-main .sidebar .latest-posts .l-posts .l-post .date {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 4px;
}
.blog-wrapper .blog-main .sidebar .latest-posts .l-posts .l-post .date:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/calendar.svg);
  background-size: contain;
  background-position: center center;
  vertical-align: middle;
  margin-right: 10px;
}
.blog-wrapper .blog-main .sidebar .latest-posts .l-posts .l-post h4, .blog-wrapper .blog-main .sidebar .latest-posts .l-posts .l-post h4 a {
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 0;
}
.blog-wrapper .blog-main .sidebar .infobox {
  background: #2e2c5e;
  border-radius: 15px;
  padding: 40px 30px;
  margin-bottom: 62px;
}
.blog-wrapper .blog-main .sidebar .infobox h5 {
  color: white;
  font-size: 13.28px;
  line-height: 19px;
  font-weight: 700;
  margin-bottom: 21px;
}
.blog-wrapper .blog-main .sidebar .infobox .button {
  width: 100%;
  margin-left: 0;
}
.blog-wrapper .blog-main .sidebar .infobox .button:hover {
  color: #362B5C !important;
  background-color: #FDE4E4;
}
@media (min-width: 768px) and (max-width: 1919px) {
  .blog-wrapper .blog-main .sidebar .infobox {
    max-width: 329px;
  }
}
.blog-wrapper .blog-main .sidebar .blog-share h3 {
  font-size: 14.4px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 11px;
}
.blog-wrapper .blog-main .sidebar .blog-share i {
  width: 38px;
  height: 38px;
  border-radius: 100%;
  color: white;
  background: #362B5C;
  line-height: 38px;
  text-align: center;
}
.blog-wrapper .blog-main .sidebar .blog-share i:not(:last-of-type) {
  margin-right: 8px;
}

.single .blog-main {
  padding-left: 0;
}
.single .post-meta .meta {
  display: flex;
  font-size: 12px;
  margin-bottom: 8px;
}
.single .post-meta .meta .category {
  position: relative;
  font-weight: 500;
  color: #362B5C;
  text-transform: uppercase;
  margin-right: 20px;
  padding-right: 20px;
}
.single .post-meta .meta .category:after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 1px;
  height: 18px;
  background: #362B5C;
}
.single .post-meta .meta .date {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 4px;
}
.single .post-meta .meta .date:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-image: url(../images/icons/calendar.svg);
  background-size: contain;
  background-position: center center;
  vertical-align: middle;
  margin-right: 10px;
}
.single .post-meta h1 {
  font-size: 1.7rem;
  line-height: 1.37;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .single .post-meta h1 {
    font-size: 50px;
    line-height: 1.15;
    margin-bottom: 48px;
    max-width: calc(100% - 450px);
  }
}
@media (min-width: 1200px) {
  .single .article {
    margin-right: 19px;
  }
}
.single .article h2 {
  font-size: 1.7rem;
  line-height: 1.37;
  margin-bottom: 22px;
}
.single .article h3 {
  font-size: 1rem;
}
.single .article h4 {
  margin-bottom: 0;
}
.single .article .wp-block-image {
  margin-bottom: 40px;
}
.single .article .wp-block-image + h3 {
  margin-top: -8px;
}
.single .article img {
  border-radius: 15px;
}
.single .article p {
  line-height: 1.43;
  margin-bottom: 22px;
}
.single .article a:not(.button) {
  color: #362B5C;
  text-decoration: underline;
}
.single .article a:not(.button):hover {
  text-decoration: none;
}
.single .article ol {
  margin: 6px 0 27px 0;
  padding: 0;
}
.single .article ol li {
  color: #ED697A;
  text-decoration: underline;
  margin-bottom: 3px;
}
.single .article ol > li {
  list-style-position: inside;
  font-weight: 800;
}
.single .article ol > li > a {
  font-weight: 800;
}
.single .article ol > li:not(:first-of-type) {
  margin-top: 8px;
}
.single .article ol ul {
  margin: 3px 0 0 15px;
  padding: 0;
}
.single .article ol ul li {
  list-style-position: inside;
}
.single .article .go-to-top {
  display: none;
}
.single .article .go-to-top.active {
  display: table;
  margin: 0;
}
@media (min-width: 1200px) {
  .single .sidebar {
    position: relative;
    right: 5px;
  }
}
.single #app {
  padding-top: 40px;
}
@media (min-width: 1200px) {
  .single #app {
    padding-top: 80px;
  }
}
.single #breadcrumbs {
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .single #breadcrumbs {
    margin-bottom: 78px;
  }
}

/*.footer-line {
    width: 100%;
    height: 2px;
    background: #362B5C;
    margin-top: 80px;
}*/
.page-template-template-blog,
.page-template-template-blog header {
  background-color: #fdf8f9;
}

.page-template-template-blog .page-footer {
  background-color: #FDE4E4;
}
