@charset "UTF-8";
/*#region Rem */
/*#endregion */
/*#region Rem */
/*#endregion */
/*#region Rem */
/*#endregion */
/*#region Rem */
/*#endregion */
/*#region Buttons */
/*#endregion */
/*#region Forms */
/*#endregion */
/*#region Typography */
/*#endregion */
/*#region Dropdown */
/*#endregion */
/*#region Accordion */
/*#endregion */
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-white {
  color: #ffffff;
}
.link-white:hover, .link-white:focus {
  color: white;
}

.link-black {
  color: #000;
}
.link-black:hover, .link-black:focus {
  color: black;
}

.link-gray-100 {
  color: #f5f5f5;
}
.link-gray-100:hover, .link-gray-100:focus {
  color: #f7f7f7;
}

.link-gray-200 {
  color: #e7e7e7;
}
.link-gray-200:hover, .link-gray-200:focus {
  color: #ececec;
}

.link-gray-300 {
  color: #dbdbdb;
}
.link-gray-300:hover, .link-gray-300:focus {
  color: #e2e2e2;
}

.link-gray-400 {
  color: #c9c9c9;
}
.link-gray-400:hover, .link-gray-400:focus {
  color: #d4d4d4;
}

.link-gray-500 {
  color: #b1b1b1;
}
.link-gray-500:hover, .link-gray-500:focus {
  color: #c1c1c1;
}

.link-gray-600 {
  color: #7b7b7b;
}
.link-gray-600:hover, .link-gray-600:focus {
  color: #626262;
}

.link-gray-700 {
  color: #454545;
}
.link-gray-700:hover, .link-gray-700:focus {
  color: #373737;
}

.link-gray-800 {
  color: #333;
}
.link-gray-800:hover, .link-gray-800:focus {
  color: #292929;
}

.link-gray-900 {
  color: #222;
}
.link-gray-900:hover, .link-gray-900:focus {
  color: #1b1b1b;
}

.link-blue {
  color: #285fe8;
}
.link-blue:hover, .link-blue:focus {
  color: #204cba;
}

.link-peach {
  color: #f4a57d;
}
.link-peach:hover, .link-peach:focus {
  color: #f6b797;
}

.link-indigo {
  color: #6610f2;
}
.link-indigo:hover, .link-indigo:focus {
  color: #520dc2;
}

.link-purple {
  color: #6f42c1;
}
.link-purple:hover, .link-purple:focus {
  color: #59359a;
}

.link-pink {
  color: #d63384;
}
.link-pink:hover, .link-pink:focus {
  color: #ab296a;
}

.link-red {
  color: #de372f;
}
.link-red:hover, .link-red:focus {
  color: #b22c26;
}

.link-yellow {
  color: #fceb8f;
}
.link-yellow:hover, .link-yellow:focus {
  color: #fdefa5;
}

.link-green {
  color: #198754;
}
.link-green:hover, .link-green:focus {
  color: #146c43;
}

.link-teal {
  color: #20c997;
}
.link-teal:hover, .link-teal:focus {
  color: #4dd4ac;
}

.link-cyan {
  color: #b8e8e5;
}
.link-cyan:hover, .link-cyan:focus {
  color: #c6edea;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%);
}

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%);
}

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%);
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1580px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
}

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

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

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

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

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

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

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

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

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

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

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

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

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

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

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

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

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

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

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
      -ms-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
      -ms-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
      -ms-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dbdbdb !important;
}

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

.border-top {
  border-top: 1px solid #dbdbdb !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dbdbdb !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dbdbdb !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dbdbdb !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-white {
  border-color: #ffffff !important;
}

.border-black {
  border-color: #000 !important;
}

.border-gray-100 {
  border-color: #f5f5f5 !important;
}

.border-gray-200 {
  border-color: #e7e7e7 !important;
}

.border-gray-300 {
  border-color: #dbdbdb !important;
}

.border-gray-400 {
  border-color: #c9c9c9 !important;
}

.border-gray-500 {
  border-color: #b1b1b1 !important;
}

.border-gray-600 {
  border-color: #7b7b7b !important;
}

.border-gray-700 {
  border-color: #454545 !important;
}

.border-gray-800 {
  border-color: #333 !important;
}

.border-gray-900 {
  border-color: #222 !important;
}

.border-blue {
  border-color: #285fe8 !important;
}

.border-peach {
  border-color: #f4a57d !important;
}

.border-indigo {
  border-color: #6610f2 !important;
}

.border-purple {
  border-color: #6f42c1 !important;
}

.border-pink {
  border-color: #d63384 !important;
}

.border-red {
  border-color: #de372f !important;
}

.border-yellow {
  border-color: #fceb8f !important;
}

.border-green {
  border-color: #198754 !important;
}

.border-teal {
  border-color: #20c997 !important;
}

.border-cyan {
  border-color: #b8e8e5 !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

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

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

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

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

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

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

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

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

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

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

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

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

.gap-5 {
  gap: 0.3125rem !important;
}

.gap-10 {
  gap: 0.625rem !important;
}

.gap-15 {
  gap: 0.9375rem !important;
}

.gap-20 {
  gap: 1.25rem !important;
}

.gap-30 {
  gap: 1.875rem !important;
}

.gap-40 {
  gap: 2.5rem !important;
}

.gap-50 {
  gap: 3.125rem !important;
}

.gap-60 {
  gap: 3.75rem !important;
}

.gap-80 {
  gap: 5rem !important;
}

.gap-100 {
  gap: 6.25rem !important;
}

.gap-120 {
  gap: 7.5rem !important;
}

.gap-160 {
  gap: 10rem !important;
}

.gap-200 {
  gap: 12.5rem !important;
}

.gap-240 {
  gap: 15rem !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}

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

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

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

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

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

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
      -ms-flex-order: 0 !important;
          order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
      -ms-flex-order: 3 !important;
          order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
      -ms-flex-order: 4 !important;
          order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
      -ms-flex-order: 5 !important;
          order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

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

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

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

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

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

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

.m-10 {
  margin: 0.625rem !important;
}

.m-15 {
  margin: 0.9375rem !important;
}

.m-20 {
  margin: 1.25rem !important;
}

.m-30 {
  margin: 1.875rem !important;
}

.m-40 {
  margin: 2.5rem !important;
}

.m-50 {
  margin: 3.125rem !important;
}

.m-60 {
  margin: 3.75rem !important;
}

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

.m-100 {
  margin: 6.25rem !important;
}

.m-120 {
  margin: 7.5rem !important;
}

.m-160 {
  margin: 10rem !important;
}

.m-200 {
  margin: 12.5rem !important;
}

.m-240 {
  margin: 15rem !important;
}

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

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

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

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

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

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

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

.mx-10 {
  margin-right: 0.625rem !important;
  margin-left: 0.625rem !important;
}

.mx-15 {
  margin-right: 0.9375rem !important;
  margin-left: 0.9375rem !important;
}

.mx-20 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx-30 {
  margin-right: 1.875rem !important;
  margin-left: 1.875rem !important;
}

.mx-40 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx-50 {
  margin-right: 3.125rem !important;
  margin-left: 3.125rem !important;
}

.mx-60 {
  margin-right: 3.75rem !important;
  margin-left: 3.75rem !important;
}

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

.mx-100 {
  margin-right: 6.25rem !important;
  margin-left: 6.25rem !important;
}

.mx-120 {
  margin-right: 7.5rem !important;
  margin-left: 7.5rem !important;
}

.mx-160 {
  margin-right: 10rem !important;
  margin-left: 10rem !important;
}

.mx-200 {
  margin-right: 12.5rem !important;
  margin-left: 12.5rem !important;
}

.mx-240 {
  margin-right: 15rem !important;
  margin-left: 15rem !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.0625rem !important;
  margin-bottom: 0.0625rem !important;
}

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

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

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

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

.my-10 {
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.my-15 {
  margin-top: 0.9375rem !important;
  margin-bottom: 0.9375rem !important;
}

.my-20 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-30 {
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !important;
}

.my-40 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-50 {
  margin-top: 3.125rem !important;
  margin-bottom: 3.125rem !important;
}

.my-60 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

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

.my-100 {
  margin-top: 6.25rem !important;
  margin-bottom: 6.25rem !important;
}

.my-120 {
  margin-top: 7.5rem !important;
  margin-bottom: 7.5rem !important;
}

.my-160 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.my-200 {
  margin-top: 12.5rem !important;
  margin-bottom: 12.5rem !important;
}

.my-240 {
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

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

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

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

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

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

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

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

.mt-10 {
  margin-top: 0.625rem !important;
}

.mt-15 {
  margin-top: 0.9375rem !important;
}

.mt-20 {
  margin-top: 1.25rem !important;
}

.mt-30 {
  margin-top: 1.875rem !important;
}

.mt-40 {
  margin-top: 2.5rem !important;
}

.mt-50 {
  margin-top: 3.125rem !important;
}

.mt-60 {
  margin-top: 3.75rem !important;
}

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

.mt-100 {
  margin-top: 6.25rem !important;
}

.mt-120 {
  margin-top: 7.5rem !important;
}

.mt-160 {
  margin-top: 10rem !important;
}

.mt-200 {
  margin-top: 12.5rem !important;
}

.mt-240 {
  margin-top: 15rem !important;
}

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

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

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

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

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

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

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

.me-10 {
  margin-right: 0.625rem !important;
}

.me-15 {
  margin-right: 0.9375rem !important;
}

.me-20 {
  margin-right: 1.25rem !important;
}

.me-30 {
  margin-right: 1.875rem !important;
}

.me-40 {
  margin-right: 2.5rem !important;
}

.me-50 {
  margin-right: 3.125rem !important;
}

.me-60 {
  margin-right: 3.75rem !important;
}

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

.me-100 {
  margin-right: 6.25rem !important;
}

.me-120 {
  margin-right: 7.5rem !important;
}

.me-160 {
  margin-right: 10rem !important;
}

.me-200 {
  margin-right: 12.5rem !important;
}

.me-240 {
  margin-right: 15rem !important;
}

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

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

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

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

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

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

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

.mb-10 {
  margin-bottom: 0.625rem !important;
}

.mb-15 {
  margin-bottom: 0.9375rem !important;
}

.mb-20 {
  margin-bottom: 1.25rem !important;
}

.mb-30 {
  margin-bottom: 1.875rem !important;
}

.mb-40 {
  margin-bottom: 2.5rem !important;
}

.mb-50 {
  margin-bottom: 3.125rem !important;
}

.mb-60 {
  margin-bottom: 3.75rem !important;
}

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

.mb-100 {
  margin-bottom: 6.25rem !important;
}

.mb-120 {
  margin-bottom: 7.5rem !important;
}

.mb-160 {
  margin-bottom: 10rem !important;
}

.mb-200 {
  margin-bottom: 12.5rem !important;
}

.mb-240 {
  margin-bottom: 15rem !important;
}

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

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

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

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

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

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

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

.ms-10 {
  margin-left: 0.625rem !important;
}

.ms-15 {
  margin-left: 0.9375rem !important;
}

.ms-20 {
  margin-left: 1.25rem !important;
}

.ms-30 {
  margin-left: 1.875rem !important;
}

.ms-40 {
  margin-left: 2.5rem !important;
}

.ms-50 {
  margin-left: 3.125rem !important;
}

.ms-60 {
  margin-left: 3.75rem !important;
}

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

.ms-100 {
  margin-left: 6.25rem !important;
}

.ms-120 {
  margin-left: 7.5rem !important;
}

.ms-160 {
  margin-left: 10rem !important;
}

.ms-200 {
  margin-left: 12.5rem !important;
}

.ms-240 {
  margin-left: 15rem !important;
}

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

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

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

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

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

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

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

.p-10 {
  padding: 0.625rem !important;
}

.p-15 {
  padding: 0.9375rem !important;
}

.p-20 {
  padding: 1.25rem !important;
}

.p-30 {
  padding: 1.875rem !important;
}

.p-40 {
  padding: 2.5rem !important;
}

.p-50 {
  padding: 3.125rem !important;
}

.p-60 {
  padding: 3.75rem !important;
}

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

.p-100 {
  padding: 6.25rem !important;
}

.p-120 {
  padding: 7.5rem !important;
}

.p-160 {
  padding: 10rem !important;
}

.p-200 {
  padding: 12.5rem !important;
}

.p-240 {
  padding: 15rem !important;
}

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

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

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

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

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

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

.px-10 {
  padding-right: 0.625rem !important;
  padding-left: 0.625rem !important;
}

.px-15 {
  padding-right: 0.9375rem !important;
  padding-left: 0.9375rem !important;
}

.px-20 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px-30 {
  padding-right: 1.875rem !important;
  padding-left: 1.875rem !important;
}

.px-40 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px-50 {
  padding-right: 3.125rem !important;
  padding-left: 3.125rem !important;
}

.px-60 {
  padding-right: 3.75rem !important;
  padding-left: 3.75rem !important;
}

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

.px-100 {
  padding-right: 6.25rem !important;
  padding-left: 6.25rem !important;
}

.px-120 {
  padding-right: 7.5rem !important;
  padding-left: 7.5rem !important;
}

.px-160 {
  padding-right: 10rem !important;
  padding-left: 10rem !important;
}

.px-200 {
  padding-right: 12.5rem !important;
  padding-left: 12.5rem !important;
}

.px-240 {
  padding-right: 15rem !important;
  padding-left: 15rem !important;
}

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

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

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

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

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

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

.py-10 {
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.py-15 {
  padding-top: 0.9375rem !important;
  padding-bottom: 0.9375rem !important;
}

.py-20 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-30 {
  padding-top: 1.875rem !important;
  padding-bottom: 1.875rem !important;
}

.py-40 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-50 {
  padding-top: 3.125rem !important;
  padding-bottom: 3.125rem !important;
}

.py-60 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

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

.py-100 {
  padding-top: 6.25rem !important;
  padding-bottom: 6.25rem !important;
}

.py-120 {
  padding-top: 7.5rem !important;
  padding-bottom: 7.5rem !important;
}

.py-160 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.py-200 {
  padding-top: 12.5rem !important;
  padding-bottom: 12.5rem !important;
}

.py-240 {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

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

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

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

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

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

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

.pt-10 {
  padding-top: 0.625rem !important;
}

.pt-15 {
  padding-top: 0.9375rem !important;
}

.pt-20 {
  padding-top: 1.25rem !important;
}

.pt-30 {
  padding-top: 1.875rem !important;
}

.pt-40 {
  padding-top: 2.5rem !important;
}

.pt-50 {
  padding-top: 3.125rem !important;
}

.pt-60 {
  padding-top: 3.75rem !important;
}

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

.pt-100 {
  padding-top: 6.25rem !important;
}

.pt-120 {
  padding-top: 7.5rem !important;
}

.pt-160 {
  padding-top: 10rem !important;
}

.pt-200 {
  padding-top: 12.5rem !important;
}

.pt-240 {
  padding-top: 15rem !important;
}

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

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

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

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

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

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

.pe-10 {
  padding-right: 0.625rem !important;
}

.pe-15 {
  padding-right: 0.9375rem !important;
}

.pe-20 {
  padding-right: 1.25rem !important;
}

.pe-30 {
  padding-right: 1.875rem !important;
}

.pe-40 {
  padding-right: 2.5rem !important;
}

.pe-50 {
  padding-right: 3.125rem !important;
}

.pe-60 {
  padding-right: 3.75rem !important;
}

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

.pe-100 {
  padding-right: 6.25rem !important;
}

.pe-120 {
  padding-right: 7.5rem !important;
}

.pe-160 {
  padding-right: 10rem !important;
}

.pe-200 {
  padding-right: 12.5rem !important;
}

.pe-240 {
  padding-right: 15rem !important;
}

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

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

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

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

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

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

.pb-10 {
  padding-bottom: 0.625rem !important;
}

.pb-15 {
  padding-bottom: 0.9375rem !important;
}

.pb-20 {
  padding-bottom: 1.25rem !important;
}

.pb-30 {
  padding-bottom: 1.875rem !important;
}

.pb-40 {
  padding-bottom: 2.5rem !important;
}

.pb-50 {
  padding-bottom: 3.125rem !important;
}

.pb-60 {
  padding-bottom: 3.75rem !important;
}

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

.pb-100 {
  padding-bottom: 6.25rem !important;
}

.pb-120 {
  padding-bottom: 7.5rem !important;
}

.pb-160 {
  padding-bottom: 10rem !important;
}

.pb-200 {
  padding-bottom: 12.5rem !important;
}

.pb-240 {
  padding-bottom: 15rem !important;
}

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

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

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

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

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

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

.ps-10 {
  padding-left: 0.625rem !important;
}

.ps-15 {
  padding-left: 0.9375rem !important;
}

.ps-20 {
  padding-left: 1.25rem !important;
}

.ps-30 {
  padding-left: 1.875rem !important;
}

.ps-40 {
  padding-left: 2.5rem !important;
}

.ps-50 {
  padding-left: 3.125rem !important;
}

.ps-60 {
  padding-left: 3.75rem !important;
}

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

.ps-100 {
  padding-left: 6.25rem !important;
}

.ps-120 {
  padding-left: 7.5rem !important;
}

.ps-160 {
  padding-left: 10rem !important;
}

.ps-200 {
  padding-left: 12.5rem !important;
}

.ps-240 {
  padding-left: 15rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.925rem + 8.1vw) !important;
}

.fs-2 {
  font-size: calc(1.575rem + 3.9vw) !important;
}

.fs-3 {
  font-size: calc(1.425rem + 2.1vw) !important;
}

.fs-4 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-5 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-6 {
  font-size: 1.25rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.5 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 1.33 !important;
}

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

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

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

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

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

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

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

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

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

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

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-white {
  color: #ffffff !important;
}

.text-black {
  color: #000 !important;
}

.text-gray-100 {
  color: #f5f5f5 !important;
}

.text-gray-200 {
  color: #e7e7e7 !important;
}

.text-gray-300 {
  color: #dbdbdb !important;
}

.text-gray-400 {
  color: #c9c9c9 !important;
}

.text-gray-500 {
  color: #b1b1b1 !important;
}

.text-gray-600 {
  color: #7b7b7b !important;
}

.text-gray-700 {
  color: #454545 !important;
}

.text-gray-800 {
  color: #333 !important;
}

.text-gray-900 {
  color: #222 !important;
}

.text-blue {
  color: #285fe8 !important;
}

.text-peach {
  color: #f4a57d !important;
}

.text-indigo {
  color: #6610f2 !important;
}

.text-purple {
  color: #6f42c1 !important;
}

.text-pink {
  color: #d63384 !important;
}

.text-red {
  color: #de372f !important;
}

.text-yellow {
  color: #fceb8f !important;
}

.text-green {
  color: #198754 !important;
}

.text-teal {
  color: #20c997 !important;
}

.text-cyan {
  color: #b8e8e5 !important;
}

.text-body {
  color: #000 !important;
}

.text-muted {
  color: #7b7b7b !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  color: inherit !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.bg-black {
  background-color: #000 !important;
}

.bg-gray-100 {
  background-color: #f5f5f5 !important;
}

.bg-gray-200 {
  background-color: #e7e7e7 !important;
}

.bg-gray-300 {
  background-color: #dbdbdb !important;
}

.bg-gray-400 {
  background-color: #c9c9c9 !important;
}

.bg-gray-500 {
  background-color: #b1b1b1 !important;
}

.bg-gray-600 {
  background-color: #7b7b7b !important;
}

.bg-gray-700 {
  background-color: #454545 !important;
}

.bg-gray-800 {
  background-color: #333 !important;
}

.bg-gray-900 {
  background-color: #222 !important;
}

.bg-blue {
  background-color: #285fe8 !important;
}

.bg-peach {
  background-color: #f4a57d !important;
}

.bg-indigo {
  background-color: #6610f2 !important;
}

.bg-purple {
  background-color: #6f42c1 !important;
}

.bg-pink {
  background-color: #d63384 !important;
}

.bg-red {
  background-color: #de372f !important;
}

.bg-yellow {
  background-color: #fceb8f !important;
}

.bg-green {
  background-color: #198754 !important;
}

.bg-teal {
  background-color: #20c997 !important;
}

.bg-cyan {
  background-color: #b8e8e5 !important;
}

.bg-body {
  background-color: #f9f9f9 !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 5px !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: 0.2rem !important;
}

.rounded-2 {
  border-radius: 5px !important;
}

.rounded-3 {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important;
}

.rounded-end {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
}

.rounded-start {
  border-bottom-left-radius: 5px !important;
  border-top-left-radius: 5px !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

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

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

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

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

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

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

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

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

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

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

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

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

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

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .gap-sm-10 {
    gap: 0.625rem !important;
  }

  .gap-sm-15 {
    gap: 0.9375rem !important;
  }

  .gap-sm-20 {
    gap: 1.25rem !important;
  }

  .gap-sm-30 {
    gap: 1.875rem !important;
  }

  .gap-sm-40 {
    gap: 2.5rem !important;
  }

  .gap-sm-50 {
    gap: 3.125rem !important;
  }

  .gap-sm-60 {
    gap: 3.75rem !important;
  }

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

  .gap-sm-100 {
    gap: 6.25rem !important;
  }

  .gap-sm-120 {
    gap: 7.5rem !important;
  }

  .gap-sm-160 {
    gap: 10rem !important;
  }

  .gap-sm-200 {
    gap: 12.5rem !important;
  }

  .gap-sm-240 {
    gap: 15rem !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

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

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

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

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

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

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

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

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

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

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

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

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

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

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

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

  .m-sm-10 {
    margin: 0.625rem !important;
  }

  .m-sm-15 {
    margin: 0.9375rem !important;
  }

  .m-sm-20 {
    margin: 1.25rem !important;
  }

  .m-sm-30 {
    margin: 1.875rem !important;
  }

  .m-sm-40 {
    margin: 2.5rem !important;
  }

  .m-sm-50 {
    margin: 3.125rem !important;
  }

  .m-sm-60 {
    margin: 3.75rem !important;
  }

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

  .m-sm-100 {
    margin: 6.25rem !important;
  }

  .m-sm-120 {
    margin: 7.5rem !important;
  }

  .m-sm-160 {
    margin: 10rem !important;
  }

  .m-sm-200 {
    margin: 12.5rem !important;
  }

  .m-sm-240 {
    margin: 15rem !important;
  }

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

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

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

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

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

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

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

  .mx-sm-10 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-sm-15 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }

  .mx-sm-20 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-sm-30 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }

  .mx-sm-40 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-sm-50 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }

  .mx-sm-60 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

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

  .mx-sm-100 {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }

  .mx-sm-120 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-sm-160 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-sm-200 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }

  .mx-sm-240 {
    margin-right: 15rem !important;
    margin-left: 15rem !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.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }

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

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

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

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

  .my-sm-10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-sm-15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }

  .my-sm-20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-sm-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }

  .my-sm-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-sm-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }

  .my-sm-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

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

  .my-sm-100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }

  .my-sm-120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-sm-160 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-sm-200 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .my-sm-240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !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.0625rem !important;
  }

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

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

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

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

  .mt-sm-10 {
    margin-top: 0.625rem !important;
  }

  .mt-sm-15 {
    margin-top: 0.9375rem !important;
  }

  .mt-sm-20 {
    margin-top: 1.25rem !important;
  }

  .mt-sm-30 {
    margin-top: 1.875rem !important;
  }

  .mt-sm-40 {
    margin-top: 2.5rem !important;
  }

  .mt-sm-50 {
    margin-top: 3.125rem !important;
  }

  .mt-sm-60 {
    margin-top: 3.75rem !important;
  }

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

  .mt-sm-100 {
    margin-top: 6.25rem !important;
  }

  .mt-sm-120 {
    margin-top: 7.5rem !important;
  }

  .mt-sm-160 {
    margin-top: 10rem !important;
  }

  .mt-sm-200 {
    margin-top: 12.5rem !important;
  }

  .mt-sm-240 {
    margin-top: 15rem !important;
  }

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

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

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

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

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

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

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

  .me-sm-10 {
    margin-right: 0.625rem !important;
  }

  .me-sm-15 {
    margin-right: 0.9375rem !important;
  }

  .me-sm-20 {
    margin-right: 1.25rem !important;
  }

  .me-sm-30 {
    margin-right: 1.875rem !important;
  }

  .me-sm-40 {
    margin-right: 2.5rem !important;
  }

  .me-sm-50 {
    margin-right: 3.125rem !important;
  }

  .me-sm-60 {
    margin-right: 3.75rem !important;
  }

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

  .me-sm-100 {
    margin-right: 6.25rem !important;
  }

  .me-sm-120 {
    margin-right: 7.5rem !important;
  }

  .me-sm-160 {
    margin-right: 10rem !important;
  }

  .me-sm-200 {
    margin-right: 12.5rem !important;
  }

  .me-sm-240 {
    margin-right: 15rem !important;
  }

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

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

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

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

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

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

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

  .mb-sm-10 {
    margin-bottom: 0.625rem !important;
  }

  .mb-sm-15 {
    margin-bottom: 0.9375rem !important;
  }

  .mb-sm-20 {
    margin-bottom: 1.25rem !important;
  }

  .mb-sm-30 {
    margin-bottom: 1.875rem !important;
  }

  .mb-sm-40 {
    margin-bottom: 2.5rem !important;
  }

  .mb-sm-50 {
    margin-bottom: 3.125rem !important;
  }

  .mb-sm-60 {
    margin-bottom: 3.75rem !important;
  }

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

  .mb-sm-100 {
    margin-bottom: 6.25rem !important;
  }

  .mb-sm-120 {
    margin-bottom: 7.5rem !important;
  }

  .mb-sm-160 {
    margin-bottom: 10rem !important;
  }

  .mb-sm-200 {
    margin-bottom: 12.5rem !important;
  }

  .mb-sm-240 {
    margin-bottom: 15rem !important;
  }

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

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

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

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

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

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

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

  .ms-sm-10 {
    margin-left: 0.625rem !important;
  }

  .ms-sm-15 {
    margin-left: 0.9375rem !important;
  }

  .ms-sm-20 {
    margin-left: 1.25rem !important;
  }

  .ms-sm-30 {
    margin-left: 1.875rem !important;
  }

  .ms-sm-40 {
    margin-left: 2.5rem !important;
  }

  .ms-sm-50 {
    margin-left: 3.125rem !important;
  }

  .ms-sm-60 {
    margin-left: 3.75rem !important;
  }

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

  .ms-sm-100 {
    margin-left: 6.25rem !important;
  }

  .ms-sm-120 {
    margin-left: 7.5rem !important;
  }

  .ms-sm-160 {
    margin-left: 10rem !important;
  }

  .ms-sm-200 {
    margin-left: 12.5rem !important;
  }

  .ms-sm-240 {
    margin-left: 15rem !important;
  }

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

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

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

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

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

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

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

  .p-sm-10 {
    padding: 0.625rem !important;
  }

  .p-sm-15 {
    padding: 0.9375rem !important;
  }

  .p-sm-20 {
    padding: 1.25rem !important;
  }

  .p-sm-30 {
    padding: 1.875rem !important;
  }

  .p-sm-40 {
    padding: 2.5rem !important;
  }

  .p-sm-50 {
    padding: 3.125rem !important;
  }

  .p-sm-60 {
    padding: 3.75rem !important;
  }

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

  .p-sm-100 {
    padding: 6.25rem !important;
  }

  .p-sm-120 {
    padding: 7.5rem !important;
  }

  .p-sm-160 {
    padding: 10rem !important;
  }

  .p-sm-200 {
    padding: 12.5rem !important;
  }

  .p-sm-240 {
    padding: 15rem !important;
  }

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

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

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

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

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

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

  .px-sm-10 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-sm-15 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }

  .px-sm-20 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-sm-30 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }

  .px-sm-40 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-sm-50 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }

  .px-sm-60 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

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

  .px-sm-100 {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }

  .px-sm-120 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-sm-160 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .px-sm-200 {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }

  .px-sm-240 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

  .py-sm-10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-sm-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }

  .py-sm-20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-sm-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }

  .py-sm-40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-sm-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }

  .py-sm-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

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

  .py-sm-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }

  .py-sm-120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-sm-160 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .py-sm-200 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .py-sm-240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

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

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

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

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

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

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

  .pt-sm-10 {
    padding-top: 0.625rem !important;
  }

  .pt-sm-15 {
    padding-top: 0.9375rem !important;
  }

  .pt-sm-20 {
    padding-top: 1.25rem !important;
  }

  .pt-sm-30 {
    padding-top: 1.875rem !important;
  }

  .pt-sm-40 {
    padding-top: 2.5rem !important;
  }

  .pt-sm-50 {
    padding-top: 3.125rem !important;
  }

  .pt-sm-60 {
    padding-top: 3.75rem !important;
  }

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

  .pt-sm-100 {
    padding-top: 6.25rem !important;
  }

  .pt-sm-120 {
    padding-top: 7.5rem !important;
  }

  .pt-sm-160 {
    padding-top: 10rem !important;
  }

  .pt-sm-200 {
    padding-top: 12.5rem !important;
  }

  .pt-sm-240 {
    padding-top: 15rem !important;
  }

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

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

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

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

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

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

  .pe-sm-10 {
    padding-right: 0.625rem !important;
  }

  .pe-sm-15 {
    padding-right: 0.9375rem !important;
  }

  .pe-sm-20 {
    padding-right: 1.25rem !important;
  }

  .pe-sm-30 {
    padding-right: 1.875rem !important;
  }

  .pe-sm-40 {
    padding-right: 2.5rem !important;
  }

  .pe-sm-50 {
    padding-right: 3.125rem !important;
  }

  .pe-sm-60 {
    padding-right: 3.75rem !important;
  }

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

  .pe-sm-100 {
    padding-right: 6.25rem !important;
  }

  .pe-sm-120 {
    padding-right: 7.5rem !important;
  }

  .pe-sm-160 {
    padding-right: 10rem !important;
  }

  .pe-sm-200 {
    padding-right: 12.5rem !important;
  }

  .pe-sm-240 {
    padding-right: 15rem !important;
  }

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

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

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

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

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

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

  .pb-sm-10 {
    padding-bottom: 0.625rem !important;
  }

  .pb-sm-15 {
    padding-bottom: 0.9375rem !important;
  }

  .pb-sm-20 {
    padding-bottom: 1.25rem !important;
  }

  .pb-sm-30 {
    padding-bottom: 1.875rem !important;
  }

  .pb-sm-40 {
    padding-bottom: 2.5rem !important;
  }

  .pb-sm-50 {
    padding-bottom: 3.125rem !important;
  }

  .pb-sm-60 {
    padding-bottom: 3.75rem !important;
  }

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

  .pb-sm-100 {
    padding-bottom: 6.25rem !important;
  }

  .pb-sm-120 {
    padding-bottom: 7.5rem !important;
  }

  .pb-sm-160 {
    padding-bottom: 10rem !important;
  }

  .pb-sm-200 {
    padding-bottom: 12.5rem !important;
  }

  .pb-sm-240 {
    padding-bottom: 15rem !important;
  }

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

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

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

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

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

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

  .ps-sm-10 {
    padding-left: 0.625rem !important;
  }

  .ps-sm-15 {
    padding-left: 0.9375rem !important;
  }

  .ps-sm-20 {
    padding-left: 1.25rem !important;
  }

  .ps-sm-30 {
    padding-left: 1.875rem !important;
  }

  .ps-sm-40 {
    padding-left: 2.5rem !important;
  }

  .ps-sm-50 {
    padding-left: 3.125rem !important;
  }

  .ps-sm-60 {
    padding-left: 3.75rem !important;
  }

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

  .ps-sm-100 {
    padding-left: 6.25rem !important;
  }

  .ps-sm-120 {
    padding-left: 7.5rem !important;
  }

  .ps-sm-160 {
    padding-left: 10rem !important;
  }

  .ps-sm-200 {
    padding-left: 12.5rem !important;
  }

  .ps-sm-240 {
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

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

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

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .gap-md-10 {
    gap: 0.625rem !important;
  }

  .gap-md-15 {
    gap: 0.9375rem !important;
  }

  .gap-md-20 {
    gap: 1.25rem !important;
  }

  .gap-md-30 {
    gap: 1.875rem !important;
  }

  .gap-md-40 {
    gap: 2.5rem !important;
  }

  .gap-md-50 {
    gap: 3.125rem !important;
  }

  .gap-md-60 {
    gap: 3.75rem !important;
  }

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

  .gap-md-100 {
    gap: 6.25rem !important;
  }

  .gap-md-120 {
    gap: 7.5rem !important;
  }

  .gap-md-160 {
    gap: 10rem !important;
  }

  .gap-md-200 {
    gap: 12.5rem !important;
  }

  .gap-md-240 {
    gap: 15rem !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

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

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

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

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

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

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

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

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

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

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

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

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

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

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

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

  .m-md-10 {
    margin: 0.625rem !important;
  }

  .m-md-15 {
    margin: 0.9375rem !important;
  }

  .m-md-20 {
    margin: 1.25rem !important;
  }

  .m-md-30 {
    margin: 1.875rem !important;
  }

  .m-md-40 {
    margin: 2.5rem !important;
  }

  .m-md-50 {
    margin: 3.125rem !important;
  }

  .m-md-60 {
    margin: 3.75rem !important;
  }

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

  .m-md-100 {
    margin: 6.25rem !important;
  }

  .m-md-120 {
    margin: 7.5rem !important;
  }

  .m-md-160 {
    margin: 10rem !important;
  }

  .m-md-200 {
    margin: 12.5rem !important;
  }

  .m-md-240 {
    margin: 15rem !important;
  }

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

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

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

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

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

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

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

  .mx-md-10 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-md-15 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }

  .mx-md-20 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-md-30 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }

  .mx-md-40 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-md-50 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }

  .mx-md-60 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

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

  .mx-md-100 {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }

  .mx-md-120 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-md-160 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-md-200 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }

  .mx-md-240 {
    margin-right: 15rem !important;
    margin-left: 15rem !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.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }

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

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

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

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

  .my-md-10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-md-15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }

  .my-md-20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-md-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }

  .my-md-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-md-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }

  .my-md-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

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

  .my-md-100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }

  .my-md-120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-md-160 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-md-200 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .my-md-240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !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.0625rem !important;
  }

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

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

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

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

  .mt-md-10 {
    margin-top: 0.625rem !important;
  }

  .mt-md-15 {
    margin-top: 0.9375rem !important;
  }

  .mt-md-20 {
    margin-top: 1.25rem !important;
  }

  .mt-md-30 {
    margin-top: 1.875rem !important;
  }

  .mt-md-40 {
    margin-top: 2.5rem !important;
  }

  .mt-md-50 {
    margin-top: 3.125rem !important;
  }

  .mt-md-60 {
    margin-top: 3.75rem !important;
  }

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

  .mt-md-100 {
    margin-top: 6.25rem !important;
  }

  .mt-md-120 {
    margin-top: 7.5rem !important;
  }

  .mt-md-160 {
    margin-top: 10rem !important;
  }

  .mt-md-200 {
    margin-top: 12.5rem !important;
  }

  .mt-md-240 {
    margin-top: 15rem !important;
  }

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

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

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

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

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

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

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

  .me-md-10 {
    margin-right: 0.625rem !important;
  }

  .me-md-15 {
    margin-right: 0.9375rem !important;
  }

  .me-md-20 {
    margin-right: 1.25rem !important;
  }

  .me-md-30 {
    margin-right: 1.875rem !important;
  }

  .me-md-40 {
    margin-right: 2.5rem !important;
  }

  .me-md-50 {
    margin-right: 3.125rem !important;
  }

  .me-md-60 {
    margin-right: 3.75rem !important;
  }

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

  .me-md-100 {
    margin-right: 6.25rem !important;
  }

  .me-md-120 {
    margin-right: 7.5rem !important;
  }

  .me-md-160 {
    margin-right: 10rem !important;
  }

  .me-md-200 {
    margin-right: 12.5rem !important;
  }

  .me-md-240 {
    margin-right: 15rem !important;
  }

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

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

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

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

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

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

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

  .mb-md-10 {
    margin-bottom: 0.625rem !important;
  }

  .mb-md-15 {
    margin-bottom: 0.9375rem !important;
  }

  .mb-md-20 {
    margin-bottom: 1.25rem !important;
  }

  .mb-md-30 {
    margin-bottom: 1.875rem !important;
  }

  .mb-md-40 {
    margin-bottom: 2.5rem !important;
  }

  .mb-md-50 {
    margin-bottom: 3.125rem !important;
  }

  .mb-md-60 {
    margin-bottom: 3.75rem !important;
  }

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

  .mb-md-100 {
    margin-bottom: 6.25rem !important;
  }

  .mb-md-120 {
    margin-bottom: 7.5rem !important;
  }

  .mb-md-160 {
    margin-bottom: 10rem !important;
  }

  .mb-md-200 {
    margin-bottom: 12.5rem !important;
  }

  .mb-md-240 {
    margin-bottom: 15rem !important;
  }

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

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

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

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

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

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

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

  .ms-md-10 {
    margin-left: 0.625rem !important;
  }

  .ms-md-15 {
    margin-left: 0.9375rem !important;
  }

  .ms-md-20 {
    margin-left: 1.25rem !important;
  }

  .ms-md-30 {
    margin-left: 1.875rem !important;
  }

  .ms-md-40 {
    margin-left: 2.5rem !important;
  }

  .ms-md-50 {
    margin-left: 3.125rem !important;
  }

  .ms-md-60 {
    margin-left: 3.75rem !important;
  }

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

  .ms-md-100 {
    margin-left: 6.25rem !important;
  }

  .ms-md-120 {
    margin-left: 7.5rem !important;
  }

  .ms-md-160 {
    margin-left: 10rem !important;
  }

  .ms-md-200 {
    margin-left: 12.5rem !important;
  }

  .ms-md-240 {
    margin-left: 15rem !important;
  }

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

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

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

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

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

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

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

  .p-md-10 {
    padding: 0.625rem !important;
  }

  .p-md-15 {
    padding: 0.9375rem !important;
  }

  .p-md-20 {
    padding: 1.25rem !important;
  }

  .p-md-30 {
    padding: 1.875rem !important;
  }

  .p-md-40 {
    padding: 2.5rem !important;
  }

  .p-md-50 {
    padding: 3.125rem !important;
  }

  .p-md-60 {
    padding: 3.75rem !important;
  }

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

  .p-md-100 {
    padding: 6.25rem !important;
  }

  .p-md-120 {
    padding: 7.5rem !important;
  }

  .p-md-160 {
    padding: 10rem !important;
  }

  .p-md-200 {
    padding: 12.5rem !important;
  }

  .p-md-240 {
    padding: 15rem !important;
  }

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

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

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

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

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

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

  .px-md-10 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-md-15 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }

  .px-md-20 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-md-30 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }

  .px-md-40 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-md-50 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }

  .px-md-60 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

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

  .px-md-100 {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }

  .px-md-120 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-md-160 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .px-md-200 {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }

  .px-md-240 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

  .py-md-10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-md-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }

  .py-md-20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-md-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }

  .py-md-40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-md-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }

  .py-md-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

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

  .py-md-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }

  .py-md-120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-md-160 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .py-md-200 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .py-md-240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

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

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

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

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

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

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

  .pt-md-10 {
    padding-top: 0.625rem !important;
  }

  .pt-md-15 {
    padding-top: 0.9375rem !important;
  }

  .pt-md-20 {
    padding-top: 1.25rem !important;
  }

  .pt-md-30 {
    padding-top: 1.875rem !important;
  }

  .pt-md-40 {
    padding-top: 2.5rem !important;
  }

  .pt-md-50 {
    padding-top: 3.125rem !important;
  }

  .pt-md-60 {
    padding-top: 3.75rem !important;
  }

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

  .pt-md-100 {
    padding-top: 6.25rem !important;
  }

  .pt-md-120 {
    padding-top: 7.5rem !important;
  }

  .pt-md-160 {
    padding-top: 10rem !important;
  }

  .pt-md-200 {
    padding-top: 12.5rem !important;
  }

  .pt-md-240 {
    padding-top: 15rem !important;
  }

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

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

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

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

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

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

  .pe-md-10 {
    padding-right: 0.625rem !important;
  }

  .pe-md-15 {
    padding-right: 0.9375rem !important;
  }

  .pe-md-20 {
    padding-right: 1.25rem !important;
  }

  .pe-md-30 {
    padding-right: 1.875rem !important;
  }

  .pe-md-40 {
    padding-right: 2.5rem !important;
  }

  .pe-md-50 {
    padding-right: 3.125rem !important;
  }

  .pe-md-60 {
    padding-right: 3.75rem !important;
  }

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

  .pe-md-100 {
    padding-right: 6.25rem !important;
  }

  .pe-md-120 {
    padding-right: 7.5rem !important;
  }

  .pe-md-160 {
    padding-right: 10rem !important;
  }

  .pe-md-200 {
    padding-right: 12.5rem !important;
  }

  .pe-md-240 {
    padding-right: 15rem !important;
  }

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

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

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

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

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

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

  .pb-md-10 {
    padding-bottom: 0.625rem !important;
  }

  .pb-md-15 {
    padding-bottom: 0.9375rem !important;
  }

  .pb-md-20 {
    padding-bottom: 1.25rem !important;
  }

  .pb-md-30 {
    padding-bottom: 1.875rem !important;
  }

  .pb-md-40 {
    padding-bottom: 2.5rem !important;
  }

  .pb-md-50 {
    padding-bottom: 3.125rem !important;
  }

  .pb-md-60 {
    padding-bottom: 3.75rem !important;
  }

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

  .pb-md-100 {
    padding-bottom: 6.25rem !important;
  }

  .pb-md-120 {
    padding-bottom: 7.5rem !important;
  }

  .pb-md-160 {
    padding-bottom: 10rem !important;
  }

  .pb-md-200 {
    padding-bottom: 12.5rem !important;
  }

  .pb-md-240 {
    padding-bottom: 15rem !important;
  }

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

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

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

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

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

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

  .ps-md-10 {
    padding-left: 0.625rem !important;
  }

  .ps-md-15 {
    padding-left: 0.9375rem !important;
  }

  .ps-md-20 {
    padding-left: 1.25rem !important;
  }

  .ps-md-30 {
    padding-left: 1.875rem !important;
  }

  .ps-md-40 {
    padding-left: 2.5rem !important;
  }

  .ps-md-50 {
    padding-left: 3.125rem !important;
  }

  .ps-md-60 {
    padding-left: 3.75rem !important;
  }

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

  .ps-md-100 {
    padding-left: 6.25rem !important;
  }

  .ps-md-120 {
    padding-left: 7.5rem !important;
  }

  .ps-md-160 {
    padding-left: 10rem !important;
  }

  .ps-md-200 {
    padding-left: 12.5rem !important;
  }

  .ps-md-240 {
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

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

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

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .gap-lg-10 {
    gap: 0.625rem !important;
  }

  .gap-lg-15 {
    gap: 0.9375rem !important;
  }

  .gap-lg-20 {
    gap: 1.25rem !important;
  }

  .gap-lg-30 {
    gap: 1.875rem !important;
  }

  .gap-lg-40 {
    gap: 2.5rem !important;
  }

  .gap-lg-50 {
    gap: 3.125rem !important;
  }

  .gap-lg-60 {
    gap: 3.75rem !important;
  }

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

  .gap-lg-100 {
    gap: 6.25rem !important;
  }

  .gap-lg-120 {
    gap: 7.5rem !important;
  }

  .gap-lg-160 {
    gap: 10rem !important;
  }

  .gap-lg-200 {
    gap: 12.5rem !important;
  }

  .gap-lg-240 {
    gap: 15rem !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

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

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

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

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

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

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

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

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

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

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

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

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

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

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

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

  .m-lg-10 {
    margin: 0.625rem !important;
  }

  .m-lg-15 {
    margin: 0.9375rem !important;
  }

  .m-lg-20 {
    margin: 1.25rem !important;
  }

  .m-lg-30 {
    margin: 1.875rem !important;
  }

  .m-lg-40 {
    margin: 2.5rem !important;
  }

  .m-lg-50 {
    margin: 3.125rem !important;
  }

  .m-lg-60 {
    margin: 3.75rem !important;
  }

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

  .m-lg-100 {
    margin: 6.25rem !important;
  }

  .m-lg-120 {
    margin: 7.5rem !important;
  }

  .m-lg-160 {
    margin: 10rem !important;
  }

  .m-lg-200 {
    margin: 12.5rem !important;
  }

  .m-lg-240 {
    margin: 15rem !important;
  }

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

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

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

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

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

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

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

  .mx-lg-10 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-lg-15 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }

  .mx-lg-20 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-lg-30 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }

  .mx-lg-40 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-lg-50 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }

  .mx-lg-60 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

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

  .mx-lg-100 {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }

  .mx-lg-120 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-lg-160 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-lg-200 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }

  .mx-lg-240 {
    margin-right: 15rem !important;
    margin-left: 15rem !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.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }

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

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

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

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

  .my-lg-10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-lg-15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }

  .my-lg-20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-lg-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }

  .my-lg-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-lg-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }

  .my-lg-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

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

  .my-lg-100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }

  .my-lg-120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-lg-160 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-lg-200 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .my-lg-240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !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.0625rem !important;
  }

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

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

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

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

  .mt-lg-10 {
    margin-top: 0.625rem !important;
  }

  .mt-lg-15 {
    margin-top: 0.9375rem !important;
  }

  .mt-lg-20 {
    margin-top: 1.25rem !important;
  }

  .mt-lg-30 {
    margin-top: 1.875rem !important;
  }

  .mt-lg-40 {
    margin-top: 2.5rem !important;
  }

  .mt-lg-50 {
    margin-top: 3.125rem !important;
  }

  .mt-lg-60 {
    margin-top: 3.75rem !important;
  }

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

  .mt-lg-100 {
    margin-top: 6.25rem !important;
  }

  .mt-lg-120 {
    margin-top: 7.5rem !important;
  }

  .mt-lg-160 {
    margin-top: 10rem !important;
  }

  .mt-lg-200 {
    margin-top: 12.5rem !important;
  }

  .mt-lg-240 {
    margin-top: 15rem !important;
  }

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

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

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

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

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

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

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

  .me-lg-10 {
    margin-right: 0.625rem !important;
  }

  .me-lg-15 {
    margin-right: 0.9375rem !important;
  }

  .me-lg-20 {
    margin-right: 1.25rem !important;
  }

  .me-lg-30 {
    margin-right: 1.875rem !important;
  }

  .me-lg-40 {
    margin-right: 2.5rem !important;
  }

  .me-lg-50 {
    margin-right: 3.125rem !important;
  }

  .me-lg-60 {
    margin-right: 3.75rem !important;
  }

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

  .me-lg-100 {
    margin-right: 6.25rem !important;
  }

  .me-lg-120 {
    margin-right: 7.5rem !important;
  }

  .me-lg-160 {
    margin-right: 10rem !important;
  }

  .me-lg-200 {
    margin-right: 12.5rem !important;
  }

  .me-lg-240 {
    margin-right: 15rem !important;
  }

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

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

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

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

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

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

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

  .mb-lg-10 {
    margin-bottom: 0.625rem !important;
  }

  .mb-lg-15 {
    margin-bottom: 0.9375rem !important;
  }

  .mb-lg-20 {
    margin-bottom: 1.25rem !important;
  }

  .mb-lg-30 {
    margin-bottom: 1.875rem !important;
  }

  .mb-lg-40 {
    margin-bottom: 2.5rem !important;
  }

  .mb-lg-50 {
    margin-bottom: 3.125rem !important;
  }

  .mb-lg-60 {
    margin-bottom: 3.75rem !important;
  }

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

  .mb-lg-100 {
    margin-bottom: 6.25rem !important;
  }

  .mb-lg-120 {
    margin-bottom: 7.5rem !important;
  }

  .mb-lg-160 {
    margin-bottom: 10rem !important;
  }

  .mb-lg-200 {
    margin-bottom: 12.5rem !important;
  }

  .mb-lg-240 {
    margin-bottom: 15rem !important;
  }

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

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

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

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

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

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

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

  .ms-lg-10 {
    margin-left: 0.625rem !important;
  }

  .ms-lg-15 {
    margin-left: 0.9375rem !important;
  }

  .ms-lg-20 {
    margin-left: 1.25rem !important;
  }

  .ms-lg-30 {
    margin-left: 1.875rem !important;
  }

  .ms-lg-40 {
    margin-left: 2.5rem !important;
  }

  .ms-lg-50 {
    margin-left: 3.125rem !important;
  }

  .ms-lg-60 {
    margin-left: 3.75rem !important;
  }

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

  .ms-lg-100 {
    margin-left: 6.25rem !important;
  }

  .ms-lg-120 {
    margin-left: 7.5rem !important;
  }

  .ms-lg-160 {
    margin-left: 10rem !important;
  }

  .ms-lg-200 {
    margin-left: 12.5rem !important;
  }

  .ms-lg-240 {
    margin-left: 15rem !important;
  }

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

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

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

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

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

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

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

  .p-lg-10 {
    padding: 0.625rem !important;
  }

  .p-lg-15 {
    padding: 0.9375rem !important;
  }

  .p-lg-20 {
    padding: 1.25rem !important;
  }

  .p-lg-30 {
    padding: 1.875rem !important;
  }

  .p-lg-40 {
    padding: 2.5rem !important;
  }

  .p-lg-50 {
    padding: 3.125rem !important;
  }

  .p-lg-60 {
    padding: 3.75rem !important;
  }

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

  .p-lg-100 {
    padding: 6.25rem !important;
  }

  .p-lg-120 {
    padding: 7.5rem !important;
  }

  .p-lg-160 {
    padding: 10rem !important;
  }

  .p-lg-200 {
    padding: 12.5rem !important;
  }

  .p-lg-240 {
    padding: 15rem !important;
  }

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

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

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

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

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

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

  .px-lg-10 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-lg-15 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }

  .px-lg-20 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-lg-30 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }

  .px-lg-40 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-lg-50 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }

  .px-lg-60 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

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

  .px-lg-100 {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }

  .px-lg-120 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-lg-160 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .px-lg-200 {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }

  .px-lg-240 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

  .py-lg-10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-lg-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }

  .py-lg-20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-lg-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }

  .py-lg-40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-lg-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }

  .py-lg-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

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

  .py-lg-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }

  .py-lg-120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-lg-160 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .py-lg-200 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .py-lg-240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

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

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

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

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

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

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

  .pt-lg-10 {
    padding-top: 0.625rem !important;
  }

  .pt-lg-15 {
    padding-top: 0.9375rem !important;
  }

  .pt-lg-20 {
    padding-top: 1.25rem !important;
  }

  .pt-lg-30 {
    padding-top: 1.875rem !important;
  }

  .pt-lg-40 {
    padding-top: 2.5rem !important;
  }

  .pt-lg-50 {
    padding-top: 3.125rem !important;
  }

  .pt-lg-60 {
    padding-top: 3.75rem !important;
  }

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

  .pt-lg-100 {
    padding-top: 6.25rem !important;
  }

  .pt-lg-120 {
    padding-top: 7.5rem !important;
  }

  .pt-lg-160 {
    padding-top: 10rem !important;
  }

  .pt-lg-200 {
    padding-top: 12.5rem !important;
  }

  .pt-lg-240 {
    padding-top: 15rem !important;
  }

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

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

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

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

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

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

  .pe-lg-10 {
    padding-right: 0.625rem !important;
  }

  .pe-lg-15 {
    padding-right: 0.9375rem !important;
  }

  .pe-lg-20 {
    padding-right: 1.25rem !important;
  }

  .pe-lg-30 {
    padding-right: 1.875rem !important;
  }

  .pe-lg-40 {
    padding-right: 2.5rem !important;
  }

  .pe-lg-50 {
    padding-right: 3.125rem !important;
  }

  .pe-lg-60 {
    padding-right: 3.75rem !important;
  }

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

  .pe-lg-100 {
    padding-right: 6.25rem !important;
  }

  .pe-lg-120 {
    padding-right: 7.5rem !important;
  }

  .pe-lg-160 {
    padding-right: 10rem !important;
  }

  .pe-lg-200 {
    padding-right: 12.5rem !important;
  }

  .pe-lg-240 {
    padding-right: 15rem !important;
  }

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

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

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

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

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

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

  .pb-lg-10 {
    padding-bottom: 0.625rem !important;
  }

  .pb-lg-15 {
    padding-bottom: 0.9375rem !important;
  }

  .pb-lg-20 {
    padding-bottom: 1.25rem !important;
  }

  .pb-lg-30 {
    padding-bottom: 1.875rem !important;
  }

  .pb-lg-40 {
    padding-bottom: 2.5rem !important;
  }

  .pb-lg-50 {
    padding-bottom: 3.125rem !important;
  }

  .pb-lg-60 {
    padding-bottom: 3.75rem !important;
  }

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

  .pb-lg-100 {
    padding-bottom: 6.25rem !important;
  }

  .pb-lg-120 {
    padding-bottom: 7.5rem !important;
  }

  .pb-lg-160 {
    padding-bottom: 10rem !important;
  }

  .pb-lg-200 {
    padding-bottom: 12.5rem !important;
  }

  .pb-lg-240 {
    padding-bottom: 15rem !important;
  }

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

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

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

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

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

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

  .ps-lg-10 {
    padding-left: 0.625rem !important;
  }

  .ps-lg-15 {
    padding-left: 0.9375rem !important;
  }

  .ps-lg-20 {
    padding-left: 1.25rem !important;
  }

  .ps-lg-30 {
    padding-left: 1.875rem !important;
  }

  .ps-lg-40 {
    padding-left: 2.5rem !important;
  }

  .ps-lg-50 {
    padding-left: 3.125rem !important;
  }

  .ps-lg-60 {
    padding-left: 3.75rem !important;
  }

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

  .ps-lg-100 {
    padding-left: 6.25rem !important;
  }

  .ps-lg-120 {
    padding-left: 7.5rem !important;
  }

  .ps-lg-160 {
    padding-left: 10rem !important;
  }

  .ps-lg-200 {
    padding-left: 12.5rem !important;
  }

  .ps-lg-240 {
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

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

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

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

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

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

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

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

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

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

  .gap-xl-1 {
    gap: 0.0625rem !important;
  }

  .gap-xl-2 {
    gap: 0.125rem !important;
  }

  .gap-xl-3 {
    gap: 0.1875rem !important;
  }

  .gap-xl-4 {
    gap: 0.25rem !important;
  }

  .gap-xl-5 {
    gap: 0.3125rem !important;
  }

  .gap-xl-10 {
    gap: 0.625rem !important;
  }

  .gap-xl-15 {
    gap: 0.9375rem !important;
  }

  .gap-xl-20 {
    gap: 1.25rem !important;
  }

  .gap-xl-30 {
    gap: 1.875rem !important;
  }

  .gap-xl-40 {
    gap: 2.5rem !important;
  }

  .gap-xl-50 {
    gap: 3.125rem !important;
  }

  .gap-xl-60 {
    gap: 3.75rem !important;
  }

  .gap-xl-80 {
    gap: 5rem !important;
  }

  .gap-xl-100 {
    gap: 6.25rem !important;
  }

  .gap-xl-120 {
    gap: 7.5rem !important;
  }

  .gap-xl-160 {
    gap: 10rem !important;
  }

  .gap-xl-200 {
    gap: 12.5rem !important;
  }

  .gap-xl-240 {
    gap: 15rem !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

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

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

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

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

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

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

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

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

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

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

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

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

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

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

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

  .m-xl-10 {
    margin: 0.625rem !important;
  }

  .m-xl-15 {
    margin: 0.9375rem !important;
  }

  .m-xl-20 {
    margin: 1.25rem !important;
  }

  .m-xl-30 {
    margin: 1.875rem !important;
  }

  .m-xl-40 {
    margin: 2.5rem !important;
  }

  .m-xl-50 {
    margin: 3.125rem !important;
  }

  .m-xl-60 {
    margin: 3.75rem !important;
  }

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

  .m-xl-100 {
    margin: 6.25rem !important;
  }

  .m-xl-120 {
    margin: 7.5rem !important;
  }

  .m-xl-160 {
    margin: 10rem !important;
  }

  .m-xl-200 {
    margin: 12.5rem !important;
  }

  .m-xl-240 {
    margin: 15rem !important;
  }

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

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

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

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

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

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

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

  .mx-xl-10 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-xl-15 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }

  .mx-xl-20 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xl-30 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }

  .mx-xl-40 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xl-50 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }

  .mx-xl-60 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

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

  .mx-xl-100 {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }

  .mx-xl-120 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-xl-160 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-xl-200 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }

  .mx-xl-240 {
    margin-right: 15rem !important;
    margin-left: 15rem !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.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }

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

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

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

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

  .my-xl-10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-xl-15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }

  .my-xl-20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xl-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }

  .my-xl-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xl-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }

  .my-xl-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

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

  .my-xl-100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }

  .my-xl-120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-xl-160 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-xl-200 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .my-xl-240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !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.0625rem !important;
  }

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

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

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

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

  .mt-xl-10 {
    margin-top: 0.625rem !important;
  }

  .mt-xl-15 {
    margin-top: 0.9375rem !important;
  }

  .mt-xl-20 {
    margin-top: 1.25rem !important;
  }

  .mt-xl-30 {
    margin-top: 1.875rem !important;
  }

  .mt-xl-40 {
    margin-top: 2.5rem !important;
  }

  .mt-xl-50 {
    margin-top: 3.125rem !important;
  }

  .mt-xl-60 {
    margin-top: 3.75rem !important;
  }

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

  .mt-xl-100 {
    margin-top: 6.25rem !important;
  }

  .mt-xl-120 {
    margin-top: 7.5rem !important;
  }

  .mt-xl-160 {
    margin-top: 10rem !important;
  }

  .mt-xl-200 {
    margin-top: 12.5rem !important;
  }

  .mt-xl-240 {
    margin-top: 15rem !important;
  }

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

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

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

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

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

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

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

  .me-xl-10 {
    margin-right: 0.625rem !important;
  }

  .me-xl-15 {
    margin-right: 0.9375rem !important;
  }

  .me-xl-20 {
    margin-right: 1.25rem !important;
  }

  .me-xl-30 {
    margin-right: 1.875rem !important;
  }

  .me-xl-40 {
    margin-right: 2.5rem !important;
  }

  .me-xl-50 {
    margin-right: 3.125rem !important;
  }

  .me-xl-60 {
    margin-right: 3.75rem !important;
  }

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

  .me-xl-100 {
    margin-right: 6.25rem !important;
  }

  .me-xl-120 {
    margin-right: 7.5rem !important;
  }

  .me-xl-160 {
    margin-right: 10rem !important;
  }

  .me-xl-200 {
    margin-right: 12.5rem !important;
  }

  .me-xl-240 {
    margin-right: 15rem !important;
  }

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

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

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

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

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

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

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

  .mb-xl-10 {
    margin-bottom: 0.625rem !important;
  }

  .mb-xl-15 {
    margin-bottom: 0.9375rem !important;
  }

  .mb-xl-20 {
    margin-bottom: 1.25rem !important;
  }

  .mb-xl-30 {
    margin-bottom: 1.875rem !important;
  }

  .mb-xl-40 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xl-50 {
    margin-bottom: 3.125rem !important;
  }

  .mb-xl-60 {
    margin-bottom: 3.75rem !important;
  }

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

  .mb-xl-100 {
    margin-bottom: 6.25rem !important;
  }

  .mb-xl-120 {
    margin-bottom: 7.5rem !important;
  }

  .mb-xl-160 {
    margin-bottom: 10rem !important;
  }

  .mb-xl-200 {
    margin-bottom: 12.5rem !important;
  }

  .mb-xl-240 {
    margin-bottom: 15rem !important;
  }

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

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

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

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

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

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

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

  .ms-xl-10 {
    margin-left: 0.625rem !important;
  }

  .ms-xl-15 {
    margin-left: 0.9375rem !important;
  }

  .ms-xl-20 {
    margin-left: 1.25rem !important;
  }

  .ms-xl-30 {
    margin-left: 1.875rem !important;
  }

  .ms-xl-40 {
    margin-left: 2.5rem !important;
  }

  .ms-xl-50 {
    margin-left: 3.125rem !important;
  }

  .ms-xl-60 {
    margin-left: 3.75rem !important;
  }

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

  .ms-xl-100 {
    margin-left: 6.25rem !important;
  }

  .ms-xl-120 {
    margin-left: 7.5rem !important;
  }

  .ms-xl-160 {
    margin-left: 10rem !important;
  }

  .ms-xl-200 {
    margin-left: 12.5rem !important;
  }

  .ms-xl-240 {
    margin-left: 15rem !important;
  }

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

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

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

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

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

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

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

  .p-xl-10 {
    padding: 0.625rem !important;
  }

  .p-xl-15 {
    padding: 0.9375rem !important;
  }

  .p-xl-20 {
    padding: 1.25rem !important;
  }

  .p-xl-30 {
    padding: 1.875rem !important;
  }

  .p-xl-40 {
    padding: 2.5rem !important;
  }

  .p-xl-50 {
    padding: 3.125rem !important;
  }

  .p-xl-60 {
    padding: 3.75rem !important;
  }

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

  .p-xl-100 {
    padding: 6.25rem !important;
  }

  .p-xl-120 {
    padding: 7.5rem !important;
  }

  .p-xl-160 {
    padding: 10rem !important;
  }

  .p-xl-200 {
    padding: 12.5rem !important;
  }

  .p-xl-240 {
    padding: 15rem !important;
  }

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

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

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

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

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

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

  .px-xl-10 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-xl-15 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }

  .px-xl-20 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xl-30 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }

  .px-xl-40 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xl-50 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }

  .px-xl-60 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

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

  .px-xl-100 {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }

  .px-xl-120 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-xl-160 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .px-xl-200 {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }

  .px-xl-240 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

  .py-xl-10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-xl-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }

  .py-xl-20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xl-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }

  .py-xl-40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xl-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }

  .py-xl-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

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

  .py-xl-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }

  .py-xl-120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-xl-160 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .py-xl-200 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .py-xl-240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

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

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

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

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

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

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

  .pt-xl-10 {
    padding-top: 0.625rem !important;
  }

  .pt-xl-15 {
    padding-top: 0.9375rem !important;
  }

  .pt-xl-20 {
    padding-top: 1.25rem !important;
  }

  .pt-xl-30 {
    padding-top: 1.875rem !important;
  }

  .pt-xl-40 {
    padding-top: 2.5rem !important;
  }

  .pt-xl-50 {
    padding-top: 3.125rem !important;
  }

  .pt-xl-60 {
    padding-top: 3.75rem !important;
  }

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

  .pt-xl-100 {
    padding-top: 6.25rem !important;
  }

  .pt-xl-120 {
    padding-top: 7.5rem !important;
  }

  .pt-xl-160 {
    padding-top: 10rem !important;
  }

  .pt-xl-200 {
    padding-top: 12.5rem !important;
  }

  .pt-xl-240 {
    padding-top: 15rem !important;
  }

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

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

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

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

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

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

  .pe-xl-10 {
    padding-right: 0.625rem !important;
  }

  .pe-xl-15 {
    padding-right: 0.9375rem !important;
  }

  .pe-xl-20 {
    padding-right: 1.25rem !important;
  }

  .pe-xl-30 {
    padding-right: 1.875rem !important;
  }

  .pe-xl-40 {
    padding-right: 2.5rem !important;
  }

  .pe-xl-50 {
    padding-right: 3.125rem !important;
  }

  .pe-xl-60 {
    padding-right: 3.75rem !important;
  }

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

  .pe-xl-100 {
    padding-right: 6.25rem !important;
  }

  .pe-xl-120 {
    padding-right: 7.5rem !important;
  }

  .pe-xl-160 {
    padding-right: 10rem !important;
  }

  .pe-xl-200 {
    padding-right: 12.5rem !important;
  }

  .pe-xl-240 {
    padding-right: 15rem !important;
  }

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

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

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

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

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

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

  .pb-xl-10 {
    padding-bottom: 0.625rem !important;
  }

  .pb-xl-15 {
    padding-bottom: 0.9375rem !important;
  }

  .pb-xl-20 {
    padding-bottom: 1.25rem !important;
  }

  .pb-xl-30 {
    padding-bottom: 1.875rem !important;
  }

  .pb-xl-40 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xl-50 {
    padding-bottom: 3.125rem !important;
  }

  .pb-xl-60 {
    padding-bottom: 3.75rem !important;
  }

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

  .pb-xl-100 {
    padding-bottom: 6.25rem !important;
  }

  .pb-xl-120 {
    padding-bottom: 7.5rem !important;
  }

  .pb-xl-160 {
    padding-bottom: 10rem !important;
  }

  .pb-xl-200 {
    padding-bottom: 12.5rem !important;
  }

  .pb-xl-240 {
    padding-bottom: 15rem !important;
  }

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

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

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

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

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

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

  .ps-xl-10 {
    padding-left: 0.625rem !important;
  }

  .ps-xl-15 {
    padding-left: 0.9375rem !important;
  }

  .ps-xl-20 {
    padding-left: 1.25rem !important;
  }

  .ps-xl-30 {
    padding-left: 1.875rem !important;
  }

  .ps-xl-40 {
    padding-left: 2.5rem !important;
  }

  .ps-xl-50 {
    padding-left: 3.125rem !important;
  }

  .ps-xl-60 {
    padding-left: 3.75rem !important;
  }

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

  .ps-xl-100 {
    padding-left: 6.25rem !important;
  }

  .ps-xl-120 {
    padding-left: 7.5rem !important;
  }

  .ps-xl-160 {
    padding-left: 10rem !important;
  }

  .ps-xl-200 {
    padding-left: 12.5rem !important;
  }

  .ps-xl-240 {
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

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

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

  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }

  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

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

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

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

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

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

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

  .gap-xxl-1 {
    gap: 0.0625rem !important;
  }

  .gap-xxl-2 {
    gap: 0.125rem !important;
  }

  .gap-xxl-3 {
    gap: 0.1875rem !important;
  }

  .gap-xxl-4 {
    gap: 0.25rem !important;
  }

  .gap-xxl-5 {
    gap: 0.3125rem !important;
  }

  .gap-xxl-10 {
    gap: 0.625rem !important;
  }

  .gap-xxl-15 {
    gap: 0.9375rem !important;
  }

  .gap-xxl-20 {
    gap: 1.25rem !important;
  }

  .gap-xxl-30 {
    gap: 1.875rem !important;
  }

  .gap-xxl-40 {
    gap: 2.5rem !important;
  }

  .gap-xxl-50 {
    gap: 3.125rem !important;
  }

  .gap-xxl-60 {
    gap: 3.75rem !important;
  }

  .gap-xxl-80 {
    gap: 5rem !important;
  }

  .gap-xxl-100 {
    gap: 6.25rem !important;
  }

  .gap-xxl-120 {
    gap: 7.5rem !important;
  }

  .gap-xxl-160 {
    gap: 10rem !important;
  }

  .gap-xxl-200 {
    gap: 12.5rem !important;
  }

  .gap-xxl-240 {
    gap: 15rem !important;
  }

  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }

  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }

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

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

  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }

  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }

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

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

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }

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

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

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

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

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

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

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

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

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

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

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

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

  .m-xxl-10 {
    margin: 0.625rem !important;
  }

  .m-xxl-15 {
    margin: 0.9375rem !important;
  }

  .m-xxl-20 {
    margin: 1.25rem !important;
  }

  .m-xxl-30 {
    margin: 1.875rem !important;
  }

  .m-xxl-40 {
    margin: 2.5rem !important;
  }

  .m-xxl-50 {
    margin: 3.125rem !important;
  }

  .m-xxl-60 {
    margin: 3.75rem !important;
  }

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

  .m-xxl-100 {
    margin: 6.25rem !important;
  }

  .m-xxl-120 {
    margin: 7.5rem !important;
  }

  .m-xxl-160 {
    margin: 10rem !important;
  }

  .m-xxl-200 {
    margin: 12.5rem !important;
  }

  .m-xxl-240 {
    margin: 15rem !important;
  }

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

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

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

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

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

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

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

  .mx-xxl-10 {
    margin-right: 0.625rem !important;
    margin-left: 0.625rem !important;
  }

  .mx-xxl-15 {
    margin-right: 0.9375rem !important;
    margin-left: 0.9375rem !important;
  }

  .mx-xxl-20 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xxl-30 {
    margin-right: 1.875rem !important;
    margin-left: 1.875rem !important;
  }

  .mx-xxl-40 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xxl-50 {
    margin-right: 3.125rem !important;
    margin-left: 3.125rem !important;
  }

  .mx-xxl-60 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

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

  .mx-xxl-100 {
    margin-right: 6.25rem !important;
    margin-left: 6.25rem !important;
  }

  .mx-xxl-120 {
    margin-right: 7.5rem !important;
    margin-left: 7.5rem !important;
  }

  .mx-xxl-160 {
    margin-right: 10rem !important;
    margin-left: 10rem !important;
  }

  .mx-xxl-200 {
    margin-right: 12.5rem !important;
    margin-left: 12.5rem !important;
  }

  .mx-xxl-240 {
    margin-right: 15rem !important;
    margin-left: 15rem !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.0625rem !important;
    margin-bottom: 0.0625rem !important;
  }

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

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

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

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

  .my-xxl-10 {
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .my-xxl-15 {
    margin-top: 0.9375rem !important;
    margin-bottom: 0.9375rem !important;
  }

  .my-xxl-20 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xxl-30 {
    margin-top: 1.875rem !important;
    margin-bottom: 1.875rem !important;
  }

  .my-xxl-40 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xxl-50 {
    margin-top: 3.125rem !important;
    margin-bottom: 3.125rem !important;
  }

  .my-xxl-60 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

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

  .my-xxl-100 {
    margin-top: 6.25rem !important;
    margin-bottom: 6.25rem !important;
  }

  .my-xxl-120 {
    margin-top: 7.5rem !important;
    margin-bottom: 7.5rem !important;
  }

  .my-xxl-160 {
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .my-xxl-200 {
    margin-top: 12.5rem !important;
    margin-bottom: 12.5rem !important;
  }

  .my-xxl-240 {
    margin-top: 15rem !important;
    margin-bottom: 15rem !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.0625rem !important;
  }

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

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

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

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

  .mt-xxl-10 {
    margin-top: 0.625rem !important;
  }

  .mt-xxl-15 {
    margin-top: 0.9375rem !important;
  }

  .mt-xxl-20 {
    margin-top: 1.25rem !important;
  }

  .mt-xxl-30 {
    margin-top: 1.875rem !important;
  }

  .mt-xxl-40 {
    margin-top: 2.5rem !important;
  }

  .mt-xxl-50 {
    margin-top: 3.125rem !important;
  }

  .mt-xxl-60 {
    margin-top: 3.75rem !important;
  }

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

  .mt-xxl-100 {
    margin-top: 6.25rem !important;
  }

  .mt-xxl-120 {
    margin-top: 7.5rem !important;
  }

  .mt-xxl-160 {
    margin-top: 10rem !important;
  }

  .mt-xxl-200 {
    margin-top: 12.5rem !important;
  }

  .mt-xxl-240 {
    margin-top: 15rem !important;
  }

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

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

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

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

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

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

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

  .me-xxl-10 {
    margin-right: 0.625rem !important;
  }

  .me-xxl-15 {
    margin-right: 0.9375rem !important;
  }

  .me-xxl-20 {
    margin-right: 1.25rem !important;
  }

  .me-xxl-30 {
    margin-right: 1.875rem !important;
  }

  .me-xxl-40 {
    margin-right: 2.5rem !important;
  }

  .me-xxl-50 {
    margin-right: 3.125rem !important;
  }

  .me-xxl-60 {
    margin-right: 3.75rem !important;
  }

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

  .me-xxl-100 {
    margin-right: 6.25rem !important;
  }

  .me-xxl-120 {
    margin-right: 7.5rem !important;
  }

  .me-xxl-160 {
    margin-right: 10rem !important;
  }

  .me-xxl-200 {
    margin-right: 12.5rem !important;
  }

  .me-xxl-240 {
    margin-right: 15rem !important;
  }

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

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

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

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

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

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

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

  .mb-xxl-10 {
    margin-bottom: 0.625rem !important;
  }

  .mb-xxl-15 {
    margin-bottom: 0.9375rem !important;
  }

  .mb-xxl-20 {
    margin-bottom: 1.25rem !important;
  }

  .mb-xxl-30 {
    margin-bottom: 1.875rem !important;
  }

  .mb-xxl-40 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xxl-50 {
    margin-bottom: 3.125rem !important;
  }

  .mb-xxl-60 {
    margin-bottom: 3.75rem !important;
  }

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

  .mb-xxl-100 {
    margin-bottom: 6.25rem !important;
  }

  .mb-xxl-120 {
    margin-bottom: 7.5rem !important;
  }

  .mb-xxl-160 {
    margin-bottom: 10rem !important;
  }

  .mb-xxl-200 {
    margin-bottom: 12.5rem !important;
  }

  .mb-xxl-240 {
    margin-bottom: 15rem !important;
  }

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

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

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

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

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

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

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

  .ms-xxl-10 {
    margin-left: 0.625rem !important;
  }

  .ms-xxl-15 {
    margin-left: 0.9375rem !important;
  }

  .ms-xxl-20 {
    margin-left: 1.25rem !important;
  }

  .ms-xxl-30 {
    margin-left: 1.875rem !important;
  }

  .ms-xxl-40 {
    margin-left: 2.5rem !important;
  }

  .ms-xxl-50 {
    margin-left: 3.125rem !important;
  }

  .ms-xxl-60 {
    margin-left: 3.75rem !important;
  }

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

  .ms-xxl-100 {
    margin-left: 6.25rem !important;
  }

  .ms-xxl-120 {
    margin-left: 7.5rem !important;
  }

  .ms-xxl-160 {
    margin-left: 10rem !important;
  }

  .ms-xxl-200 {
    margin-left: 12.5rem !important;
  }

  .ms-xxl-240 {
    margin-left: 15rem !important;
  }

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

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

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

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

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

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

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

  .p-xxl-10 {
    padding: 0.625rem !important;
  }

  .p-xxl-15 {
    padding: 0.9375rem !important;
  }

  .p-xxl-20 {
    padding: 1.25rem !important;
  }

  .p-xxl-30 {
    padding: 1.875rem !important;
  }

  .p-xxl-40 {
    padding: 2.5rem !important;
  }

  .p-xxl-50 {
    padding: 3.125rem !important;
  }

  .p-xxl-60 {
    padding: 3.75rem !important;
  }

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

  .p-xxl-100 {
    padding: 6.25rem !important;
  }

  .p-xxl-120 {
    padding: 7.5rem !important;
  }

  .p-xxl-160 {
    padding: 10rem !important;
  }

  .p-xxl-200 {
    padding: 12.5rem !important;
  }

  .p-xxl-240 {
    padding: 15rem !important;
  }

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

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

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

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

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

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

  .px-xxl-10 {
    padding-right: 0.625rem !important;
    padding-left: 0.625rem !important;
  }

  .px-xxl-15 {
    padding-right: 0.9375rem !important;
    padding-left: 0.9375rem !important;
  }

  .px-xxl-20 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xxl-30 {
    padding-right: 1.875rem !important;
    padding-left: 1.875rem !important;
  }

  .px-xxl-40 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xxl-50 {
    padding-right: 3.125rem !important;
    padding-left: 3.125rem !important;
  }

  .px-xxl-60 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

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

  .px-xxl-100 {
    padding-right: 6.25rem !important;
    padding-left: 6.25rem !important;
  }

  .px-xxl-120 {
    padding-right: 7.5rem !important;
    padding-left: 7.5rem !important;
  }

  .px-xxl-160 {
    padding-right: 10rem !important;
    padding-left: 10rem !important;
  }

  .px-xxl-200 {
    padding-right: 12.5rem !important;
    padding-left: 12.5rem !important;
  }

  .px-xxl-240 {
    padding-right: 15rem !important;
    padding-left: 15rem !important;
  }

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

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

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

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

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

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

  .py-xxl-10 {
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .py-xxl-15 {
    padding-top: 0.9375rem !important;
    padding-bottom: 0.9375rem !important;
  }

  .py-xxl-20 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xxl-30 {
    padding-top: 1.875rem !important;
    padding-bottom: 1.875rem !important;
  }

  .py-xxl-40 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xxl-50 {
    padding-top: 3.125rem !important;
    padding-bottom: 3.125rem !important;
  }

  .py-xxl-60 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

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

  .py-xxl-100 {
    padding-top: 6.25rem !important;
    padding-bottom: 6.25rem !important;
  }

  .py-xxl-120 {
    padding-top: 7.5rem !important;
    padding-bottom: 7.5rem !important;
  }

  .py-xxl-160 {
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .py-xxl-200 {
    padding-top: 12.5rem !important;
    padding-bottom: 12.5rem !important;
  }

  .py-xxl-240 {
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

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

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

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

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

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

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

  .pt-xxl-10 {
    padding-top: 0.625rem !important;
  }

  .pt-xxl-15 {
    padding-top: 0.9375rem !important;
  }

  .pt-xxl-20 {
    padding-top: 1.25rem !important;
  }

  .pt-xxl-30 {
    padding-top: 1.875rem !important;
  }

  .pt-xxl-40 {
    padding-top: 2.5rem !important;
  }

  .pt-xxl-50 {
    padding-top: 3.125rem !important;
  }

  .pt-xxl-60 {
    padding-top: 3.75rem !important;
  }

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

  .pt-xxl-100 {
    padding-top: 6.25rem !important;
  }

  .pt-xxl-120 {
    padding-top: 7.5rem !important;
  }

  .pt-xxl-160 {
    padding-top: 10rem !important;
  }

  .pt-xxl-200 {
    padding-top: 12.5rem !important;
  }

  .pt-xxl-240 {
    padding-top: 15rem !important;
  }

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

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

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

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

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

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

  .pe-xxl-10 {
    padding-right: 0.625rem !important;
  }

  .pe-xxl-15 {
    padding-right: 0.9375rem !important;
  }

  .pe-xxl-20 {
    padding-right: 1.25rem !important;
  }

  .pe-xxl-30 {
    padding-right: 1.875rem !important;
  }

  .pe-xxl-40 {
    padding-right: 2.5rem !important;
  }

  .pe-xxl-50 {
    padding-right: 3.125rem !important;
  }

  .pe-xxl-60 {
    padding-right: 3.75rem !important;
  }

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

  .pe-xxl-100 {
    padding-right: 6.25rem !important;
  }

  .pe-xxl-120 {
    padding-right: 7.5rem !important;
  }

  .pe-xxl-160 {
    padding-right: 10rem !important;
  }

  .pe-xxl-200 {
    padding-right: 12.5rem !important;
  }

  .pe-xxl-240 {
    padding-right: 15rem !important;
  }

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

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

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

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

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

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

  .pb-xxl-10 {
    padding-bottom: 0.625rem !important;
  }

  .pb-xxl-15 {
    padding-bottom: 0.9375rem !important;
  }

  .pb-xxl-20 {
    padding-bottom: 1.25rem !important;
  }

  .pb-xxl-30 {
    padding-bottom: 1.875rem !important;
  }

  .pb-xxl-40 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xxl-50 {
    padding-bottom: 3.125rem !important;
  }

  .pb-xxl-60 {
    padding-bottom: 3.75rem !important;
  }

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

  .pb-xxl-100 {
    padding-bottom: 6.25rem !important;
  }

  .pb-xxl-120 {
    padding-bottom: 7.5rem !important;
  }

  .pb-xxl-160 {
    padding-bottom: 10rem !important;
  }

  .pb-xxl-200 {
    padding-bottom: 12.5rem !important;
  }

  .pb-xxl-240 {
    padding-bottom: 15rem !important;
  }

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

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

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

  .ps-xxl-3 {
    padding-left: 0.1875rem !important;
  }

  .ps-xxl-4 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-5 {
    padding-left: 0.3125rem !important;
  }

  .ps-xxl-10 {
    padding-left: 0.625rem !important;
  }

  .ps-xxl-15 {
    padding-left: 0.9375rem !important;
  }

  .ps-xxl-20 {
    padding-left: 1.25rem !important;
  }

  .ps-xxl-30 {
    padding-left: 1.875rem !important;
  }

  .ps-xxl-40 {
    padding-left: 2.5rem !important;
  }

  .ps-xxl-50 {
    padding-left: 3.125rem !important;
  }

  .ps-xxl-60 {
    padding-left: 3.75rem !important;
  }

  .ps-xxl-80 {
    padding-left: 5rem !important;
  }

  .ps-xxl-100 {
    padding-left: 6.25rem !important;
  }

  .ps-xxl-120 {
    padding-left: 7.5rem !important;
  }

  .ps-xxl-160 {
    padding-left: 10rem !important;
  }

  .ps-xxl-200 {
    padding-left: 12.5rem !important;
  }

  .ps-xxl-240 {
    padding-left: 15rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 8rem !important;
  }

  .fs-2 {
    font-size: 4.5rem !important;
  }

  .fs-3 {
    font-size: 3rem !important;
  }

  .fs-4 {
    font-size: 2.5rem !important;
  }

  .fs-5 {
    font-size: 1.75rem !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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Bold.woff2") format("woff2"), url("../fonts/Oswald-Bold.woff") format("woff"), url("../fonts/Oswald-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-SemiBold.woff2") format("woff2"), url("../fonts/Oswald-SemiBold.woff") format("woff"), url("../fonts/Oswald-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Medium.woff2") format("woff2"), url("../fonts/Oswald-Medium.woff") format("woff"), url("../fonts/Oswald-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Regular.woff2") format("woff2"), url("../fonts/Oswald-Regular.woff") format("woff"), url("../fonts/Oswald-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Bold.woff2") format("woff2"), url("../fonts/Jost-Bold.woff") format("woff"), url("../fonts/Jost-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-SemiBold.woff2") format("woff2"), url("../fonts/Jost-SemiBold.woff") format("woff"), url("../fonts/Jost-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Medium.woff2") format("woff2"), url("../fonts/Jost-Medium.woff") format("woff"), url("../fonts/Jost-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-Regular.woff2") format("woff2"), url("../fonts/Jost-Regular.woff") format("woff"), url("../fonts/Jost-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/*#region Rem */
/*#endregion */
/*#region Rem */
/*#endregion */
[class^=icon-],
[class*=" icon-"] {
  font-family: "iconfont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
}

:root {
  --scale: 1;
}
@media (min-width: 1580px) {
  :root {
    --scale: 1.1;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  :root {
    --scale: 0.9;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  :root {
    --scale: 0.8;
  }
}
@media (max-width: 767.98px) {
  :root {
    --scale: 0.6;
  }
}

html {
  font-family: "Jost";
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.wp-front {
  overflow-x: hidden;
  overflow-y: auto;
  background: #f9f9f9;
}

body.wp-front,
.editor-styles-wrapper [data-block] {
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Jost";
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #f9f9f9;
}
@media (max-width: 767.98px) {
  body.wp-front,
.editor-styles-wrapper [data-block] {
    font-size: 1.125rem;
  }
}

.editor-styles-wrapper [data-block] {
  color: inherit;
  background-color: inherit;
}

body.wp-front {
  margin: 0;
}
@media (min-width: 992px) {
  body.wp-front.sticky-header-hidden .app-header {
    -webkit-animation: app-header-sticky-header-hidden 0.4s cubic-bezier(0.17, 0.67, 0.49, 0.88) forwards;
            animation: app-header-sticky-header-hidden 0.4s cubic-bezier(0.17, 0.67, 0.49, 0.88) forwards;
  }
  body.wp-front.sticky-header-visible .app-header {
    -webkit-animation: app-header-sticky-header-visible 0.4s cubic-bezier(0.17, 0.67, 0.49, 0.88) forwards;
            animation: app-header-sticky-header-visible 0.4s cubic-bezier(0.17, 0.67, 0.49, 0.88) forwards;
  }
}
@media (max-width: 991.98px) {
  body.wp-front.mobile-menu-open {
    overflow: hidden;
  }
  body.wp-front.mobile-menu-open .btn-mobile-menu span:nth-child(1) {
    top: 12px;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  body.wp-front.mobile-menu-open .btn-mobile-menu span:nth-child(2) {
    opacity: 0;
    left: -100%;
  }
  body.wp-front.mobile-menu-open .btn-mobile-menu span:nth-child(3) {
    top: 12px;
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  body.wp-front.mobile-menu-open .app-header__content-wrapper {
    background: #ffffff;
  }
  body.wp-front.mobile-menu-open .app-header__content {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}

block {
  display: block;
}

.app-main {
  padding-top: calc(100px*var(--scale));
}
@media (max-width: 767.98px) {
  .app-main {
    padding-top: 70px;
  }
}

@-webkit-keyframes app-header-sticky-header-visible {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes app-header-sticky-header-visible {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes app-header-sticky-header-hidden {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
}
@keyframes app-header-sticky-header-hidden {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    opacity: 0;
  }
}
@-webkit-keyframes app-header__bottom-visible {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes app-header__bottom-visible {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes app-header__bottom-hidden {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes app-header__bottom-hidden {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes app-header__backdrop-visible {
  0% {
    opacity: 0;
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
  }
}
@keyframes app-header__backdrop-visible {
  0% {
    opacity: 0;
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
  }
}
@-webkit-keyframes app-header__backdrop-hidden {
  0% {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
  }
  100% {
    background: rgba(0, 0, 0, 0);
    opacity: 0;
  }
}
@keyframes app-header__backdrop-hidden {
  0% {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
  }
  100% {
    background: rgba(0, 0, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes mobile-menu-in {
  0% {
    -webkit-transform: translateX(133%) translateY(-5%) rotate(-10deg);
            transform: translateX(133%) translateY(-5%) rotate(-10deg);
    opacity: 0.66;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 25%;
  }
  25% {
    border-bottom-left-radius: 50%;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(0);
            transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
@keyframes mobile-menu-in {
  0% {
    -webkit-transform: translateX(133%) translateY(-5%) rotate(-10deg);
            transform: translateX(133%) translateY(-5%) rotate(-10deg);
    opacity: 0.66;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 25%;
  }
  25% {
    border-bottom-left-radius: 50%;
  }
  100% {
    -webkit-transform: translateX(0) translateY(0) rotate(0);
            transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
}
@-webkit-keyframes mobile-menu-out {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0);
            transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  100% {
    -webkit-transform: translateX(133%) translateY(-5%) rotate(-10deg);
            transform: translateX(133%) translateY(-5%) rotate(-10deg);
    opacity: 0.66;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 25%;
  }
}
@keyframes mobile-menu-out {
  0% {
    -webkit-transform: translateX(0) translateY(0) rotate(0);
            transform: translateX(0) translateY(0) rotate(0);
    opacity: 1;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
  }
  100% {
    -webkit-transform: translateX(133%) translateY(-5%) rotate(-10deg);
            transform: translateX(133%) translateY(-5%) rotate(-10deg);
    opacity: 0.66;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 25%;
  }
}
/*#region Rem */
/*#endregion */
/*#region Rem */
/*#endregion */
.editor-styles-wrapper {
  max-width: 1480px;
  margin: 0 auto;
  width: 100%;
  padding-top: 1px !important;
  padding-right: 20px !important;
  padding-bottom: 20px !important;
  padding-left: 20px !important;
  font-family: "Jost" !important;
  color: #000;
}

.editor-post-title {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.editor-post-title .editor-post-title__input {
  border-width: 1px 0 !important;
  font-size: 2.44em !important;
  font-family: sans-serif !important;
  border-bottom: 1px solid #e0e0e0 !important;
  padding-top: 0 !important;
}

.edit-post-layout__metaboxes:not(:empty) {
  padding: 20px 0 !important;
}

.block-editor-url-input.in-inspector input {
  border-radius: 2px;
  border: 1px solid #757575;
}

.block-vertical-spacer.edit {
  background-color: currentColor;
  opacity: 0.02;
}

.block-editor-button-block-appender {
  -webkit-box-shadow: inset 0 0 0 1px currentColor;
          box-shadow: inset 0 0 0 1px currentColor;
}

.components-custom-select-control__item {
  font-size: 14px !important;
  line-height: 14px !important;
}

.components-base-control {
  width: 100%;
}

.searchBox {
  width: 100%;
}

.block-editor-rich-text__editable [data-rich-text-placeholder]:after {
  opacity: 0.25;
}

@media (min-width: 600px) {
  .block-editor-block-list__block .block-editor-url-input input[type=text],
.block-editor-url-input input[type=text],
.components-popover .block-editor-url-input input[type=text] {
    width: 100%;
  }
}
.multiselect-container .search-wrapper .chip {
  white-space: normal;
}
.multiselect-container .optionListContainer > ul > li {
  font-weight: 500;
  color: #000;
}
.multiselect-container .optionListContainer > ul > li > input[type=checkbox] {
  margin-right: 8px;
  margin-bottom: 5px;
  border: 1px solid #7b7b7b;
}
.multiselect-container .optionListContainer > ul > li.option {
  font-weight: 400;
}
.multiselect-container .optionListContainer > ul > li.option:hover {
  background: #e7e7e7;
}

.inspector-controls-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.companies-carousel-block-editor-images {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.companies-carousel-block-editor-images img {
  height: 140px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.block-edit__image-content-section .container > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.block-edit__image-content-section .container > .block-editor-inner-blocks > .block-editor-block-list__layout > * {
  width: 50%;
}
.block-edit__image-content-section .content-column:before {
  display: none !important;
}

.content-slider--block-editor > .block-editor-inner-blocks > .block-editor-block-list__layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.content-slide--block-editor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px;
  border: 1px solid #c9c9c9;
}
.content-slide--block-editor > .block-editor-inner-blocks {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content-slide--block-editor > .block-editor-inner-blocks:before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
  padding-top: 100%;
}
.content-slide--block-editor > .block-editor-inner-blocks:after {
  content: "";
  display: table;
  clear: both;
}
.content-slide--block-editor > .block-editor-inner-blocks > .block-editor-block-list__layout {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.block-editor-page.post-type-article .editor-styles-wrapper, .block-editor-page.post-type-news .editor-styles-wrapper, .block-editor-page.post-type-case-study .editor-styles-wrapper {
  max-width: 880px !important;
}
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout > * + *, .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout > * + *, .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout > * + * {
  margin-top: 1em;
}
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h1, .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1, .wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h1,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h2,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h2,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h3,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h3,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h4,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h4,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h5,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h5,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h5,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h6,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h6,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h6, .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h1, .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1, .wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h1,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h2,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h2,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h3,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h3,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h4,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h4,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h5,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h5,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h5,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h6,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h6,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h6, .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h1, .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1, .wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h1,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h2,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h2,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h3,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h3,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h4,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h4,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h5,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h5,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h5,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h6,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h6,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h6 {
  margin: 1.2em 0 0.4em;
}
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h1:first-child, .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1:first-child, .wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h1:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h2:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2:first-child,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h2:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h3:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3:first-child,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h3:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h4:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4:first-child,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h4:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h5:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h5:first-child,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h5:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h6:first-child,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h6:first-child,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h6:first-child, .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h1:first-child, .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1:first-child, .wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h1:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h2:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2:first-child,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h2:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h3:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3:first-child,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h3:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h4:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4:first-child,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h4:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h5:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h5:first-child,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h5:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h6:first-child,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h6:first-child,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h6:first-child, .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h1:first-child, .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1:first-child, .wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h1:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h2:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2:first-child,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h2:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h3:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3:first-child,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h3:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h4:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4:first-child,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h4:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h5:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h5:first-child,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h5:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h6:first-child,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h6:first-child,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h6:first-child {
  margin-top: 0;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.wp-front {
  /* rtl:raw:
  [type="tel"],
  [type="url"],
  [type="email"],
  [type="number"] {
    direction: ltr;
  }
  */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Buttons */
  /*#endregion */
  /*#region Forms */
  /*#endregion */
  /*#region Typography */
  /*#endregion */
  /*#region Dropdown */
  /*#endregion */
  /*#region Accordion */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Buttons */
  /*#endregion */
  /*#region Forms */
  /*#endregion */
  /*#region Typography */
  /*#endregion */
  /*#region Dropdown */
  /*#endregion */
  /*#region Accordion */
  /*#endregion */
  /* FORM FIELDS STYLES */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
  /*#region Rem */
  /*#endregion */
}
.wp-front :root {
  --bs-blue: #285fe8;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #de372f;
  --bs-orange: #fd7e14;
  --bs-yellow: #fceb8f;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #ffffff;
  --bs-gray: #7b7b7b;
  --bs-gray-dark: #333;
  --bs-white: #ffffff;
  --bs-black: #000;
  --bs-gray-100: #f5f5f5;
  --bs-gray-200: #e7e7e7;
  --bs-gray-300: #dbdbdb;
  --bs-gray-400: #c9c9c9;
  --bs-gray-500: #b1b1b1;
  --bs-gray-600: #7b7b7b;
  --bs-gray-700: #454545;
  --bs-gray-800: #333;
  --bs-gray-900: #222;
  --bs-blue: #285fe8;
  --bs-peach: #f4a57d;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #de372f;
  --bs-yellow: #fceb8f;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #b8e8e5;
  --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));
}
.wp-front *,
.wp-front *::before,
.wp-front *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (prefers-reduced-motion: no-preference) {
  .wp-front :root {
    scroll-behavior: smooth;
  }
}
.wp-front body {
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #f9f9f9;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.wp-front hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}
.wp-front hr:not([size]) {
  height: 1px;
}
.wp-front h6, .wp-front .h6, .wp-front h5, .wp-front .h5, .wp-front h4, .wp-front .h4, .wp-front h3, .wp-front .h3, .wp-front h2, .wp-front .h2, .wp-front h1, .wp-front .h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.33;
}
.wp-front h1, .wp-front .h1 {
  font-size: calc(1.925rem + 8.1vw);
}
@media (min-width: 1200px) {
  .wp-front h1, .wp-front .h1 {
    font-size: 8rem;
  }
}
.wp-front h2, .wp-front .h2 {
  font-size: calc(1.575rem + 3.9vw);
}
@media (min-width: 1200px) {
  .wp-front h2, .wp-front .h2 {
    font-size: 4.5rem;
  }
}
.wp-front h3, .wp-front .h3 {
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .wp-front h3, .wp-front .h3 {
    font-size: 3rem;
  }
}
.wp-front h4, .wp-front .h4 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  .wp-front h4, .wp-front .h4 {
    font-size: 2.5rem;
  }
}
.wp-front h5, .wp-front .h5 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .wp-front h5, .wp-front .h5 {
    font-size: 1.75rem;
  }
}
.wp-front h6, .wp-front .h6 {
  font-size: 1.25rem;
}
.wp-front p {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-front abbr[title],
.wp-front abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.wp-front address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
.wp-front ol,
.wp-front ul {
  padding-left: 2rem;
}
.wp-front ol,
.wp-front ul,
.wp-front dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
.wp-front ol ol,
.wp-front ul ul,
.wp-front ol ul,
.wp-front ul ol {
  margin-bottom: 0;
}
.wp-front dt {
  font-weight: 700;
}
.wp-front dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
.wp-front blockquote {
  margin: 0 0 1rem;
}
.wp-front b,
.wp-front strong {
  font-weight: bolder;
}
.wp-front small, .wp-front .small {
  font-size: 0.875em;
}
.wp-front mark, .wp-front .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.wp-front sub,
.wp-front sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}
.wp-front sub {
  bottom: -0.25em;
}
.wp-front sup {
  top: -0.5em;
}
.wp-front a {
  color: #285fe8;
  text-decoration: underline;
}
.wp-front a:hover {
  color: #204cba;
  text-decoration: none;
}
.wp-front a:not([href]):not([class]), .wp-front a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
.wp-front pre,
.wp-front code,
.wp-front kbd,
.wp-front samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}
.wp-front pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
.wp-front pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
.wp-front code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > .wp-front code {
  color: inherit;
}
.wp-front kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #ffffff;
  background-color: #222;
}
.wp-front kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}
.wp-front figure {
  margin: 0 0 1rem;
}
.wp-front img,
.wp-front svg {
  vertical-align: middle;
}
.wp-front table {
  caption-side: bottom;
  border-collapse: collapse;
}
.wp-front caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #7b7b7b;
  text-align: left;
}
.wp-front th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}
.wp-front thead,
.wp-front tbody,
.wp-front tfoot,
.wp-front tr,
.wp-front td,
.wp-front th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}
.wp-front label {
  display: inline-block;
}
.wp-front button {
  border-radius: 0;
}
.wp-front button:focus:not(:focus-visible) {
  outline: 0;
}
.wp-front input,
.wp-front button,
.wp-front select,
.wp-front optgroup,
.wp-front textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.wp-front button,
.wp-front select {
  text-transform: none;
}
.wp-front [role=button] {
  cursor: pointer;
}
.wp-front select {
  word-wrap: normal;
}
.wp-front select:disabled {
  opacity: 1;
}
.wp-front [list]::-webkit-calendar-picker-indicator {
  display: none;
}
.wp-front button,
.wp-front [type=button],
.wp-front [type=reset],
.wp-front [type=submit] {
  -webkit-appearance: button;
}
.wp-front button:not(:disabled),
.wp-front [type=button]:not(:disabled),
.wp-front [type=reset]:not(:disabled),
.wp-front [type=submit]:not(:disabled) {
  cursor: pointer;
}
.wp-front ::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
.wp-front textarea {
  resize: vertical;
}
.wp-front fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.wp-front legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  .wp-front legend {
    font-size: 1.5rem;
  }
}
.wp-front legend + * {
  clear: left;
}
.wp-front ::-webkit-datetime-edit-fields-wrapper,
.wp-front ::-webkit-datetime-edit-text,
.wp-front ::-webkit-datetime-edit-minute,
.wp-front ::-webkit-datetime-edit-hour-field,
.wp-front ::-webkit-datetime-edit-day-field,
.wp-front ::-webkit-datetime-edit-month-field,
.wp-front ::-webkit-datetime-edit-year-field {
  padding: 0;
}
.wp-front ::-webkit-inner-spin-button {
  height: auto;
}
.wp-front [type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}
.wp-front ::-webkit-search-decoration {
  -webkit-appearance: none;
}
.wp-front ::-webkit-color-swatch-wrapper {
  padding: 0;
}
.wp-front ::-webkit-file-upload-button {
  font: inherit;
}
.wp-front ::file-selector-button {
  font: inherit;
}
.wp-front ::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
.wp-front output {
  display: inline-block;
}
.wp-front iframe {
  border: 0;
}
.wp-front summary {
  display: list-item;
  cursor: pointer;
}
.wp-front progress {
  vertical-align: baseline;
}
.wp-front [hidden] {
  display: none !important;
}
.wp-front .lead {
  font-size: calc(1.265625rem + 0.1875vw);
  font-weight: 300;
}
@media (min-width: 1200px) {
  .wp-front .lead {
    font-size: 1.40625rem;
  }
}
.wp-front .display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.33;
}
@media (min-width: 1200px) {
  .wp-front .display-1 {
    font-size: 5rem;
  }
}
.wp-front .display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.33;
}
@media (min-width: 1200px) {
  .wp-front .display-2 {
    font-size: 4.5rem;
  }
}
.wp-front .display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.33;
}
@media (min-width: 1200px) {
  .wp-front .display-3 {
    font-size: 4rem;
  }
}
.wp-front .display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.33;
}
@media (min-width: 1200px) {
  .wp-front .display-4 {
    font-size: 3.5rem;
  }
}
.wp-front .display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.33;
}
@media (min-width: 1200px) {
  .wp-front .display-5 {
    font-size: 3rem;
  }
}
.wp-front .display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.33;
}
@media (min-width: 1200px) {
  .wp-front .display-6 {
    font-size: 2.5rem;
  }
}
.wp-front .list-unstyled {
  padding-left: 0;
  list-style: none;
}
.wp-front .list-inline {
  padding-left: 0;
  list-style: none;
}
.wp-front .list-inline-item {
  display: inline-block;
}
.wp-front .list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}
.wp-front .initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}
.wp-front .blockquote {
  margin-bottom: 1rem;
  font-size: calc(1.265625rem + 0.1875vw);
}
@media (min-width: 1200px) {
  .wp-front .blockquote {
    font-size: 1.40625rem;
  }
}
.wp-front .blockquote > :last-child {
  margin-bottom: 0;
}
.wp-front .blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #7b7b7b;
}
.wp-front .blockquote-footer::before {
  content: "— ";
}
.wp-front .img-fluid {
  max-width: 100%;
  height: auto;
}
.wp-front .img-thumbnail {
  padding: 0.25rem;
  background-color: #f9f9f9;
  border: 1px solid #dbdbdb;
  max-width: 100%;
  height: auto;
}
.wp-front .figure {
  display: inline-block;
}
.wp-front .figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.wp-front .figure-caption {
  font-size: 0.875em;
  color: #7b7b7b;
}
.wp-front .container,
.wp-front .container-fluid,
.wp-front .container-xxl,
.wp-front .container-xl,
.wp-front .container-lg,
.wp-front .container-md,
.wp-front .container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 20px);
  padding-left: var(--bs-gutter-x, 20px);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .wp-front .container-sm, .wp-front .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .wp-front .container-md, .wp-front .container-sm, .wp-front .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .wp-front .container-lg, .wp-front .container-md, .wp-front .container-sm, .wp-front .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .wp-front .container-xl, .wp-front .container-lg, .wp-front .container-md, .wp-front .container-sm, .wp-front .container {
    max-width: 1300px;
  }
}
@media (min-width: 1580px) {
  .wp-front .container-xxl, .wp-front .container-xl, .wp-front .container-lg, .wp-front .container-md, .wp-front .container-sm, .wp-front .container {
    max-width: 1480px;
  }
}
.wp-front .row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}
.wp-front .row > * {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}
.wp-front .col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0%;
          flex: 1 0 0%;
}
.wp-front .row-cols-auto > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.wp-front .row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
.wp-front .row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}
.wp-front .row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}
.wp-front .row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}
.wp-front .row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}
.wp-front .row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}
.wp-front .col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}
.wp-front .col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.3333333333%;
}
.wp-front .col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}
.wp-front .col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}
.wp-front .col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}
.wp-front .col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.6666666667%;
}
.wp-front .col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}
.wp-front .col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.3333333333%;
}
.wp-front .col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.6666666667%;
}
.wp-front .col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}
.wp-front .col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.3333333333%;
}
.wp-front .col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.6666666667%;
}
.wp-front .col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}
.wp-front .offset-1 {
  margin-left: 8.3333333333%;
}
.wp-front .offset-2 {
  margin-left: 16.6666666667%;
}
.wp-front .offset-3 {
  margin-left: 25%;
}
.wp-front .offset-4 {
  margin-left: 33.3333333333%;
}
.wp-front .offset-5 {
  margin-left: 41.6666666667%;
}
.wp-front .offset-6 {
  margin-left: 50%;
}
.wp-front .offset-7 {
  margin-left: 58.3333333333%;
}
.wp-front .offset-8 {
  margin-left: 66.6666666667%;
}
.wp-front .offset-9 {
  margin-left: 75%;
}
.wp-front .offset-10 {
  margin-left: 83.3333333333%;
}
.wp-front .offset-11 {
  margin-left: 91.6666666667%;
}
.wp-front .g-0,
.wp-front .gx-0 {
  --bs-gutter-x: 0;
}
.wp-front .g-0,
.wp-front .gy-0 {
  --bs-gutter-y: 0;
}
.wp-front .g-10,
.wp-front .gx-10 {
  --bs-gutter-x: 0.625rem;
}
.wp-front .g-10,
.wp-front .gy-10 {
  --bs-gutter-y: 0.625rem;
}
.wp-front .g-15,
.wp-front .gx-15 {
  --bs-gutter-x: 0.9375rem;
}
.wp-front .g-15,
.wp-front .gy-15 {
  --bs-gutter-y: 0.9375rem;
}
.wp-front .g-20,
.wp-front .gx-20 {
  --bs-gutter-x: 1.25rem;
}
.wp-front .g-20,
.wp-front .gy-20 {
  --bs-gutter-y: 1.25rem;
}
.wp-front .g-25,
.wp-front .gx-25 {
  --bs-gutter-x: 1.5625rem;
}
.wp-front .g-25,
.wp-front .gy-25 {
  --bs-gutter-y: 1.5625rem;
}
.wp-front .g-30,
.wp-front .gx-30 {
  --bs-gutter-x: 1.875rem;
}
.wp-front .g-30,
.wp-front .gy-30 {
  --bs-gutter-y: 1.875rem;
}
.wp-front .g-35,
.wp-front .gx-35 {
  --bs-gutter-x: 2.1875rem;
}
.wp-front .g-35,
.wp-front .gy-35 {
  --bs-gutter-y: 2.1875rem;
}
.wp-front .g-40,
.wp-front .gx-40 {
  --bs-gutter-x: 2.5rem;
}
.wp-front .g-40,
.wp-front .gy-40 {
  --bs-gutter-y: 2.5rem;
}
.wp-front .g-45,
.wp-front .gx-45 {
  --bs-gutter-x: 2.8125rem;
}
.wp-front .g-45,
.wp-front .gy-45 {
  --bs-gutter-y: 2.8125rem;
}
.wp-front .g-50,
.wp-front .gx-50 {
  --bs-gutter-x: 3.125rem;
}
.wp-front .g-50,
.wp-front .gy-50 {
  --bs-gutter-y: 3.125rem;
}
.wp-front .g-55,
.wp-front .gx-55 {
  --bs-gutter-x: 3.4375rem;
}
.wp-front .g-55,
.wp-front .gy-55 {
  --bs-gutter-y: 3.4375rem;
}
.wp-front .g-60,
.wp-front .gx-60 {
  --bs-gutter-x: 3.75rem;
}
.wp-front .g-60,
.wp-front .gy-60 {
  --bs-gutter-y: 3.75rem;
}
.wp-front .g-65,
.wp-front .gx-65 {
  --bs-gutter-x: 4.0625rem;
}
.wp-front .g-65,
.wp-front .gy-65 {
  --bs-gutter-y: 4.0625rem;
}
.wp-front .g-70,
.wp-front .gx-70 {
  --bs-gutter-x: 4.375rem;
}
.wp-front .g-70,
.wp-front .gy-70 {
  --bs-gutter-y: 4.375rem;
}
.wp-front .g-75,
.wp-front .gx-75 {
  --bs-gutter-x: 4.6875rem;
}
.wp-front .g-75,
.wp-front .gy-75 {
  --bs-gutter-y: 4.6875rem;
}
.wp-front .g-80,
.wp-front .gx-80 {
  --bs-gutter-x: 5rem;
}
.wp-front .g-80,
.wp-front .gy-80 {
  --bs-gutter-y: 5rem;
}
@media (min-width: 576px) {
  .wp-front .col-sm {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .wp-front .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .wp-front .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .wp-front .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .wp-front .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .wp-front .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .wp-front .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .wp-front .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .wp-front .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .wp-front .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .offset-sm-0 {
    margin-left: 0;
  }
  .wp-front .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .wp-front .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .wp-front .offset-sm-3 {
    margin-left: 25%;
  }
  .wp-front .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .wp-front .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .wp-front .offset-sm-6 {
    margin-left: 50%;
  }
  .wp-front .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .wp-front .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .wp-front .offset-sm-9 {
    margin-left: 75%;
  }
  .wp-front .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .wp-front .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .wp-front .g-sm-0,
.wp-front .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .wp-front .g-sm-0,
.wp-front .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .wp-front .g-sm-10,
.wp-front .gx-sm-10 {
    --bs-gutter-x: 0.625rem;
  }
  .wp-front .g-sm-10,
.wp-front .gy-sm-10 {
    --bs-gutter-y: 0.625rem;
  }
  .wp-front .g-sm-15,
.wp-front .gx-sm-15 {
    --bs-gutter-x: 0.9375rem;
  }
  .wp-front .g-sm-15,
.wp-front .gy-sm-15 {
    --bs-gutter-y: 0.9375rem;
  }
  .wp-front .g-sm-20,
.wp-front .gx-sm-20 {
    --bs-gutter-x: 1.25rem;
  }
  .wp-front .g-sm-20,
.wp-front .gy-sm-20 {
    --bs-gutter-y: 1.25rem;
  }
  .wp-front .g-sm-25,
.wp-front .gx-sm-25 {
    --bs-gutter-x: 1.5625rem;
  }
  .wp-front .g-sm-25,
.wp-front .gy-sm-25 {
    --bs-gutter-y: 1.5625rem;
  }
  .wp-front .g-sm-30,
.wp-front .gx-sm-30 {
    --bs-gutter-x: 1.875rem;
  }
  .wp-front .g-sm-30,
.wp-front .gy-sm-30 {
    --bs-gutter-y: 1.875rem;
  }
  .wp-front .g-sm-35,
.wp-front .gx-sm-35 {
    --bs-gutter-x: 2.1875rem;
  }
  .wp-front .g-sm-35,
.wp-front .gy-sm-35 {
    --bs-gutter-y: 2.1875rem;
  }
  .wp-front .g-sm-40,
.wp-front .gx-sm-40 {
    --bs-gutter-x: 2.5rem;
  }
  .wp-front .g-sm-40,
.wp-front .gy-sm-40 {
    --bs-gutter-y: 2.5rem;
  }
  .wp-front .g-sm-45,
.wp-front .gx-sm-45 {
    --bs-gutter-x: 2.8125rem;
  }
  .wp-front .g-sm-45,
.wp-front .gy-sm-45 {
    --bs-gutter-y: 2.8125rem;
  }
  .wp-front .g-sm-50,
.wp-front .gx-sm-50 {
    --bs-gutter-x: 3.125rem;
  }
  .wp-front .g-sm-50,
.wp-front .gy-sm-50 {
    --bs-gutter-y: 3.125rem;
  }
  .wp-front .g-sm-55,
.wp-front .gx-sm-55 {
    --bs-gutter-x: 3.4375rem;
  }
  .wp-front .g-sm-55,
.wp-front .gy-sm-55 {
    --bs-gutter-y: 3.4375rem;
  }
  .wp-front .g-sm-60,
.wp-front .gx-sm-60 {
    --bs-gutter-x: 3.75rem;
  }
  .wp-front .g-sm-60,
.wp-front .gy-sm-60 {
    --bs-gutter-y: 3.75rem;
  }
  .wp-front .g-sm-65,
.wp-front .gx-sm-65 {
    --bs-gutter-x: 4.0625rem;
  }
  .wp-front .g-sm-65,
.wp-front .gy-sm-65 {
    --bs-gutter-y: 4.0625rem;
  }
  .wp-front .g-sm-70,
.wp-front .gx-sm-70 {
    --bs-gutter-x: 4.375rem;
  }
  .wp-front .g-sm-70,
.wp-front .gy-sm-70 {
    --bs-gutter-y: 4.375rem;
  }
  .wp-front .g-sm-75,
.wp-front .gx-sm-75 {
    --bs-gutter-x: 4.6875rem;
  }
  .wp-front .g-sm-75,
.wp-front .gy-sm-75 {
    --bs-gutter-y: 4.6875rem;
  }
  .wp-front .g-sm-80,
.wp-front .gx-sm-80 {
    --bs-gutter-x: 5rem;
  }
  .wp-front .g-sm-80,
.wp-front .gy-sm-80 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 768px) {
  .wp-front .col-md {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .wp-front .row-cols-md-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .wp-front .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .wp-front .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .wp-front .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .wp-front .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .wp-front .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .wp-front .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .wp-front .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .wp-front .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .offset-md-0 {
    margin-left: 0;
  }
  .wp-front .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .wp-front .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .wp-front .offset-md-3 {
    margin-left: 25%;
  }
  .wp-front .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .wp-front .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .wp-front .offset-md-6 {
    margin-left: 50%;
  }
  .wp-front .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .wp-front .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .wp-front .offset-md-9 {
    margin-left: 75%;
  }
  .wp-front .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .wp-front .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .wp-front .g-md-0,
.wp-front .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .wp-front .g-md-0,
.wp-front .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .wp-front .g-md-10,
.wp-front .gx-md-10 {
    --bs-gutter-x: 0.625rem;
  }
  .wp-front .g-md-10,
.wp-front .gy-md-10 {
    --bs-gutter-y: 0.625rem;
  }
  .wp-front .g-md-15,
.wp-front .gx-md-15 {
    --bs-gutter-x: 0.9375rem;
  }
  .wp-front .g-md-15,
.wp-front .gy-md-15 {
    --bs-gutter-y: 0.9375rem;
  }
  .wp-front .g-md-20,
.wp-front .gx-md-20 {
    --bs-gutter-x: 1.25rem;
  }
  .wp-front .g-md-20,
.wp-front .gy-md-20 {
    --bs-gutter-y: 1.25rem;
  }
  .wp-front .g-md-25,
.wp-front .gx-md-25 {
    --bs-gutter-x: 1.5625rem;
  }
  .wp-front .g-md-25,
.wp-front .gy-md-25 {
    --bs-gutter-y: 1.5625rem;
  }
  .wp-front .g-md-30,
.wp-front .gx-md-30 {
    --bs-gutter-x: 1.875rem;
  }
  .wp-front .g-md-30,
.wp-front .gy-md-30 {
    --bs-gutter-y: 1.875rem;
  }
  .wp-front .g-md-35,
.wp-front .gx-md-35 {
    --bs-gutter-x: 2.1875rem;
  }
  .wp-front .g-md-35,
.wp-front .gy-md-35 {
    --bs-gutter-y: 2.1875rem;
  }
  .wp-front .g-md-40,
.wp-front .gx-md-40 {
    --bs-gutter-x: 2.5rem;
  }
  .wp-front .g-md-40,
.wp-front .gy-md-40 {
    --bs-gutter-y: 2.5rem;
  }
  .wp-front .g-md-45,
.wp-front .gx-md-45 {
    --bs-gutter-x: 2.8125rem;
  }
  .wp-front .g-md-45,
.wp-front .gy-md-45 {
    --bs-gutter-y: 2.8125rem;
  }
  .wp-front .g-md-50,
.wp-front .gx-md-50 {
    --bs-gutter-x: 3.125rem;
  }
  .wp-front .g-md-50,
.wp-front .gy-md-50 {
    --bs-gutter-y: 3.125rem;
  }
  .wp-front .g-md-55,
.wp-front .gx-md-55 {
    --bs-gutter-x: 3.4375rem;
  }
  .wp-front .g-md-55,
.wp-front .gy-md-55 {
    --bs-gutter-y: 3.4375rem;
  }
  .wp-front .g-md-60,
.wp-front .gx-md-60 {
    --bs-gutter-x: 3.75rem;
  }
  .wp-front .g-md-60,
.wp-front .gy-md-60 {
    --bs-gutter-y: 3.75rem;
  }
  .wp-front .g-md-65,
.wp-front .gx-md-65 {
    --bs-gutter-x: 4.0625rem;
  }
  .wp-front .g-md-65,
.wp-front .gy-md-65 {
    --bs-gutter-y: 4.0625rem;
  }
  .wp-front .g-md-70,
.wp-front .gx-md-70 {
    --bs-gutter-x: 4.375rem;
  }
  .wp-front .g-md-70,
.wp-front .gy-md-70 {
    --bs-gutter-y: 4.375rem;
  }
  .wp-front .g-md-75,
.wp-front .gx-md-75 {
    --bs-gutter-x: 4.6875rem;
  }
  .wp-front .g-md-75,
.wp-front .gy-md-75 {
    --bs-gutter-y: 4.6875rem;
  }
  .wp-front .g-md-80,
.wp-front .gx-md-80 {
    --bs-gutter-x: 5rem;
  }
  .wp-front .g-md-80,
.wp-front .gy-md-80 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 992px) {
  .wp-front .col-lg {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .wp-front .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .wp-front .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .wp-front .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .wp-front .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .wp-front .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .wp-front .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .wp-front .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .wp-front .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .wp-front .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .offset-lg-0 {
    margin-left: 0;
  }
  .wp-front .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .wp-front .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .wp-front .offset-lg-3 {
    margin-left: 25%;
  }
  .wp-front .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .wp-front .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .wp-front .offset-lg-6 {
    margin-left: 50%;
  }
  .wp-front .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .wp-front .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .wp-front .offset-lg-9 {
    margin-left: 75%;
  }
  .wp-front .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .wp-front .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .wp-front .g-lg-0,
.wp-front .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .wp-front .g-lg-0,
.wp-front .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .wp-front .g-lg-10,
.wp-front .gx-lg-10 {
    --bs-gutter-x: 0.625rem;
  }
  .wp-front .g-lg-10,
.wp-front .gy-lg-10 {
    --bs-gutter-y: 0.625rem;
  }
  .wp-front .g-lg-15,
.wp-front .gx-lg-15 {
    --bs-gutter-x: 0.9375rem;
  }
  .wp-front .g-lg-15,
.wp-front .gy-lg-15 {
    --bs-gutter-y: 0.9375rem;
  }
  .wp-front .g-lg-20,
.wp-front .gx-lg-20 {
    --bs-gutter-x: 1.25rem;
  }
  .wp-front .g-lg-20,
.wp-front .gy-lg-20 {
    --bs-gutter-y: 1.25rem;
  }
  .wp-front .g-lg-25,
.wp-front .gx-lg-25 {
    --bs-gutter-x: 1.5625rem;
  }
  .wp-front .g-lg-25,
.wp-front .gy-lg-25 {
    --bs-gutter-y: 1.5625rem;
  }
  .wp-front .g-lg-30,
.wp-front .gx-lg-30 {
    --bs-gutter-x: 1.875rem;
  }
  .wp-front .g-lg-30,
.wp-front .gy-lg-30 {
    --bs-gutter-y: 1.875rem;
  }
  .wp-front .g-lg-35,
.wp-front .gx-lg-35 {
    --bs-gutter-x: 2.1875rem;
  }
  .wp-front .g-lg-35,
.wp-front .gy-lg-35 {
    --bs-gutter-y: 2.1875rem;
  }
  .wp-front .g-lg-40,
.wp-front .gx-lg-40 {
    --bs-gutter-x: 2.5rem;
  }
  .wp-front .g-lg-40,
.wp-front .gy-lg-40 {
    --bs-gutter-y: 2.5rem;
  }
  .wp-front .g-lg-45,
.wp-front .gx-lg-45 {
    --bs-gutter-x: 2.8125rem;
  }
  .wp-front .g-lg-45,
.wp-front .gy-lg-45 {
    --bs-gutter-y: 2.8125rem;
  }
  .wp-front .g-lg-50,
.wp-front .gx-lg-50 {
    --bs-gutter-x: 3.125rem;
  }
  .wp-front .g-lg-50,
.wp-front .gy-lg-50 {
    --bs-gutter-y: 3.125rem;
  }
  .wp-front .g-lg-55,
.wp-front .gx-lg-55 {
    --bs-gutter-x: 3.4375rem;
  }
  .wp-front .g-lg-55,
.wp-front .gy-lg-55 {
    --bs-gutter-y: 3.4375rem;
  }
  .wp-front .g-lg-60,
.wp-front .gx-lg-60 {
    --bs-gutter-x: 3.75rem;
  }
  .wp-front .g-lg-60,
.wp-front .gy-lg-60 {
    --bs-gutter-y: 3.75rem;
  }
  .wp-front .g-lg-65,
.wp-front .gx-lg-65 {
    --bs-gutter-x: 4.0625rem;
  }
  .wp-front .g-lg-65,
.wp-front .gy-lg-65 {
    --bs-gutter-y: 4.0625rem;
  }
  .wp-front .g-lg-70,
.wp-front .gx-lg-70 {
    --bs-gutter-x: 4.375rem;
  }
  .wp-front .g-lg-70,
.wp-front .gy-lg-70 {
    --bs-gutter-y: 4.375rem;
  }
  .wp-front .g-lg-75,
.wp-front .gx-lg-75 {
    --bs-gutter-x: 4.6875rem;
  }
  .wp-front .g-lg-75,
.wp-front .gy-lg-75 {
    --bs-gutter-y: 4.6875rem;
  }
  .wp-front .g-lg-80,
.wp-front .gx-lg-80 {
    --bs-gutter-x: 5rem;
  }
  .wp-front .g-lg-80,
.wp-front .gy-lg-80 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 1200px) {
  .wp-front .col-xl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .wp-front .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .wp-front .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .wp-front .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .wp-front .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .wp-front .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .wp-front .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .wp-front .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .wp-front .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .wp-front .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .offset-xl-0 {
    margin-left: 0;
  }
  .wp-front .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .wp-front .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .wp-front .offset-xl-3 {
    margin-left: 25%;
  }
  .wp-front .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .wp-front .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .wp-front .offset-xl-6 {
    margin-left: 50%;
  }
  .wp-front .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .wp-front .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .wp-front .offset-xl-9 {
    margin-left: 75%;
  }
  .wp-front .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .wp-front .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .wp-front .g-xl-0,
.wp-front .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .wp-front .g-xl-0,
.wp-front .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .wp-front .g-xl-10,
.wp-front .gx-xl-10 {
    --bs-gutter-x: 0.625rem;
  }
  .wp-front .g-xl-10,
.wp-front .gy-xl-10 {
    --bs-gutter-y: 0.625rem;
  }
  .wp-front .g-xl-15,
.wp-front .gx-xl-15 {
    --bs-gutter-x: 0.9375rem;
  }
  .wp-front .g-xl-15,
.wp-front .gy-xl-15 {
    --bs-gutter-y: 0.9375rem;
  }
  .wp-front .g-xl-20,
.wp-front .gx-xl-20 {
    --bs-gutter-x: 1.25rem;
  }
  .wp-front .g-xl-20,
.wp-front .gy-xl-20 {
    --bs-gutter-y: 1.25rem;
  }
  .wp-front .g-xl-25,
.wp-front .gx-xl-25 {
    --bs-gutter-x: 1.5625rem;
  }
  .wp-front .g-xl-25,
.wp-front .gy-xl-25 {
    --bs-gutter-y: 1.5625rem;
  }
  .wp-front .g-xl-30,
.wp-front .gx-xl-30 {
    --bs-gutter-x: 1.875rem;
  }
  .wp-front .g-xl-30,
.wp-front .gy-xl-30 {
    --bs-gutter-y: 1.875rem;
  }
  .wp-front .g-xl-35,
.wp-front .gx-xl-35 {
    --bs-gutter-x: 2.1875rem;
  }
  .wp-front .g-xl-35,
.wp-front .gy-xl-35 {
    --bs-gutter-y: 2.1875rem;
  }
  .wp-front .g-xl-40,
.wp-front .gx-xl-40 {
    --bs-gutter-x: 2.5rem;
  }
  .wp-front .g-xl-40,
.wp-front .gy-xl-40 {
    --bs-gutter-y: 2.5rem;
  }
  .wp-front .g-xl-45,
.wp-front .gx-xl-45 {
    --bs-gutter-x: 2.8125rem;
  }
  .wp-front .g-xl-45,
.wp-front .gy-xl-45 {
    --bs-gutter-y: 2.8125rem;
  }
  .wp-front .g-xl-50,
.wp-front .gx-xl-50 {
    --bs-gutter-x: 3.125rem;
  }
  .wp-front .g-xl-50,
.wp-front .gy-xl-50 {
    --bs-gutter-y: 3.125rem;
  }
  .wp-front .g-xl-55,
.wp-front .gx-xl-55 {
    --bs-gutter-x: 3.4375rem;
  }
  .wp-front .g-xl-55,
.wp-front .gy-xl-55 {
    --bs-gutter-y: 3.4375rem;
  }
  .wp-front .g-xl-60,
.wp-front .gx-xl-60 {
    --bs-gutter-x: 3.75rem;
  }
  .wp-front .g-xl-60,
.wp-front .gy-xl-60 {
    --bs-gutter-y: 3.75rem;
  }
  .wp-front .g-xl-65,
.wp-front .gx-xl-65 {
    --bs-gutter-x: 4.0625rem;
  }
  .wp-front .g-xl-65,
.wp-front .gy-xl-65 {
    --bs-gutter-y: 4.0625rem;
  }
  .wp-front .g-xl-70,
.wp-front .gx-xl-70 {
    --bs-gutter-x: 4.375rem;
  }
  .wp-front .g-xl-70,
.wp-front .gy-xl-70 {
    --bs-gutter-y: 4.375rem;
  }
  .wp-front .g-xl-75,
.wp-front .gx-xl-75 {
    --bs-gutter-x: 4.6875rem;
  }
  .wp-front .g-xl-75,
.wp-front .gy-xl-75 {
    --bs-gutter-y: 4.6875rem;
  }
  .wp-front .g-xl-80,
.wp-front .gx-xl-80 {
    --bs-gutter-x: 5rem;
  }
  .wp-front .g-xl-80,
.wp-front .gy-xl-80 {
    --bs-gutter-y: 5rem;
  }
}
@media (min-width: 1580px) {
  .wp-front .col-xxl {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }
  .wp-front .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }
  .wp-front .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .wp-front .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.3333333333%;
  }
  .wp-front .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .wp-front .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }
  .wp-front .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .wp-front .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.6666666667%;
  }
  .wp-front .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
  .wp-front .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.3333333333%;
  }
  .wp-front .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.6666666667%;
  }
  .wp-front .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }
  .wp-front .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.3333333333%;
  }
  .wp-front .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.6666666667%;
  }
  .wp-front .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .wp-front .offset-xxl-0 {
    margin-left: 0;
  }
  .wp-front .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .wp-front .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .wp-front .offset-xxl-3 {
    margin-left: 25%;
  }
  .wp-front .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .wp-front .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .wp-front .offset-xxl-6 {
    margin-left: 50%;
  }
  .wp-front .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .wp-front .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .wp-front .offset-xxl-9 {
    margin-left: 75%;
  }
  .wp-front .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .wp-front .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
  .wp-front .g-xxl-0,
.wp-front .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .wp-front .g-xxl-0,
.wp-front .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .wp-front .g-xxl-10,
.wp-front .gx-xxl-10 {
    --bs-gutter-x: 0.625rem;
  }
  .wp-front .g-xxl-10,
.wp-front .gy-xxl-10 {
    --bs-gutter-y: 0.625rem;
  }
  .wp-front .g-xxl-15,
.wp-front .gx-xxl-15 {
    --bs-gutter-x: 0.9375rem;
  }
  .wp-front .g-xxl-15,
.wp-front .gy-xxl-15 {
    --bs-gutter-y: 0.9375rem;
  }
  .wp-front .g-xxl-20,
.wp-front .gx-xxl-20 {
    --bs-gutter-x: 1.25rem;
  }
  .wp-front .g-xxl-20,
.wp-front .gy-xxl-20 {
    --bs-gutter-y: 1.25rem;
  }
  .wp-front .g-xxl-25,
.wp-front .gx-xxl-25 {
    --bs-gutter-x: 1.5625rem;
  }
  .wp-front .g-xxl-25,
.wp-front .gy-xxl-25 {
    --bs-gutter-y: 1.5625rem;
  }
  .wp-front .g-xxl-30,
.wp-front .gx-xxl-30 {
    --bs-gutter-x: 1.875rem;
  }
  .wp-front .g-xxl-30,
.wp-front .gy-xxl-30 {
    --bs-gutter-y: 1.875rem;
  }
  .wp-front .g-xxl-35,
.wp-front .gx-xxl-35 {
    --bs-gutter-x: 2.1875rem;
  }
  .wp-front .g-xxl-35,
.wp-front .gy-xxl-35 {
    --bs-gutter-y: 2.1875rem;
  }
  .wp-front .g-xxl-40,
.wp-front .gx-xxl-40 {
    --bs-gutter-x: 2.5rem;
  }
  .wp-front .g-xxl-40,
.wp-front .gy-xxl-40 {
    --bs-gutter-y: 2.5rem;
  }
  .wp-front .g-xxl-45,
.wp-front .gx-xxl-45 {
    --bs-gutter-x: 2.8125rem;
  }
  .wp-front .g-xxl-45,
.wp-front .gy-xxl-45 {
    --bs-gutter-y: 2.8125rem;
  }
  .wp-front .g-xxl-50,
.wp-front .gx-xxl-50 {
    --bs-gutter-x: 3.125rem;
  }
  .wp-front .g-xxl-50,
.wp-front .gy-xxl-50 {
    --bs-gutter-y: 3.125rem;
  }
  .wp-front .g-xxl-55,
.wp-front .gx-xxl-55 {
    --bs-gutter-x: 3.4375rem;
  }
  .wp-front .g-xxl-55,
.wp-front .gy-xxl-55 {
    --bs-gutter-y: 3.4375rem;
  }
  .wp-front .g-xxl-60,
.wp-front .gx-xxl-60 {
    --bs-gutter-x: 3.75rem;
  }
  .wp-front .g-xxl-60,
.wp-front .gy-xxl-60 {
    --bs-gutter-y: 3.75rem;
  }
  .wp-front .g-xxl-65,
.wp-front .gx-xxl-65 {
    --bs-gutter-x: 4.0625rem;
  }
  .wp-front .g-xxl-65,
.wp-front .gy-xxl-65 {
    --bs-gutter-y: 4.0625rem;
  }
  .wp-front .g-xxl-70,
.wp-front .gx-xxl-70 {
    --bs-gutter-x: 4.375rem;
  }
  .wp-front .g-xxl-70,
.wp-front .gy-xxl-70 {
    --bs-gutter-y: 4.375rem;
  }
  .wp-front .g-xxl-75,
.wp-front .gx-xxl-75 {
    --bs-gutter-x: 4.6875rem;
  }
  .wp-front .g-xxl-75,
.wp-front .gy-xxl-75 {
    --bs-gutter-y: 4.6875rem;
  }
  .wp-front .g-xxl-80,
.wp-front .gx-xxl-80 {
    --bs-gutter-x: 5rem;
  }
  .wp-front .g-xxl-80,
.wp-front .gy-xxl-80 {
    --bs-gutter-y: 5rem;
  }
}
.wp-front .fade {
  -webkit-transition: all opacity 0.15s linear ease;
  -o-transition: all opacity 0.15s linear ease;
  transition: all opacity 0.15s linear ease;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.wp-front .fade:not(.show) {
  opacity: 0;
}
.wp-front .collapse:not(.show) {
  display: none;
}
.wp-front .collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: all height 0.35s ease ease;
  -o-transition: all height 0.35s ease ease;
  transition: all height 0.35s ease ease;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.wp-front .accordion-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: calc(24px*var(--scale)) calc(24px*var(--scale));
  font-size: 1.125rem;
  color: currentColor;
  text-align: left;
  background-color: transparent;
  border: 0;
  overflow-anchor: none;
  -webkit-transition: all color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease ease, -webkit-box-shadow 0.15s ease-in-out;
  transition: all color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease ease, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: all color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease ease;
  transition: all color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease ease;
  transition: all color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease ease, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.wp-front .accordion-button:not(.collapsed) {
  color: currentColor;
  background-color: #e7e7e7;
  -webkit-box-shadow: inset 0 0 0 transparent;
          box-shadow: inset 0 0 0 transparent;
}
.wp-front .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.wp-front .accordion-button::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: calc(16px*var(--scale));
  height: calc(16px*var(--scale));
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: calc(16px*var(--scale));
  -webkit-transition: all transform 0.2s ease-in-out ease;
  -o-transition: all transform 0.2s ease-in-out ease;
  transition: all transform 0.2s ease-in-out ease;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.wp-front .accordion-button:hover {
  z-index: 2;
}
.wp-front .accordion-button:focus {
  z-index: 3;
  border-color: #ffffff;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.wp-front .accordion-header {
  margin-bottom: 0;
}
.wp-front .accordion-item {
  background-color: transparent;
  border: 0 solid transparent;
}
.wp-front .accordion-item:not(:first-of-type) {
  border-top: 0;
}
.wp-front .accordion-body {
  padding: calc(24px*var(--scale)) calc(24px*var(--scale));
}
.wp-front .accordion-flush .accordion-collapse {
  border-width: 0;
}
.wp-front .accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
}
.wp-front .accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.wp-front .accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.wp-front .app-footer {
  background: #12264f;
  color: #fff;
  padding: calc(100px*var(--scale)) 0 calc(80px*var(--scale));
}
.wp-front .app-footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 767.98px) {
  .wp-front .app-footer__top {
    display: block;
  }
}
.wp-front .app-footer__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: calc(100px*var(--scale));
  width: 30%;
  max-width: 310px;
}
.wp-front .app-footer__top-left .social-btns {
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .wp-front .app-footer__top-left {
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
  }
}
.wp-front .app-footer__top-right {
  min-width: 0px;
}
.wp-front .footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.wp-front .footer-logo svg {
  height: 40px;
  width: auto;
}
.wp-front .footer-menu-wrapper > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-front .footer-menu-wrapper > ul > * + * {
  margin-left: calc(90px*var(--scale));
}
.wp-front .footer-menu-wrapper > ul > li > a,
.wp-front .footer-menu-wrapper > ul > li > span {
  font-size: 20px;
  font-weight: 700;
  font-family: "Jost";
  display: inline-block;
  margin-bottom: 0.8em;
}
.wp-front .footer-menu-wrapper > ul a {
  font-size: 1rem;
}
.wp-front .footer-menu-wrapper > ul a[href="#"] {
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .wp-front .footer-menu-wrapper > ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  .wp-front .footer-menu-wrapper > ul > * + * {
    margin: 0;
  }
}
.wp-front .footer-menu-wrapper .sub-menu li {
  margin-bottom: 15px;
}
.wp-front .footer-menu-wrapper .sub-menu li:last-child {
  margin-bottom: 0;
}
.wp-front .footer-menu-wrapper .sub-menu li:hover > a, .wp-front .footer-menu-wrapper .sub-menu li:focus-within > a {
  text-decoration: underline;
}
.wp-front .footer-menu-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wp-front .app-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 60px;
}
@media (max-width: 767.98px) {
  .wp-front .app-footer__bottom {
    display: block;
  }
  .wp-front .app-footer__bottom > * + * {
    margin-top: 20px;
  }
}
.wp-front .footer-logo__subtitle {
  font-size: 1rem;
  /* max-width: 20ch; */
}
.wp-front .footer-logo__subtitle.footer-logo__subtitle--link {
  max-width: 25ch;
  display: inline-block;
  font-size: 1.125rem;
  line-height: 1.5;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-text-decoration-color: rgba(255, 255, 255, 0.2);
          text-decoration-color: rgba(255, 255, 255, 0.2);
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.wp-front .footer-logo__subtitle.footer-logo__subtitle--link:hover, .wp-front .footer-logo__subtitle.footer-logo__subtitle--link:focus {
  -webkit-text-decoration-color: white;
          text-decoration-color: white;
  text-decoration: underline;
}
.wp-front .footer-logo__subtitle.footer-logo__subtitle--link:hover:after, .wp-front .footer-logo__subtitle.footer-logo__subtitle--link:focus:after {
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
}
.wp-front .footer-logo__subtitle.footer-logo__subtitle--link:after {
  content: "";
  font-family: "iconfont" !important;
  text-decoration: none;
  display: inline-block;
  margin-left: 8px;
  font-size: 0.6em;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  -o-transition: transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}
.wp-front .social-btns > * + * {
  margin-left: 10px;
}
.wp-front .social-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #285fe8;
  background: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-front .social-btn:hover {
  color: #ffffff;
  background: #285fe8;
}
.wp-front .footer-copyright {
  font-size: 0.875rem;
}
.wp-front .soc-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
}
.wp-front .soc-2 img {
  width: 60px;
  height: auto;
  margin-right: 15px;
}
.wp-front .app-header {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #f9f9f9 !important;
}
@media (max-width: 991.98px) {
  .wp-front .app-header .container {
    padding: 0;
  }
}
.wp-front .app-header .icon-chevron-down {
  display: none;
}
@media (max-width: 575.98px) {
  .wp-front .app-header .icon-chevron-down {
    display: block;
  }
}
.wp-front .app-header__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: calc(100px*var(--scale));
  -webkit-transition: background 250ms ease;
  -o-transition: background 250ms ease;
  transition: background 250ms ease;
}
@media (max-width: 991.98px) {
  .wp-front .app-header__content-wrapper {
    height: 70px;
    padding-right: var(--bs-gutter-x, 20px);
    padding-left: var(--bs-gutter-x, 20px);
  }
}
.wp-front .app-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991.98px) {
  .wp-front .app-header__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100% - 70px);
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 250ms ease, -webkit-transform 350ms ease;
    transition: opacity 250ms ease, -webkit-transform 350ms ease;
    -o-transition: opacity 250ms ease, transform 350ms ease;
    transition: opacity 250ms ease, transform 350ms ease;
    transition: opacity 250ms ease, transform 350ms ease, -webkit-transform 350ms ease;
  }
}
.wp-front .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 40px;
}
.wp-front .logo svg {
  height: 56px;
  width: auto;
}
@media (max-width: 575.98px) {
  .wp-front .logo svg {
    height: 40px;
  }
}
.wp-front .logo span {
  margin-left: 20px;
  font-size: 32px;
  letter-spacing: -2px;
  font-weight: 600;
  text-transform: uppercase;
}
.wp-front .header-menu-wrapper .sub-menu li {
  margin-bottom: 20px;
}
.wp-front .header-menu-wrapper .sub-menu li:last-child {
  margin-bottom: 0;
}
.wp-front .header-menu-wrapper .sub-menu li:not(.is-btn):hover > a, .wp-front .header-menu-wrapper .sub-menu li:not(.is-btn):focus-within > a {
  color: #285fe8;
}
.wp-front .header-menu-wrapper .sub-menu li:not(.is-btn) a {
  font-family: "Jost";
  font-weight: 700;
  font-size: 1.25rem;
}
.wp-front .header-menu-wrapper .sub-menu .is-btn > a {
  width: 100%;
}
.wp-front .header-menu-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 992px) {
  .wp-front .header-menu-wrapper > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .wp-front .header-menu-wrapper > ul > li {
    margin-right: 8px;
    position: relative;
    text-transform: uppercase;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, currentColor)) -20% 100%/var(--p, 10%) 2px no-repeat;
    background: -o-linear-gradient(currentColor 0 0) -20% 100%/var(--p, 10%) 2px no-repeat;
    background: linear-gradient(currentColor 0 0) -20% 100%/var(--p, 10%) 2px no-repeat;
    -webkit-transition: 0.5s 0.3s cubic-bezier(0, 1.25, 1, 1.8), background-size 0.3s;
    -o-transition: 0.5s 0.3s cubic-bezier(0, 1.25, 1, 1.8), background-size 0.3s;
    transition: 0.5s 0.3s cubic-bezier(0, 1.25, 1, 1.8), background-size 0.3s;
  }
  .wp-front .header-menu-wrapper > ul > li:last-child {
    margin-right: 0;
  }
  .wp-front .header-menu-wrapper > ul > li:hover > a,
.wp-front .header-menu-wrapper > ul > li:hover > span, .wp-front .header-menu-wrapper > ul > li:focus-within > a,
.wp-front .header-menu-wrapper > ul > li:focus-within > span {
    /* background: $gray-100; */
  }
  .wp-front .header-menu-wrapper > ul > li:hover {
    background-position: 50% 100%;
    --p: 50%;
    -webkit-transition: 0.5s cubic-bezier(0, 1.25, 1, 1.8), background-size 0.2s 0.7s;
    -o-transition: 0.5s cubic-bezier(0, 1.25, 1, 1.8), background-size 0.2s 0.7s;
    transition: 0.5s cubic-bezier(0, 1.25, 1, 1.8), background-size 0.2s 0.7s;
  }
  .wp-front .header-menu-wrapper > ul > li.menu-item-has-children {
    z-index: 5;
  }
  .wp-front .header-menu-wrapper > ul > li.menu-item-has-children:hover:after, .wp-front .header-menu-wrapper > ul > li.menu-item-has-children:focus-within:after {
    content: "";
    display: block;
    width: 100%;
    height: 20px;
    top: calc(100% - 10px);
    left: 0;
    position: absolute;
    z-index: -1;
  }
  .wp-front .header-menu-wrapper > ul > li.menu-item-has-children:hover > .sub-menu, .wp-front .header-menu-wrapper > ul > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .wp-front .header-menu-wrapper > ul > li > a,
.wp-front .header-menu-wrapper > ul > li > span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    padding: 0.5em 1em;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
  }
  .wp-front .header-menu-wrapper > ul > li > a i,
.wp-front .header-menu-wrapper > ul > li > span i {
    font-size: 5px;
    margin-left: 1em;
  }
  .wp-front .header-menu-wrapper .sub-menu.depth-0 {
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    padding: 35px;
    min-width: 300px;
    z-index: 10;
    background: #fff;
    top: calc(100% + 10px);
    left: -80px;
    -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
            transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
}
@media (max-width: 991.98px) {
  .wp-front .header-menu-wrapper > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wp-front .header-menu-wrapper > ul > li {
    position: relative;
    text-transform: uppercase;
  }
  .wp-front .header-menu-wrapper > ul > li.menu-item-has-children.opened > a,
.wp-front .header-menu-wrapper > ul > li.menu-item-has-children.opened > span {
    color: #ffffff;
    background: #285fe8;
    -webkit-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .wp-front .header-menu-wrapper > ul > li.menu-item-has-children.opened > a i,
.wp-front .header-menu-wrapper > ul > li.menu-item-has-children.opened > span i {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .wp-front .header-menu-wrapper > ul > li.menu-item-has-children.opened > .sub-menu {
    display: block;
    -webkit-animation: mob-dropdown-fade-in 350ms ease 100ms forwards;
            animation: mob-dropdown-fade-in 350ms ease 100ms forwards;
  }
  .wp-front .header-menu-wrapper > ul > li:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: var(--bs-gutter-x, 20px);
    width: calc(100% - (var(--bs-gutter-x, 20px) * 2));
    height: 1px;
    background: #e7e7e7;
  }
  .wp-front .header-menu-wrapper > ul > li > a,
.wp-front .header-menu-wrapper > ul > li > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0.8em var(--bs-gutter-x, 20px);
    font-size: 1.125rem;
    text-decoration: none;
  }
  .wp-front .header-menu-wrapper > ul > li > a i,
.wp-front .header-menu-wrapper > ul > li > span i {
    margin-left: auto;
    font-size: 6px;
  }
  .wp-front .header-menu-wrapper .sub-menu.depth-0 {
    padding: 20px var(--bs-gutter-x, 20px);
    display: none;
    opacity: 0;
    -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.wp-front .custom-dropdown .sub-menu.sub-menu.depth-0 > li {
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e7e7e7;
}
.wp-front .custom-dropdown .sub-menu.sub-menu.depth-0 > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.wp-front .custom-dropdown .sub-menu.sub-menu.depth-0 > li > a,
.wp-front .custom-dropdown .sub-menu.sub-menu.depth-0 > li > span {
  font-size: 0.875rem;
  pointer-events: none;
  display: block;
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .wp-front .custom-dropdown .sub-menu.sub-menu.depth-0 {
    min-width: 400px;
  }
}
.wp-front .menu-item-description {
  display: block;
  margin-top: 0.2em;
  font-size: 0.875rem;
  color: #454545;
}
.wp-front .menu-item-has-icon {
  padding-left: 1.8em;
  position: relative;
}
.wp-front .menu-item-has-icon i {
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0;
  font-size: 1em;
}
.wp-front .app-header__secondary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  .wp-front .app-header__secondary-menu {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wp-front .app-header__secondary-menu > * + * {
    margin-left: 15px;
  }
}
@media (max-width: 991.98px) {
  .wp-front .app-header__secondary-menu {
    margin-top: 30px;
    padding: 20px var(--bs-gutter-x, 20px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wp-front .app-header__secondary-menu > * + * {
    margin-top: 10px;
  }
  .wp-front .app-header__secondary-menu .app-header__early-access-btn,
.wp-front .app-header__secondary-menu .app-header__login-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 3.125rem;
    border-radius: 0.3125rem;
  }
}
.wp-front .app-header__early-access-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #285fe8;
  text-decoration: none;
  height: 2.5rem;
  font-size: 1rem;
  padding: 0 0.9375rem;
  border-radius: 0.3125rem;
}
.wp-front .app-header__early-access-btn:hover, .wp-front .app-header__early-access-btn:focus {
  background: #2456d1;
  color: #fff;
}
.wp-front .app-header__login-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5em 1em;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
}
.wp-front .app-header__login-btn:hover, .wp-front .app-header__login-btn:focus {
  background: #f5f5f5;
}
@media (max-width: 991.98px) {
  .wp-front .app-header__login-btn {
    background: #f5f5f5;
  }
  .wp-front .app-header__login-btn:hover {
    background: #dbdbdb;
  }
}
.wp-front .btn-mobile-menu {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  display: none;
}
@media (max-width: 991.98px) {
  .wp-front .btn-mobile-menu {
    display: block;
  }
}
.wp-front .btn-mobile-menu span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #000;
  border-radius: 4px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.wp-front .btn-mobile-menu span:nth-child(1) {
  top: 4px;
}
.wp-front .btn-mobile-menu span:nth-child(2) {
  top: 12px;
}
.wp-front .btn-mobile-menu span:nth-child(3) {
  top: 20px;
}
@-webkit-keyframes mob-dropdown-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes mob-dropdown-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.wp-front .btn, .wp-front .wp-block-button.is-style-outline .wp-block-button__link, .wp-front .wp-block-button.is-size-small .wp-block-button__link, .wp-front .wp-block-button.is-size-large .wp-block-button__link, .wp-front .wp-block-button .wp-block-button__link, .wp-front .header-menu-wrapper .sub-menu .is-btn > a {
  text-decoration: none;
  height: 3.125rem;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  background: #285fe8;
  color: #ffffff;
  border: 1px solid #285fe8;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  padding: 0 1.5625rem;
  border-radius: 0.3125rem;
  padding-top: 3px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.wp-front .btn:hover, .wp-front .wp-block-button .wp-block-button__link:hover, .wp-front .header-menu-wrapper .sub-menu .is-btn > a:hover, .wp-front .btn:focus, .wp-front .wp-block-button .wp-block-button__link:focus, .wp-front .header-menu-wrapper .sub-menu .is-btn > a:focus, .wp-front .btn:active, .wp-front .wp-block-button .wp-block-button__link:active, .wp-front .header-menu-wrapper .sub-menu .is-btn > a:active {
  border-color: #2456d1;
  background: #2456d1;
  color: #ffffff;
  text-decoration: none;
  outline: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.wp-front .btn.btn-lg, .wp-front .wp-block-button .btn-lg.wp-block-button__link, .wp-front .wp-block-button.is-size-large .wp-block-button__link, .wp-front .header-menu-wrapper .sub-menu .is-btn > a.btn-lg, .wp-front .header-menu-wrapper .sub-menu .wp-block-button.is-size-large .is-btn > a.wp-block-button__link, .wp-front .wp-block-button.is-size-large .header-menu-wrapper .sub-menu .is-btn > a.wp-block-button__link {
  height: 3.75rem;
  font-size: 1rem;
  padding: 0 1.875rem;
  border-radius: 0.3125rem;
}
.wp-front .btn.btn-sm, .wp-front .wp-block-button .btn-sm.wp-block-button__link, .wp-front .wp-block-button.is-size-small .wp-block-button__link, .wp-front .header-menu-wrapper .sub-menu .is-btn > a {
  height: 2.5rem;
  font-size: 1rem;
  padding: 0 0.9375rem;
  border-radius: 0.3125rem;
}
.wp-front .btn.btn-arctic-blue-bg, .wp-front .wp-block-button .btn-arctic-blue-bg.wp-block-button__link, .wp-front .header-menu-wrapper .sub-menu .is-btn > a.btn-arctic-blue-bg {
  background: #b8e8e5;
  border-color: #b8e8e5;
  color: #000;
}
.wp-front .btn.btn-arctic-blue-bg:hover, .wp-front .wp-block-button .btn-arctic-blue-bg.wp-block-button__link:hover, .wp-front .header-menu-wrapper .sub-menu .is-btn > a.btn-arctic-blue-bg:hover {
  background: #a6d1ce;
  border-color: #a6d1ce;
}
.wp-front .btn.outline, .wp-front .wp-block-button .outline.wp-block-button__link, .wp-front .wp-block-button.is-style-outline .wp-block-button__link, .wp-front .header-menu-wrapper .sub-menu .is-btn > a.outline, .wp-front .header-menu-wrapper .sub-menu .wp-block-button.is-style-outline .is-btn > a.wp-block-button__link, .wp-front .wp-block-button.is-style-outline .header-menu-wrapper .sub-menu .is-btn > a.wp-block-button__link {
  background: transparent !important;
  border-color: currentColor;
  color: #285fe8;
}
.wp-front .btn.outline:hover, .wp-front .wp-block-button .outline.wp-block-button__link:hover, .wp-front .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-front .header-menu-wrapper .sub-menu .is-btn > a.outline:hover, .wp-front .btn.outline:focus, .wp-front .wp-block-button .outline.wp-block-button__link:focus, .wp-front .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-front .header-menu-wrapper .sub-menu .is-btn > a.outline:focus, .wp-front .btn.outline:active, .wp-front .wp-block-button .outline.wp-block-button__link:active, .wp-front .wp-block-button.is-style-outline .wp-block-button__link:active, .wp-front .header-menu-wrapper .sub-menu .is-btn > a.outline:active {
  background: #285fe8 !important;
  color: #fff;
  border-color: #285fe8;
}
.wp-front .wp-block-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 575.98px) {
  .wp-front .wp-block-buttons.full-width-sm {
    width: 100%;
  }
}
.wp-front .wp-block-buttons .wp-block-button:only-of-type {
  margin: 0;
}
.wp-front .wp-block-button .wp-block-button__link.has-black-background-color {
  border-color: #000;
  color: #fff !important;
}
.wp-front .wp-block-button .wp-block-button__link.has-black-background-color:hover {
  background: #fff !important;
  color: #000 !important;
}
.wp-front .wp-block-button .wp-block-button__link.has-blue-background-color {
  border-color: #285fe8;
  color: #fff !important;
}
.wp-front .wp-block-button .wp-block-button__link.has-blue-background-color:hover {
  background: #2456d1 !important;
  border-color: #2456d1;
}
.wp-front .wp-block-button .wp-block-button__link.has-arctic-blue-background-color {
  border-color: #b8e8e5;
  color: #000 !important;
}
.wp-front .wp-block-button .wp-block-button__link.has-arctic-blue-background-color:hover {
  background: #a6d1ce !important;
  border-color: #a6d1ce;
}
.wp-front .wp-block-button .wp-block-button__link.has-gray-200-background-color {
  border-color: #e7e7e7;
  color: #000 !important;
}
.wp-front .wp-block-button .wp-block-button__link.has-gray-200-background-color:hover {
  background: #c9c9c9 !important;
  border-color: #c9c9c9;
}
.wp-front .wp-block-button .wp-block-button__link.has-white-background-color {
  border-color: #ffffff;
  color: #000 !important;
}
.wp-front .wp-block-button .wp-block-button__link.has-white-background-color:hover {
  background: #e7e7e7 !important;
  border-color: #e7e7e7;
}
.wp-front .wp-block-button.is-style-simple-underline-link .wp-block-button__link {
  padding: 0 !important;
  border: none !important;
  background: none !important;
  height: auto !important;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-text-decoration-color: rgba(40, 95, 232, 0.4);
          text-decoration-color: rgba(40, 95, 232, 0.4);
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  font-size: 1.125rem;
  color: #285fe8;
  position: relative;
}
.wp-front .wp-block-button.is-style-simple-underline-link .wp-block-button__link:after {
  content: "";
  font-family: "iconfont" !important;
  text-decoration: none;
  display: inline-block;
  position: absolute;
  right: -16px;
  font-size: 0.6em;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  -o-transition: transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}
.wp-front .wp-block-button.is-style-simple-underline-link .wp-block-button__link:hover, .wp-front .wp-block-button.is-style-simple-underline-link .wp-block-button__link:focus {
  color: #2456d1;
  -webkit-text-decoration-color: #285fe8;
          text-decoration-color: #285fe8;
}
.wp-front .wp-block-button.is-style-simple-underline-link .wp-block-button__link:hover:after, .wp-front .wp-block-button.is-style-simple-underline-link .wp-block-button__link:focus:after {
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
}
@media (max-width: 575.98px) {
  .wp-front .wp-block-button.full-width-sm:only-child {
    width: 100%;
  }
  .wp-front .wp-block-button.full-width-sm:only-child .wp-block-button__link {
    width: 100%;
  }
}
.wp-front .wsnw {
  white-space: nowrap !important;
}
.wp-front .wb {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.wp-front .no-tdua:before, .wp-front .no-tdua:after {
  display: none;
}
.wp-front .no-tdua *:before, .wp-front .no-tdua *:after {
  display: none;
}
.wp-front .lh-0 {
  line-height: 0;
}
.wp-front .td-underline {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.wp-front .td-underline:hover {
  text-decoration: underline;
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}
@media (max-width: 991.98px) {
  .wp-front .hidden-lg-down {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .wp-front .hidden-md-down {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .wp-front .hidden-sm-down {
    display: none !important;
  }
}
.wp-front .hero-image {
  max-height: 420px;
}
.wp-front .hero-image img {
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-front .w-100 {
  width: 100%;
}
@media (max-width: 575.98px) {
  .wp-front .w-100-sm {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .wp-front .pl-sm-0 {
    padding-left: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .wp-front .pr-sm-0 {
    padding-right: 0 !important;
  }
}
@media (min-width: 1580px) {
  .wp-front .max-width-xxl-100 {
    max-width: 100% !important;
  }
}
@media (min-width: 1200px) and (max-width: 1579.98px) {
  .wp-front .max-width-xl-100 {
    max-width: 100% !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .wp-front .max-width-lg-100 {
    max-width: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .wp-front .max-width-md-100 {
    max-width: 100% !important;
  }
}
@media (max-width: 767.98px) {
  .wp-front .max-width-sm-100 {
    max-width: 100% !important;
  }
}
.wp-front .footer-cta {
  position: relative;
  overflow: hidden;
}
.wp-front .footer-cta:before {
  content: "";
  display: block;
  position: absolute;
  width: calc(200px*var(--scale));
  height: calc(200px*var(--scale));
  left: 0;
  bottom: 0;
  background-image: url("../svg/yellow-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom left;
  pointer-events: none;
}
@media (max-width: 575.98px) {
  .wp-front .footer-cta:before {
    display: none;
  }
}
.wp-front .cf7-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 25px;
}
.wp-front .cf7-field .wpcf7-form-control {
  display: block;
  width: 100%;
  height: 3.125rem;
  padding: 0 1.25rem;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  background-color: #ffffff;
  color: #000;
  font-size: 1rem;
}
.wp-front .cf7-field .wpcf7-form-control::-webkit-input-placeholder {
  font-weight: 400;
  color: #7b7b7b;
  opacity: 1;
}
.wp-front .cf7-field .wpcf7-form-control:-moz-placeholder {
  font-weight: 400;
  color: #7b7b7b;
  opacity: 1;
}
.wp-front .cf7-field .wpcf7-form-control::-moz-placeholder {
  font-weight: 400;
  color: #7b7b7b;
  opacity: 1;
}
.wp-front .cf7-field .wpcf7-form-control:-ms-input-placeholder {
  font-weight: 400;
  color: #7b7b7b;
  opacity: 1;
}
.wp-front .cf7-field .wpcf7-form-control:focus {
  outline: none;
  border-color: #285fe8;
}
.wp-front .cf7-field .wpcf7-form-control:-internal-autofill-selected {
  -webkit-appearance: menulist-button;
     -moz-appearance: menulist-button;
          appearance: menulist-button;
  background-color: transparent !important;
  background-image: none !important;
  color: #000 !important;
}
.wp-front .cf7-field .wpcf7-form-control:-webkit-autofill, .wp-front .cf7-field .wpcf7-form-control:-webkit-autofill:hover, .wp-front .cf7-field .wpcf7-form-control:-webkit-autofill:focus, .wp-front .cf7-field .wpcf7-form-control:-webkit-autofill, .wp-front .cf7-field .wpcf7-form-control:-webkit-autofill:hover, .wp-front .cf7-field .wpcf7-form-control:-webkit-autofill:focus, .wp-front .cf7-field .wpcf7-form-control:-webkit-autofill, .wp-front .cf7-field .wpcf7-form-control:-webkit-autofill:hover, .wp-front .cf7-field .wpcf7-form-control:-webkit-autofill:focus {
  border: 1px solid #285fe8;
  -webkit-text-fill-color: #285fe8;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.wp-front .cf7-field .wpcf7-form-control.wpcf7-not-valid {
  border-color: #de372f;
}
.wp-front .cf7-field .wpcf7-form-control.wpcf7-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.wp-front .cf7-field .wpcf7-form-control.wpcf7-select.is-showing-placeholder {
  color: #7b7b7b;
}
.wp-front .cf7-field .wpcf7-form-control.wpcf7-select.is-showing-placeholder option {
  color: #000;
}
.wp-front .cf7-field .wpcf7-form-control.wpcf7-textarea {
  padding: 0.625rem 1.25rem;
  min-height: 110px;
}
.wp-front .cf7-field .wpcf7-form-control.wpcf7-checkbox, .wp-front .cf7-field .wpcf7-form-control.wpcf7-radio, .wp-front .cf7-field .wpcf7-form-control.wpcf7-acceptance, .wp-front .cf7-field .wpcf7-form-control.wpcf7-file {
  height: auto;
  border: none;
  padding: 0;
  border-radius: 0;
}
.wp-front .cf7-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item, .wp-front .cf7-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item, .wp-front .cf7-field .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item, .wp-front .cf7-field .wpcf7-form-control.wpcf7-file .wpcf7-list-item {
  margin: 0 0 8px 0;
  display: block;
}
.wp-front .cf7-field .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item:last-child, .wp-front .cf7-field .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:last-child, .wp-front .cf7-field .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item:last-child, .wp-front .cf7-field .wpcf7-form-control.wpcf7-file .wpcf7-list-item:last-child {
  margin: 0;
}
.wp-front .cf7-field__label {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}
.wp-front .cf7-select-field .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.wp-front .cf7-select-field .wpcf7-form-control-wrap:after {
  content: "";
  display: block;
  position: absolute;
  font-family: "iconfont" !important;
  font-size: 6px;
  pointer-events: none;
  right: 1.25rem;
  top: 21px;
}
.wp-front .wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
}
.wp-front .wpcf7-not-valid-tip {
  font-size: 1rem;
  margin: 4px 0 0;
  display: block;
  color: #de372f;
}
.wp-front .cf7-submit-btn .btn, .wp-front .cf7-submit-btn .header-menu-wrapper .sub-menu .is-btn > a, .wp-front .header-menu-wrapper .sub-menu .cf7-submit-btn .is-btn > a, .wp-front .cf7-submit-btn .wp-block-button .wp-block-button__link, .wp-front .wp-block-button .cf7-submit-btn .wp-block-button__link {
  width: 100%;
}
.wp-front .cf7-submit-btn .wpcf7-spinner {
  display: none;
}
.wp-front .wpcf7-form .wpcf7-response-output {
  border: none;
  margin: 0;
  padding: 0;
  margin-top: 25px;
  font-size: 1rem;
  text-align: center;
}
.wp-front input[type=checkbox],
.wp-front input[type=radio] {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  height: 14px;
  width: 14px;
  margin: 3px;
  cursor: pointer;
}
.wp-front input[type=checkbox]:active, .wp-front input[type=checkbox]:focus,
.wp-front input[type=radio]:active,
.wp-front input[type=radio]:focus {
  outline: none;
}
.wp-front input[type=checkbox] + span,
.wp-front input[type=radio] + span {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  margin-left: 34px;
  line-height: 1.33;
  font-size: 1.125rem !important;
}
.wp-front input[type=checkbox]:after,
.wp-front input[type=radio]:after {
  display: block;
  content: "";
  height: 30px;
  width: 30px;
  background-color: #ffffff;
  border: 1px solid #b1b1b1;
  position: absolute;
  top: 50%;
  left: -1px;
  z-index: 2;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: border 0.2s ease;
  -o-transition: border 0.2s ease;
  transition: border 0.2s ease;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.wp-front input[type=checkbox]:checked:after,
.wp-front input[type=radio]:checked:after {
  background: #285fe8;
  border-color: #285fe8;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAKCAYAAACE2W/HAAAABGdBTUEAALGPC/xhBQAAAKlJREFUKBWVj7ENgzAQRa3QoFSmtWjSJiNkCKZgDebIFDBEpEyQCTJAylSRzPvgQwlCAr70dPb5f93ZuR2KMXoIOyLOESjhmfCHLWnMZ3wPuCT/cag8BPCp+VfoX+EN0h1Gnw5gK5S/KfoVfEBqIZ/euWiagtILtJb+VMMXpBtkU8gONAvQGpLWktHUmG+x4sqhMzdV0+pF87yJMQNN07+q+fvqndBpzdQDMfO4XeNZHEsAAAAASUVORK5CYII=");
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: border 0s ease;
  -o-transition: border 0s ease;
  transition: border 0s ease;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.wp-front input[type=checkbox]:checked:hover:after, .wp-front input[type=checkbox]:checked:active:after, .wp-front input[type=checkbox]:checked:focus:after,
.wp-front input[type=radio]:checked:hover:after,
.wp-front input[type=radio]:checked:active:after,
.wp-front input[type=radio]:checked:focus:after {
  border-color: #285fe8;
}
.wp-front input[type=checkbox]:hover:after, .wp-front input[type=checkbox]:active:after, .wp-front input[type=checkbox]:focus:after,
.wp-front input[type=radio]:hover:after,
.wp-front input[type=radio]:active:after,
.wp-front input[type=radio]:focus:after {
  border-color: #7b7b7b;
}
.wp-front .submitted-message {
  text-align: center;
  font-size: 72px;
  font-weight: 500;
  padding: calc(80px*var(--scale));
}
.wp-front ._form {
  text-align: left;
}
.wp-front ._form ._form-content {
  position: relative;
}
.wp-front ._form ._form-content ._form_element ._form-label {
  display: none;
}
.wp-front ._form ._form-content ._form_element ._field-wrapper input[type=text],
.wp-front ._form ._form-content ._form_element ._field-wrapper select,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea {
  width: 100%;
  border-radius: 0;
  height: calc(50px*var(--scale));
  font-size: calc(1.3rem + 0.6vw);
  padding-left: 0;
  padding-right: 40px;
  background: transparent;
  border: none;
  color: #000;
  border-bottom: 2px solid #000;
}
@media (min-width: 1200px) {
  .wp-front ._form ._form-content ._form_element ._field-wrapper input[type=text],
.wp-front ._form ._form-content ._form_element ._field-wrapper select,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea {
    font-size: 1.75rem;
  }
}
.wp-front ._form ._form-content ._form_element ._field-wrapper input[type=text]::-webkit-input-placeholder,
.wp-front ._form ._form-content ._form_element ._field-wrapper select::-webkit-input-placeholder,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea::-webkit-input-placeholder {
  font-weight: 400;
  color: #000;
  opacity: 0.6;
}
.wp-front ._form ._form-content ._form_element ._field-wrapper input[type=text]:-moz-placeholder,
.wp-front ._form ._form-content ._form_element ._field-wrapper select:-moz-placeholder,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea:-moz-placeholder {
  font-weight: 400;
  color: #000;
  opacity: 0.6;
}
.wp-front ._form ._form-content ._form_element ._field-wrapper input[type=text]::-moz-placeholder,
.wp-front ._form ._form-content ._form_element ._field-wrapper select::-moz-placeholder,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea::-moz-placeholder {
  font-weight: 400;
  color: #000;
  opacity: 0.6;
}
.wp-front ._form ._form-content ._form_element ._field-wrapper input[type=text]:-ms-input-placeholder,
.wp-front ._form ._form-content ._form_element ._field-wrapper select:-ms-input-placeholder,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea:-ms-input-placeholder {
  font-weight: 400;
  color: #000;
  opacity: 0.6;
}
.wp-front ._form ._form-content ._form_element ._field-wrapper input[type=text]:focus,
.wp-front ._form ._form-content ._form_element ._field-wrapper select:focus,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea:focus {
  outline: none !important;
}
.wp-front ._form ._form-content ._form_element ._field-wrapper input[type=text]:-internal-autofill-selected,
.wp-front ._form ._form-content ._form_element ._field-wrapper select:-internal-autofill-selected,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea:-internal-autofill-selected {
  -webkit-appearance: menulist-button;
     -moz-appearance: menulist-button;
          appearance: menulist-button;
  background-color: transparent !important;
  background-image: none !important;
  color: #000 !important;
}
@media (min-width: 992px) {
  .wp-front ._form ._form-content ._form_element ._field-wrapper textarea {
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .wp-front ._form ._form-content ._form_element ._field-wrapper textarea::-webkit-scrollbar {
    background-color: #fff;
    width: 0px;
    height: 0px;
  }
  .wp-front ._form ._form-content ._form_element ._field-wrapper textarea::-webkit-scrollbar-corner {
    background-color: #fff;
  }
  .wp-front ._form ._form-content ._form_element ._field-wrapper textarea::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: #fff;
    border: 0px solid #fff;
  }
}
.wp-front ._form ._form-content ._form_element ._field-wrapper select {
  background: transparent;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxOCAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0wLjI5Mjg5MiAxLjcwNzE4TDEuNzA3MTEgMC4yOTI5NjlMOSA3LjU4NTg2TDE2LjI5MjkgMC4yOTI5NjlMMTcuNzA3MSAxLjcwNzE4TDkgMTAuNDE0M0wwLjI5Mjg5MiAxLjcwNzE4WiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==") no-repeat 100% 50%;
}
.wp-front ._form ._form-content ._form_element ._field-wrapper input:-webkit-autofill,
.wp-front ._form ._form-content ._form_element ._field-wrapper input:-webkit-autofill:hover,
.wp-front ._form ._form-content ._form_element ._field-wrapper input:-webkit-autofill:focus,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea:-webkit-autofill,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea:-webkit-autofill:hover,
.wp-front ._form ._form-content ._form_element ._field-wrapper textarea:-webkit-autofill:focus,
.wp-front ._form ._form-content ._form_element ._field-wrapper select:-webkit-autofill,
.wp-front ._form ._form-content ._form_element ._field-wrapper select:-webkit-autofill:hover,
.wp-front ._form ._form-content ._form_element ._field-wrapper select:-webkit-autofill:focus {
  border: none;
  border-bottom: 2px solid #000;
  -webkit-text-fill-color: #000;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.wp-front ._form ._form-content ._form_element ._field-wrapper ._error-inner {
  font-size: 0.875em;
  color: #de372f;
  margin-top: 5px;
}
.wp-front ._form ._form-content ._form_element ._checkbox-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.wp-front ._form ._form-content ._button-wrapper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.wp-front ._form ._form-content ._button-wrapper ._submit {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: #000;
  font-size: calc(1.3rem + 0.6vw);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
@media (min-width: 1200px) {
  .wp-front ._form ._form-content ._button-wrapper ._submit {
    font-size: 1.75rem;
  }
}
.wp-front ._form ._form-content ._button-wrapper ._submit:hover {
  color: #000;
  padding-left: 2px;
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
}
.wp-front ._form ._form-content ._button-wrapper ._error-inner {
  display: none;
}
.wp-front ._form ._form-thank-you {
  padding: 12px 0;
}
.wp-front .column-form ._form ._form-content ._form_element ._form-label {
  display: block;
  margin-bottom: calc(20px*var(--scale));
}
.wp-front .column-form ._form ._form-content ._form_element ._field-wrapper {
  margin-bottom: calc(60px*var(--scale));
}
.wp-front .column-form ._form ._form-content ._form_element ._field-wrapper input[type=text],
.wp-front .column-form ._form ._form-content ._form_element ._field-wrapper select,
.wp-front .column-form ._form ._form-content ._form_element ._field-wrapper textarea {
  height: auto;
  font-size: calc(1.375rem + 1.5vw) !important;
  padding-right: 0;
  border-bottom: 2px solid #b1b1b1;
}
@media (min-width: 1200px) {
  .wp-front .column-form ._form ._form-content ._form_element ._field-wrapper input[type=text],
.wp-front .column-form ._form ._form-content ._form_element ._field-wrapper select,
.wp-front .column-form ._form ._form-content ._form_element ._field-wrapper textarea {
    font-size: 2.5rem !important;
  }
}
.wp-front .column-form ._form ._form-content ._form_element ._field-wrapper input[type=text]:focus,
.wp-front .column-form ._form ._form-content ._form_element ._field-wrapper select:focus,
.wp-front .column-form ._form ._form-content ._form_element ._field-wrapper textarea:focus {
  border-color: #285fe8;
}
.wp-front .column-form ._form ._form-content ._button-wrapper {
  position: relative;
  top: auto;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  right: auto;
  padding-top: calc(60px*var(--scale));
}
.wp-front .column-form ._form ._form-content ._button-wrapper ._submit {
  background: #285fe8;
  color: #ffffff;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 1.25rem !important;
  height: calc(70px*var(--scale));
  width: 100%;
  border-radius: 70px;
}
.wp-front .column-form ._form ._form-content ._button-wrapper ._submit:hover {
  background: #000;
  color: #ffffff;
  padding-left: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.wp-front .column-form ._form ._form-content ._button-wrapper ._error-inner {
  display: none;
}
.wp-front .column-form ._form ._form-thank-you {
  font-size: calc(1.425rem + 2.1vw) !important;
  text-align: center;
}
@media (min-width: 1200px) {
  .wp-front .column-form ._form ._form-thank-you {
    font-size: 3rem !important;
  }
}
.wp-front #cn-accept-cookie {
  background: #285fe8;
  color: #ffffff;
  font-weight: 700;
  padding-left: 16px;
  padding-right: 16px;
}
.wp-front #cn-accept-cookie:hover, .wp-front #cn-accept-cookie:focus, .wp-front #cn-accept-cookie:active {
  background: #ffffff;
  color: #000;
}
.wp-front .posts-page__header {
  background: #b8e8e5;
  padding: 60px 0 130px;
}
@media (max-width: 991.98px) {
  .wp-front .posts-page__header {
    padding: 50px 0 110px;
  }
}
@media (max-width: 767.98px) {
  .wp-front .posts-page__header {
    padding: 35px 0 60px;
  }
}
.wp-front .posts-page__title {
  font-weight: 500;
}
.wp-front .post-page__header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
}
.wp-front .post-page__subtitle {
  margin-top: 20px;
}
@media (max-width: 575.98px) {
  .wp-front .post-page__subtitle {
    font-size: 1rem;
  }
}
.wp-front .blog-archive {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1199.98px) {
  .wp-front .blog-archive {
    gap: 30px;
  }
}
@media (max-width: 991.98px) {
  .wp-front .blog-archive {
    grid-template-columns: 1fr 1fr;
  }
  .wp-front .blog-archive > *:nth-child(3) {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .wp-front .blog-archive {
    grid-template-columns: 1fr;
  }
  .wp-front .blog-archive > *:nth-child(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.wp-front .posts-page__categories {
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .wp-front .posts-page__categories {
    margin-bottom: 40px;
  }
}
.wp-front .posts-categories-content {
  padding: 30px 0;
  border-bottom: 1px solid #dbdbdb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .wp-front .posts-categories-content {
    display: block;
    padding: 25px 0;
  }
}
.wp-front .blog-categories__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
  font-size: 1rem;
  max-width: 800px;
  margin-right: 40px;
}
.wp-front .blog-categories__list li:focus-within, .wp-front .blog-categories__list li:hover, .wp-front .blog-categories__list li.active {
  color: #285fe8;
}
@media (max-width: 991.98px) {
  .wp-front .blog-categories__list {
    margin-bottom: 25px;
    gap: 8px 15px;
  }
}
.wp-front .blog-types {
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-front .blog-types label {
  color: #454545;
  margin-right: 5px;
}
.wp-front .blog-types select {
  padding: 10px 15px;
  border-radius: 5px;
  border: none;
  background: #f5f5f5;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 150px;
  cursor: pointer;
}
.wp-front .blog-type-select-wrappper {
  position: relative;
}
.wp-front .blog-type-select-wrappper:after {
  content: "";
  font-family: "iconfont" !important;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 6px;
  pointer-events: none;
}
.wp-front .posts-page__featured-posts-content {
  padding-bottom: 80px;
  border-bottom: 1px solid #dbdbdb;
}
@media (max-width: 1199.98px) {
  .wp-front .posts-page__featured-posts-content {
    padding-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .wp-front .posts-page__featured-posts-content {
    padding-bottom: 50px;
  }
}
.wp-front .posts-page__section {
  padding: 80px 0;
}
@media (max-width: 1199.98px) {
  .wp-front .posts-page__section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .wp-front .posts-page__section {
    padding: 50px 0;
  }
}
.wp-front .posts-page__case-studies {
  background: #f5f5f5;
}
.wp-front .featured-posts-archive {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.wp-front .featured-posts-archive .small-post-item__title {
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  .wp-front .featured-posts-archive .small-post-item__title {
    font-size: 3rem;
  }
}
@media (max-width: 1199.98px) {
  .wp-front .featured-posts-archive {
    gap: 30px;
  }
}
@media (max-width: 575.98px) {
  .wp-front .featured-posts-archive {
    grid-template-columns: 1fr;
  }
}
.wp-front .featured-post-wrapper {
  margin-bottom: 90px;
}
.wp-front .blog-page__section-title,
.wp-front .posts-page__section-header {
  margin-bottom: 40px;
}
@media (max-width: 1199.98px) {
  .wp-front .blog-page__section-title,
.wp-front .posts-page__section-header {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .wp-front .blog-page__section-title,
.wp-front .posts-page__section-header {
    margin-bottom: 20px;
  }
}
.wp-front .posts-page__section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-front .posts-page__section-header .arrow-link {
  margin-right: 12px;
}
.wp-front .posts-page__content {
  margin: 50px 0 100px;
}
@media (max-width: 767.98px) {
  .wp-front .posts-page__content {
    margin: 40px 0 80px;
  }
}
.wp-front .posts-page__newsletter {
  margin: calc(150px*var(--scale)) 0;
}
@media (max-width: 767.98px) {
  .wp-front .posts-page__newsletter {
    margin: 60px 0;
  }
}
.wp-front .newsletter-title {
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .wp-front .newsletter-title {
    margin-bottom: 25px;
  }
}
.wp-front .nl-fields-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-front .nl-form-email {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 15px;
}
.wp-front .nl-form-email input {
  width: 100%;
  height: 50px;
  border: none;
  padding: 0;
  font-size: 1rem;
  background: #f5f5f5;
  color: #000;
  border: none;
  border-radius: 5px;
  padding: 0 1em;
}
.wp-front .nl-form-email input::-webkit-input-placeholder {
  color: #000;
  opacity: 0.5;
}
.wp-front .nl-form-email input::-moz-placeholder {
  color: #000;
  opacity: 0.5;
}
.wp-front .nl-form-email input:-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}
.wp-front .nl-form-email input::-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}
.wp-front .nl-form-email input::placeholder {
  color: #000;
  opacity: 0.5;
}
@media (max-width: 767.98px) {
  .wp-front .nl-form-email {
    margin-right: 10px;
  }
  .wp-front .nl-form-email input {
    height: 45px;
  }
}
.wp-front .newsletter-wrapper {
  max-width: 620px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid #000;
}
.wp-front .newsletter-wrapper .wpcf7-spinner {
  position: absolute;
  left: 50%;
  margin: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .wp-front .newsletter-wrapper {
    padding-top: 30px;
  }
}
.wp-front .nl-form-submit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-front .nl-form-submit .btn, .wp-front .nl-form-submit .header-menu-wrapper .sub-menu .is-btn > a, .wp-front .header-menu-wrapper .sub-menu .nl-form-submit .is-btn > a, .wp-front .nl-form-submit .wp-block-button .wp-block-button__link, .wp-front .wp-block-button .nl-form-submit .wp-block-button__link {
  width: 100%;
}
@media (max-width: 767.98px) {
  .wp-front .nl-form-submit .btn, .wp-front .nl-form-submit .header-menu-wrapper .sub-menu .is-btn > a, .wp-front .header-menu-wrapper .sub-menu .nl-form-submit .is-btn > a, .wp-front .nl-form-submit .wp-block-button .wp-block-button__link, .wp-front .wp-block-button .nl-form-submit .wp-block-button__link {
    padding: 0 12px;
    height: 45px;
  }
}
.wp-front .newsletter-policy-text {
  margin-top: 25px;
  font-size: 0.875rem;
  text-align: center;
}
.wp-front .small-post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.wp-front .small-post-item__feat {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  z-index: 1;
}
.wp-front .small-post-item__feat:hover:after {
  opacity: 0;
}
.wp-front .small-post-item__feat:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.05;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
.wp-front .small-post-item__feat:before {
  content: "";
  display: block;
  padding-top: 55%;
}
.wp-front .small-post-item__feat img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .wp-front .small-post-item__feat {
    margin-bottom: 10px;
  }
}
.wp-front .small-post-item__info {
  font-size: 0.875rem;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .wp-front .small-post-item__info {
    margin-bottom: 5px;
  }
}
.wp-front .small-post-item__title {
  font-family: "Jost";
  line-height: 1.1;
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  .wp-front .small-post-item__title {
    font-size: 1.75rem;
  }
}
.wp-front .small-post-item__link {
  margin-top: 15px;
}
.wp-front .single-post-wrapper {
  margin: calc(50px*var(--scale)) 0 calc(100px*var(--scale));
}
.wp-front .single-post-wrapper .container {
  max-width: 880px;
}
.wp-front .single-post-author {
  margin: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
}
.wp-front .single-post-author span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767.98px) {
  .wp-front .single-post-author {
    margin: 25px 0;
  }
}
.wp-front .single-post-author__image {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.wp-front .single-post-author__image img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-front .single-post-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 40px;
  font-size: 1rem;
}
@media only screen and (max-width: 540px) {
  .wp-front .single-post-info {
    display: block;
    padding: 20px 0;
    margin-bottom: 35px;
  }
  .wp-front .single-post-info > * + * {
    margin-top: 10px;
  }
}
.wp-front .post-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-front .post-share__title {
  margin-right: 15px;
}
.wp-front .post-share__links,
.wp-front .single-post-author-details__socials,
.wp-front .team-member__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-front .post-share__links > *,
.wp-front .single-post-author-details__socials > *,
.wp-front .team-member__socials > * {
  color: #fff;
  background: #12264f;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
}
.wp-front .post-share__links > *:hover,
.wp-front .single-post-author-details__socials > *:hover,
.wp-front .team-member__socials > *:hover {
  color: #fff;
  background: #2456d1;
}
.wp-front .post-share__links > * + *,
.wp-front .single-post-author-details__socials > * + *,
.wp-front .team-member__socials > * + * {
  margin-left: 10px;
}
.wp-front .post-share__links > * i,
.wp-front .single-post-author-details__socials > * i,
.wp-front .team-member__socials > * i {
  font-size: 13px;
}
.wp-front .single-post__content .text-content {
  display: block;
}
.wp-front .single-post__content .text-content > * + * {
  margin-top: 1em;
}
.wp-front .single-post__content .text-content h1, .wp-front .single-post__content .text-content .h1,
.wp-front .single-post__content .text-content h2,
.wp-front .single-post__content .text-content .h2,
.wp-front .single-post__content .text-content h3,
.wp-front .single-post__content .text-content .h3,
.wp-front .single-post__content .text-content h4,
.wp-front .single-post__content .text-content .h4,
.wp-front .single-post__content .text-content h5,
.wp-front .single-post__content .text-content .h5,
.wp-front .single-post__content .text-content h6,
.wp-front .single-post__content .text-content .h6 {
  margin: 1.2em 0 0.4em;
}
.wp-front .single-post__content .text-content h1:first-child, .wp-front .single-post__content .text-content .h1:first-child,
.wp-front .single-post__content .text-content h2:first-child,
.wp-front .single-post__content .text-content .h2:first-child,
.wp-front .single-post__content .text-content h3:first-child,
.wp-front .single-post__content .text-content .h3:first-child,
.wp-front .single-post__content .text-content h4:first-child,
.wp-front .single-post__content .text-content .h4:first-child,
.wp-front .single-post__content .text-content h5:first-child,
.wp-front .single-post__content .text-content .h5:first-child,
.wp-front .single-post__content .text-content h6:first-child,
.wp-front .single-post__content .text-content .h6:first-child {
  margin-top: 0;
}
.wp-front .single-post__title {
  font-weight: 500;
}
.wp-front .single-post__thumbnail {
  position: relative;
}
.wp-front .single-post__thumbnail:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.wp-front .single-post__thumbnail img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wp-front .single-post__footer {
  margin: calc(90px*var(--scale)) 0 calc(120px*var(--scale));
}
.wp-front .single-post-author-details {
  padding-top: 30px;
  border-top: 1px solid #dbdbdb;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  .wp-front .single-post-author-details {
    grid-template-columns: auto 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.wp-front .single-post-author-details__image {
  border-radius: 50%;
  overflow: hidden;
}
.wp-front .single-post-author-details__image img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767.98px) {
  .wp-front .single-post-author-details__image {
    grid-row: span 2;
  }
}
.wp-front .single-post-author-details__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 0;
  max-width: 600px;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .wp-front .single-post-author-details__content {
    padding: 0;
  }
}
.wp-front .single-post-author-details__desc {
  font-size: 1rem;
  margin-top: 5px;
}
@media (max-width: 767.98px) {
  .wp-front .single-post-author-details__desc {
    font-size: 0.875rem;
  }
}
.wp-front .single-post-author-details__name {
  font-weight: 500;
}
.wp-front .team-archive__title {
  margin-bottom: calc(60px*var(--scale));
}
.wp-front .team-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 767.98px) {
  .wp-front .team-archive {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .wp-front .team-archive {
    grid-template-columns: 1fr;
  }
}
.wp-front .team-member {
  display: block;
}
.wp-front .team-member__feat {
  display: block;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}
.wp-front .team-member__feat:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.wp-front .team-member__feat:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #000;
  opacity: 0.1;
}
.wp-front .team-member__feat img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.wp-front .team-member__role {
  display: block;
  font-size: 0.875rem;
  color: #454545;
  margin-bottom: 10px;
}
.wp-front .team-member__name {
  display: block;
  font-size: calc(1.275rem + 0.3vw);
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .wp-front .team-member__name {
    font-size: 1.5rem;
  }
}
.wp-front .team-member__desc {
  display: block;
  font-size: 1rem;
  margin-bottom: 15px;
}
.wp-front .team-member__short-desc {
  display: block;
  margin-top: 15px;
  font-size: 0.875rem;
  color: #454545;
}
.wp-front .team-archive-wrapper {
  margin-bottom: calc(160px*var(--scale));
}
.wp-front.error404 .app-main {
  min-height: 100vh;
  position: relative;
  padding: 120px 0;
}
.wp-front .error-404__orange-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}
.wp-front .error-404__orange-circle img {
  max-width: calc(200px*var(--scale));
}
.wp-front .error-404__content {
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: calc(100px*var(--scale)) auto 0;
}
.wp-front .error-404__pretitle {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 20px;
}
.wp-front .error-404__title {
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .wp-front .error-404__title {
    margin-bottom: 25px;
  }
}
.wp-front .error-404__btns {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 480px) {
  .wp-front .error-404__btns {
    margin-top: 35px;
  }
  .wp-front .error-404__btns .btn, .wp-front .error-404__btns .header-menu-wrapper .sub-menu .is-btn > a, .wp-front .header-menu-wrapper .sub-menu .error-404__btns .is-btn > a, .wp-front .error-404__btns .wp-block-button .wp-block-button__link, .wp-front .wp-block-button .error-404__btns .wp-block-button__link {
    width: 100%;
  }
}
.wp-front .contact-form-section {
  position: relative;
}
.wp-front .contact-form-section:before, .wp-front .contact-form-section:after {
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: -1;
}
.wp-front .contact-form-section:before {
  top: calc(140px*var(--scale));
  left: 0;
  width: calc(200px*var(--scale));
  height: calc(400px*var(--scale));
  background-image: url("../svg/arctic-blue-solid-circle.svg");
}
.wp-front .contact-form-section:after {
  bottom: calc(140px*var(--scale));
  right: 0;
  width: calc(200px*var(--scale));
  height: calc(400px*var(--scale));
  background-image: url("../svg/orange-dotted-circle.svg");
}
@media screen and (max-width: 480px) {
  .wp-front .contact-form-section:before {
    width: 70px;
    height: 140px;
  }
  .wp-front .contact-form-section:after {
    width: 80px;
    height: 160px;
  }
}
.wp-front a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.wp-front a:hover, .wp-front a:active, .wp-front a:focus {
  color: inherit;
  outline: none;
  text-decoration: none;
}
.wp-front h1 a, .wp-front .h1 a,
.wp-front h2 a,
.wp-front .h2 a,
.wp-front h3 a,
.wp-front .h3 a,
.wp-front h4 a,
.wp-front .h4 a,
.wp-front h5 a,
.wp-front .h5 a,
.wp-front h6 a,
.wp-front .h6 a,
.wp-front p a {
  color: #285fe8;
  text-decoration: underline;
}
.wp-front h1 a:hover, .wp-front .h1 a:hover,
.wp-front h2 a:hover,
.wp-front .h2 a:hover,
.wp-front h3 a:hover,
.wp-front .h3 a:hover,
.wp-front h4 a:hover,
.wp-front .h4 a:hover,
.wp-front h5 a:hover,
.wp-front .h5 a:hover,
.wp-front h6 a:hover,
.wp-front .h6 a:hover,
.wp-front p a:hover {
  text-decoration: none;
  color: #285fe8;
}
.wp-front h1, .wp-front .h1,
.wp-front h2,
.wp-front .h2,
.wp-front h3,
.wp-front .h3,
.wp-front h4,
.wp-front .h4,
.wp-front h5,
.wp-front .h5,
.wp-front h6,
.wp-front .h6 {
  font-weight: 500;
  font-family: "Jost";
}
@media (max-width: 767.98px) {
  .wp-front .wb-sm {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
  }
}
.wp-front .is-style-label {
  background: #e7e7e7;
  border-radius: 30px;
  padding: 0.4em 0.8em;
}
.wp-front .tdua {
  background: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
  background: -o-linear-gradient(left, currentColor, currentColor);
  background: linear-gradient(to right, currentColor, currentColor);
  background-size: 0 0.1em, 100% 0.1em;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  -webkit-transition: background-size 400ms;
  -o-transition: background-size 400ms;
  transition: background-size 400ms;
}
.wp-front .tdua:hover, .wp-front .tdua:focus, .wp-front .tdua:active {
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 0 100%, 100% 100%;
}
.wp-front .arrow-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-text-decoration-color: rgba(40, 95, 232, 0.4);
          text-decoration-color: rgba(40, 95, 232, 0.4);
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
  color: #285fe8;
}
.wp-front .arrow-link:hover, .wp-front .arrow-link:focus {
  color: #2456d1;
  -webkit-text-decoration-color: #285fe8;
          text-decoration-color: #285fe8;
  text-decoration: underline;
}
.wp-front .arrow-link:hover:after, .wp-front .arrow-link:focus:after {
  -webkit-transform: translateX(2px);
      -ms-transform: translateX(2px);
          transform: translateX(2px);
}
.wp-front .arrow-link:after {
  content: "";
  font-family: "iconfont" !important;
  text-decoration: none;
  display: inline-block;
  position: absolute;
  right: -12px;
  font-size: 0.6em;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  -o-transition: transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}
.wp-front .fw-400 {
  font-weight: 400 !important;
}
.wp-front .fw-500 {
  font-weight: 500 !important;
}
.wp-front .fw-700,
.wp-front b,
.wp-front strong {
  font-weight: 700 !important;
}
.wp-front .has-small-font-size {
  font-size: 0.875rem !important;
  line-height: 1.5;
}
.wp-front .has-normal-font-size {
  font-size: 1.125rem !important;
  line-height: 1.5;
}
.wp-front .has-medium-font-size {
  font-size: 1rem !important;
  line-height: 1.5;
}
.wp-front .has-large-font-size {
  font-size: calc(1.275rem + 0.3vw) !important;
  line-height: 1.33;
}
@media (min-width: 1200px) {
  .wp-front .has-large-font-size {
    font-size: 1.5rem !important;
  }
}
.wp-front h1, .wp-front .h1,
.wp-front .has-heading-1-font-size {
  font-size: calc(1.925rem + 8.1vw) !important;
  line-height: 1.11;
  font-weight: 400;
}
@media (min-width: 1200px) {
  .wp-front h1, .wp-front .h1,
.wp-front .has-heading-1-font-size {
    font-size: 8rem !important;
  }
}
.wp-front h2, .wp-front .h2,
.wp-front .has-heading-2-font-size,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h1,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front h1,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h1,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front h1,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h1,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front h1,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h1,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h1,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h1 {
  font-size: calc(1.575rem + 3.9vw) !important;
  line-height: 1.14;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .wp-front h2, .wp-front .h2,
.wp-front .has-heading-2-font-size,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h1,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front h1,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h1,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front h1,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h1,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front h1,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h1,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h1,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h1,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h1 {
    font-size: 4.5rem !important;
  }
}
.wp-front h3, .wp-front .h3,
.wp-front .has-heading-3-font-size,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h2,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front h2,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h2,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front h2,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h2,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front h2,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h2,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h2,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h2 {
  font-size: calc(1.425rem + 2.1vw) !important;
  line-height: 1.17;
}
@media (min-width: 1200px) {
  .wp-front h3, .wp-front .h3,
.wp-front .has-heading-3-font-size,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h2,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front h2,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h2,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front h2,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h2,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front h2,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h2,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h2,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h2,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h2 {
    font-size: 3rem !important;
  }
}
.wp-front h4, .wp-front .h4,
.wp-front .has-heading-4-font-size,
.wp-front .block-testimonial__text,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h3,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front h3,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h3,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front h3,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h3,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front h3,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h3,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h3,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h3 {
  font-size: calc(1.375rem + 1.5vw) !important;
  line-height: 1.22;
}
@media (min-width: 1200px) {
  .wp-front h4, .wp-front .h4,
.wp-front .has-heading-4-font-size,
.wp-front .block-testimonial__text,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h3,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front h3,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h3,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front h3,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h3,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front h3,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h3,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h3,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h3,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h3 {
    font-size: 2.5rem !important;
  }
}
.wp-front h5, .wp-front .h5,
.wp-front .has-heading-5-font-size,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h4,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front h4,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h4,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front h4,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h4,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front h4,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h4,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h4,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h4 {
  font-size: calc(1.3rem + 0.6vw) !important;
  line-height: 1.33;
}
@media (min-width: 1200px) {
  .wp-front h5, .wp-front .h5,
.wp-front .has-heading-5-font-size,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h4,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front h4,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h4,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front h4,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h4,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front h4,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h4,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h4,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h4,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h4 {
    font-size: 1.75rem !important;
  }
}
.wp-front h6, .wp-front .h6,
.wp-front .has-heading-6-font-size,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout h5,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front h5,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout h5,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front h5,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout h5,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front h5,
.block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h5,
.wp-front .block-editor-page.post-type-article .editor-styles-wrapper .block-editor-block-list__layout .h5,
.block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h5,
.wp-front .block-editor-page.post-type-news .editor-styles-wrapper .block-editor-block-list__layout .h5,
.block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .wp-front .h5,
.wp-front .block-editor-page.post-type-case-study .editor-styles-wrapper .block-editor-block-list__layout .h5 {
  font-size: 1.25rem !important;
  line-height: 1.33;
}
.wp-front .has-text-align-center {
  text-align: center;
}
.wp-front ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  list-style: none;
  max-width: 500px;
  padding: 0;
  margin: 40px auto 0;
  white-space: nowrap;
  color: #7b7b7b;
  font-size: 1rem;
}
.wp-front ul.page-numbers a,
.wp-front ul.page-numbers span {
  text-decoration: none;
  line-height: 1;
  font-size: 1em;
  font-weight: 400;
  text-align: center;
  display: block;
  min-width: 30px;
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.wp-front ul.page-numbers a.prev, .wp-front ul.page-numbers a.next,
.wp-front ul.page-numbers span.prev,
.wp-front ul.page-numbers span.next {
  border: 1px solid;
  border-radius: 50%;
}
.wp-front ul.page-numbers a.prev i, .wp-front ul.page-numbers a.next i,
.wp-front ul.page-numbers span.prev i,
.wp-front ul.page-numbers span.next i {
  font-size: 14px;
}
.wp-front ul.page-numbers a:focus,
.wp-front ul.page-numbers a:hover,
.wp-front ul.page-numbers span.current {
  color: #222;
}
.wp-front .custom-separator {
  height: 15px !important;
  width: 100%;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-top-left-radius: 10px;
  background: transparent !important;
}
.wp-front .row .block-list-appender {
  -webkit-box-ordinal-group: 101;
      -ms-flex-order: 100;
          order: 100;
  margin: 0 !important;
}
.wp-front .row .col {
  margin-left: 0;
  margin-right: 0;
}
.wp-front .bb-text-highlight {
  padding: 0.1em;
}
.wp-front .wp-block-columns.is-style-divided {
  border-bottom: 0;
}
.wp-front .wp-block-columns.is-style-divided .wp-block-column {
  padding: 0 50px 80px;
  margin: 0 !important;
}
.wp-front .wp-block-columns.is-style-divided .wp-block-column + .wp-block-column {
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: #dbdbdb;
}
@media (max-width: 991.98px) {
  .wp-front .wp-block-columns.is-style-divided {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: none;
  }
  .wp-front .wp-block-columns.is-style-divided .wp-block-column {
    padding: 0 40px 40px;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 100% !important;
            flex: 0 1 100% !important;
  }
  .wp-front .wp-block-columns.is-style-divided .wp-block-column + .wp-block-column {
    padding-top: 40px;
    border-width: 1px 0 0 0;
  }
}
@media (max-width: 575.98px) {
  .wp-front .wp-block-columns.is-style-divided .wp-block-column {
    padding-left: 0;
    padding-right: 0;
  }
}
.wp-front .wp-block-columns.is-style-border-between .wp-block-column {
  padding: 0 50px;
  margin: 0 !important;
}
.wp-front .wp-block-columns.is-style-border-between .wp-block-column:first-child {
  padding-left: 0;
}
.wp-front .wp-block-columns.is-style-border-between .wp-block-column:last-child {
  padding-right: 0;
}
.wp-front .wp-block-columns.is-style-border-between .wp-block-column + .wp-block-column {
  border-width: 0 0 0 1px;
  border-style: solid;
  border-color: #dbdbdb;
}
@media (max-width: 991.98px) {
  .wp-front .wp-block-columns.is-style-border-between {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-bottom: none;
  }
  .wp-front .wp-block-columns.is-style-border-between .wp-block-column {
    padding: 0 0 40px;
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 1 100% !important;
            flex: 0 1 100% !important;
  }
  .wp-front .wp-block-columns.is-style-border-between .wp-block-column + .wp-block-column {
    padding-top: 40px;
    border-width: 1px 0 0 0;
  }
}
@media (max-width: 575.98px) {
  .wp-front .wp-block-columns.is-style-border-between .wp-block-column {
    padding-left: 0;
    padding-right: 0;
  }
}
.wp-front .wp-block-columns {
  margin-bottom: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.wp-front .wp-block-columns .wp-block-column:not(:first-child) {
  margin-left: calc(30px*var(--scale));
}
@media (min-width: 1580px) {
  .wp-front .wp-block-columns.stacked-xxl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wp-front .wp-block-columns.stacked-xxl.reverse-order-when-stacked {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .wp-front .wp-block-columns.stacked-xxl.reverse-order-when-stacked > .wp-block-column:not(:first-child) {
    margin-bottom: calc(40px*var(--scale));
    margin-top: 0;
  }
  .wp-front .wp-block-columns.stacked-xxl > .wp-block-column {
    margin-left: 0;
    margin-right: 0;
  }
  .wp-front .wp-block-columns.stacked-xxl > .wp-block-column:not(:first-child) {
    margin-top: calc(40px*var(--scale));
  }
}
@media (min-width: 1200px) and (max-width: 1579.98px) {
  .wp-front .wp-block-columns.stacked-xl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wp-front .wp-block-columns.stacked-xl.reverse-order-when-stacked {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .wp-front .wp-block-columns.stacked-xl.reverse-order-when-stacked > .wp-block-column:not(:first-child) {
    margin-bottom: calc(40px*var(--scale));
    margin-top: 0;
  }
  .wp-front .wp-block-columns.stacked-xl > .wp-block-column {
    margin-left: 0;
    margin-right: 0;
  }
  .wp-front .wp-block-columns.stacked-xl > .wp-block-column:not(:first-child) {
    margin-top: calc(40px*var(--scale));
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .wp-front .wp-block-columns.stacked-lg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wp-front .wp-block-columns.stacked-lg.reverse-order-when-stacked {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .wp-front .wp-block-columns.stacked-lg.reverse-order-when-stacked > .wp-block-column:not(:first-child) {
    margin-bottom: calc(40px*var(--scale));
    margin-top: 0;
  }
  .wp-front .wp-block-columns.stacked-lg > .wp-block-column {
    margin-left: 0;
    margin-right: 0;
  }
  .wp-front .wp-block-columns.stacked-lg > .wp-block-column:not(:first-child) {
    margin-top: calc(40px*var(--scale));
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .wp-front .wp-block-columns.stacked-md {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wp-front .wp-block-columns.stacked-md.reverse-order-when-stacked {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .wp-front .wp-block-columns.stacked-md.reverse-order-when-stacked > .wp-block-column:not(:first-child) {
    margin-bottom: calc(40px*var(--scale));
    margin-top: 0;
  }
  .wp-front .wp-block-columns.stacked-md > .wp-block-column {
    margin-left: 0;
    margin-right: 0;
  }
  .wp-front .wp-block-columns.stacked-md > .wp-block-column:not(:first-child) {
    margin-top: calc(40px*var(--scale));
  }
}
@media (max-width: 767.98px) {
  .wp-front .wp-block-columns.stacked-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .wp-front .wp-block-columns.stacked-sm.reverse-order-when-stacked {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .wp-front .wp-block-columns.stacked-sm.reverse-order-when-stacked > .wp-block-column:not(:first-child) {
    margin-bottom: calc(40px*var(--scale));
    margin-top: 0;
  }
  .wp-front .wp-block-columns.stacked-sm > .wp-block-column {
    margin-left: 0;
    margin-right: 0;
  }
  .wp-front .wp-block-columns.stacked-sm > .wp-block-column:not(:first-child) {
    margin-top: calc(40px*var(--scale));
  }
}
@media (min-width: 1580px) {
  .wp-front .wp-block-columns.no-gutter-xxl > .wp-block-column {
    margin: 0 !important;
  }
}
@media (min-width: 1200px) and (max-width: 1579.98px) {
  .wp-front .wp-block-columns.no-gutter-xl > .wp-block-column {
    margin: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .wp-front .wp-block-columns.no-gutter-lg > .wp-block-column {
    margin: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .wp-front .wp-block-columns.no-gutter-md > .wp-block-column {
    margin: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .wp-front .wp-block-columns.no-gutter-sm > .wp-block-column {
    margin: 0 !important;
  }
}
.wp-front .wp-block-columns.border-top {
  border-top: 2px solid #dbdbdb !important;
}
.wp-front .wp-block-columns.border-right {
  border-right: 2px solid #dbdbdb !important;
}
.wp-front .wp-block-columns.border-bottom {
  border-bottom: 2px solid #dbdbdb !important;
}
.wp-front .wp-block-columns.border-left {
  border-left: 2px solid #dbdbdb !important;
}
@media (max-width: 767.98px) {
  .wp-front .wp-block-columns.full-screen-sm {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
}
.wp-front .wp-block-column {
  min-width: unset;
}
.wp-front .wp-block-column.display-block {
  display: block !important;
}
.wp-front .wp-block-column.display-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.wp-front .wp-block-column.display-inline {
  display: inline !important;
}
.wp-front .wp-block-column.display-inline-block {
  display: inline-block !important;
}
.wp-front .wp-block-column.display-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}
@media (min-width: 1580px) {
  .wp-front .wp-block-column.display-xxl-none {
    display: none !important;
  }
  .wp-front .wp-block-column.display-xxl-block {
    display: block !important;
  }
  .wp-front .wp-block-column.display-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-column.display-xxl-inline {
    display: inline !important;
  }
  .wp-front .wp-block-column.display-xxl-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-column.display-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) and (max-width: 1579.98px) {
  .wp-front .wp-block-column.display-xl-none {
    display: none !important;
  }
  .wp-front .wp-block-column.display-xl-block {
    display: block !important;
  }
  .wp-front .wp-block-column.display-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-column.display-xl-inline {
    display: inline !important;
  }
  .wp-front .wp-block-column.display-xl-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-column.display-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .wp-front .wp-block-column.display-lg-none {
    display: none !important;
  }
  .wp-front .wp-block-column.display-lg-block {
    display: block !important;
  }
  .wp-front .wp-block-column.display-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-column.display-lg-inline {
    display: inline !important;
  }
  .wp-front .wp-block-column.display-lg-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-column.display-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .wp-front .wp-block-column.display-md-none {
    display: none !important;
  }
  .wp-front .wp-block-column.display-md-block {
    display: block !important;
  }
  .wp-front .wp-block-column.display-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-column.display-md-inline {
    display: inline !important;
  }
  .wp-front .wp-block-column.display-md-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-column.display-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (max-width: 767.98px) {
  .wp-front .wp-block-column.display-sm-none {
    display: none !important;
  }
  .wp-front .wp-block-column.display-sm-block {
    display: block !important;
  }
  .wp-front .wp-block-column.display-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-column.display-sm-inline {
    display: inline !important;
  }
  .wp-front .wp-block-column.display-sm-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-column.display-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.wp-front .wp-block-group.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-front .wp-block-group.display-flex > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-front .wp-block-group.flex-direction-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wp-front .wp-block-group.flex-direction-row > .wp-block-group__inner-container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.wp-front .wp-block-group.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wp-front .wp-block-group.flex-direction-column > .wp-block-group__inner-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wp-front .wp-block-group.align-items-normal {
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
.wp-front .wp-block-group.align-items-normal > .wp-block-group__inner-container {
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
.wp-front .wp-block-group.align-items-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.wp-front .wp-block-group.align-items-baseline > .wp-block-group__inner-container {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.wp-front .wp-block-group.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-front .wp-block-group.align-items-center > .wp-block-group__inner-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-front .wp-block-group.align-items-flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wp-front .wp-block-group.align-items-flex-start > .wp-block-group__inner-container {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wp-front .wp-block-group.align-items-flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.wp-front .wp-block-group.align-items-flex-end > .wp-block-group__inner-container {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.wp-front .wp-block-group.align-items-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.wp-front .wp-block-group.align-items-stretch > .wp-block-group__inner-container {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.wp-front .wp-block-group.justify-content-normal {
  -webkit-box-pack: normal !important;
      -ms-flex-pack: normal !important;
          justify-content: normal !important;
}
.wp-front .wp-block-group.justify-content-normal > .wp-block-group__inner-container {
  -webkit-box-pack: normal !important;
      -ms-flex-pack: normal !important;
          justify-content: normal !important;
}
.wp-front .wp-block-group.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.wp-front .wp-block-group.justify-content-center > .wp-block-group__inner-container {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}
.wp-front .wp-block-group.justify-content-flex-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}
.wp-front .wp-block-group.justify-content-flex-start > .wp-block-group__inner-container {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}
.wp-front .wp-block-group.justify-content-flex-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}
.wp-front .wp-block-group.justify-content-flex-end > .wp-block-group__inner-container {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}
.wp-front .wp-block-group.justify-content-space-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}
.wp-front .wp-block-group.justify-content-space-around > .wp-block-group__inner-container {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}
.wp-front .wp-block-group.justify-content-space-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}
.wp-front .wp-block-group.justify-content-space-between > .wp-block-group__inner-container {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}
.wp-front .wp-block-group.justify-content-space-evenly {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}
.wp-front .wp-block-group.justify-content-space-evenly > .wp-block-group__inner-container {
  -webkit-box-pack: space-evenly !important;
      -ms-flex-pack: space-evenly !important;
          justify-content: space-evenly !important;
}
.wp-front .wp-block-group.justify-content-stretch {
  -webkit-box-pack: stretch !important;
      -ms-flex-pack: stretch !important;
          justify-content: stretch !important;
}
.wp-front .wp-block-group.justify-content-stretch > .wp-block-group__inner-container {
  -webkit-box-pack: stretch !important;
      -ms-flex-pack: stretch !important;
          justify-content: stretch !important;
}
.wp-front .wp-block-group.flex-wrap-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wp-front .wp-block-group.flex-wrap-wrap > .wp-block-group__inner-container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wp-front .wp-block-group.flex-wrap-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.wp-front .wp-block-group.flex-wrap-nowrap > .wp-block-group__inner-container {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.wp-front .wp-block-group.full-screen {
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 1580px) {
  .wp-front .wp-block-group.display-xxl-none {
    display: none !important;
  }
  .wp-front .wp-block-group.display-xxl-none > .wp-block-group__inner-container {
    display: none !important;
  }
  .wp-front .wp-block-group.display-xxl-block {
    display: block !important;
  }
  .wp-front .wp-block-group.display-xxl-block > .wp-block-group__inner-container {
    display: block !important;
  }
  .wp-front .wp-block-group.display-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-xxl-flex > .wp-block-group__inner-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-xxl-inline {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-xxl-inline > .wp-block-group__inner-container {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-xxl-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-xxl-inline-block > .wp-block-group__inner-container {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.display-xxl-inline-flex > .wp-block-group__inner-container {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.flex-direction-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-xxl-row > .wp-block-group__inner-container {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.flex-direction-xxl-column > .wp-block-group__inner-container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.align-items-xxl-normal {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-xxl-normal > .wp-block-group__inner-container {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-xxl-baseline > .wp-block-group__inner-container {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-xxl-center > .wp-block-group__inner-container {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-xxl-flex-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-xxl-flex-start > .wp-block-group__inner-container {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-xxl-flex-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-xxl-flex-end > .wp-block-group__inner-container {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.align-items-xxl-stretch > .wp-block-group__inner-container {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-normal {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-normal > .wp-block-group__inner-container {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-center > .wp-block-group__inner-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-flex-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-flex-start > .wp-block-group__inner-container {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-flex-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-flex-end > .wp-block-group__inner-container {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-space-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-space-around > .wp-block-group__inner-container {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-space-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-space-between > .wp-block-group__inner-container {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-space-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-space-evenly > .wp-block-group__inner-container {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-stretch {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-xxl-stretch > .wp-block-group__inner-container {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.flex-wrap-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-xxl-wrap > .wp-block-group__inner-container {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-xxl-nowrap > .wp-block-group__inner-container {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.full-screen-xxl {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1579.98px) {
  .wp-front .wp-block-group.display-xl-none {
    display: none !important;
  }
  .wp-front .wp-block-group.display-xl-none > .wp-block-group__inner-container {
    display: none !important;
  }
  .wp-front .wp-block-group.display-xl-block {
    display: block !important;
  }
  .wp-front .wp-block-group.display-xl-block > .wp-block-group__inner-container {
    display: block !important;
  }
  .wp-front .wp-block-group.display-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-xl-flex > .wp-block-group__inner-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-xl-inline {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-xl-inline > .wp-block-group__inner-container {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-xl-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-xl-inline-block > .wp-block-group__inner-container {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.display-xl-inline-flex > .wp-block-group__inner-container {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.flex-direction-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-xl-row > .wp-block-group__inner-container {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.flex-direction-xl-column > .wp-block-group__inner-container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.align-items-xl-normal {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-xl-normal > .wp-block-group__inner-container {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-xl-baseline > .wp-block-group__inner-container {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-xl-center > .wp-block-group__inner-container {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-xl-flex-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-xl-flex-start > .wp-block-group__inner-container {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-xl-flex-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-xl-flex-end > .wp-block-group__inner-container {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.align-items-xl-stretch > .wp-block-group__inner-container {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-xl-normal {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-xl-normal > .wp-block-group__inner-container {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-xl-center > .wp-block-group__inner-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-xl-flex-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-xl-flex-start > .wp-block-group__inner-container {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-xl-flex-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-xl-flex-end > .wp-block-group__inner-container {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-xl-space-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-xl-space-around > .wp-block-group__inner-container {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-xl-space-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-xl-space-between > .wp-block-group__inner-container {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-xl-space-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-xl-space-evenly > .wp-block-group__inner-container {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-xl-stretch {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-xl-stretch > .wp-block-group__inner-container {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.flex-wrap-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-xl-wrap > .wp-block-group__inner-container {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-xl-nowrap > .wp-block-group__inner-container {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.full-screen-xl {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .wp-front .wp-block-group.display-lg-none {
    display: none !important;
  }
  .wp-front .wp-block-group.display-lg-none > .wp-block-group__inner-container {
    display: none !important;
  }
  .wp-front .wp-block-group.display-lg-block {
    display: block !important;
  }
  .wp-front .wp-block-group.display-lg-block > .wp-block-group__inner-container {
    display: block !important;
  }
  .wp-front .wp-block-group.display-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-lg-flex > .wp-block-group__inner-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-lg-inline {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-lg-inline > .wp-block-group__inner-container {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-lg-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-lg-inline-block > .wp-block-group__inner-container {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.display-lg-inline-flex > .wp-block-group__inner-container {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.flex-direction-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-lg-row > .wp-block-group__inner-container {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.flex-direction-lg-column > .wp-block-group__inner-container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.align-items-lg-normal {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-lg-normal > .wp-block-group__inner-container {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-lg-baseline > .wp-block-group__inner-container {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-lg-center > .wp-block-group__inner-container {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-lg-flex-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-lg-flex-start > .wp-block-group__inner-container {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-lg-flex-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-lg-flex-end > .wp-block-group__inner-container {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.align-items-lg-stretch > .wp-block-group__inner-container {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-lg-normal {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-lg-normal > .wp-block-group__inner-container {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-lg-center > .wp-block-group__inner-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-lg-flex-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-lg-flex-start > .wp-block-group__inner-container {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-lg-flex-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-lg-flex-end > .wp-block-group__inner-container {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-lg-space-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-lg-space-around > .wp-block-group__inner-container {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-lg-space-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-lg-space-between > .wp-block-group__inner-container {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-lg-space-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-lg-space-evenly > .wp-block-group__inner-container {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-lg-stretch {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-lg-stretch > .wp-block-group__inner-container {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.flex-wrap-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-lg-wrap > .wp-block-group__inner-container {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-lg-nowrap > .wp-block-group__inner-container {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.full-screen-lg {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .wp-front .wp-block-group.display-md-none {
    display: none !important;
  }
  .wp-front .wp-block-group.display-md-none > .wp-block-group__inner-container {
    display: none !important;
  }
  .wp-front .wp-block-group.display-md-block {
    display: block !important;
  }
  .wp-front .wp-block-group.display-md-block > .wp-block-group__inner-container {
    display: block !important;
  }
  .wp-front .wp-block-group.display-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-md-flex > .wp-block-group__inner-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-md-inline {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-md-inline > .wp-block-group__inner-container {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-md-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-md-inline-block > .wp-block-group__inner-container {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.display-md-inline-flex > .wp-block-group__inner-container {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.flex-direction-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-md-row > .wp-block-group__inner-container {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.flex-direction-md-column > .wp-block-group__inner-container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.align-items-md-normal {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-md-normal > .wp-block-group__inner-container {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-md-baseline > .wp-block-group__inner-container {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-md-center > .wp-block-group__inner-container {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-md-flex-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-md-flex-start > .wp-block-group__inner-container {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-md-flex-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-md-flex-end > .wp-block-group__inner-container {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.align-items-md-stretch > .wp-block-group__inner-container {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-md-normal {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-md-normal > .wp-block-group__inner-container {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-md-center > .wp-block-group__inner-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-md-flex-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-md-flex-start > .wp-block-group__inner-container {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-md-flex-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-md-flex-end > .wp-block-group__inner-container {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-md-space-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-md-space-around > .wp-block-group__inner-container {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-md-space-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-md-space-between > .wp-block-group__inner-container {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-md-space-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-md-space-evenly > .wp-block-group__inner-container {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-md-stretch {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-md-stretch > .wp-block-group__inner-container {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.flex-wrap-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-md-wrap > .wp-block-group__inner-container {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-md-nowrap > .wp-block-group__inner-container {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.full-screen-md {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
}
@media (max-width: 767.98px) {
  .wp-front .wp-block-group.display-sm-none {
    display: none !important;
  }
  .wp-front .wp-block-group.display-sm-none > .wp-block-group__inner-container {
    display: none !important;
  }
  .wp-front .wp-block-group.display-sm-block {
    display: block !important;
  }
  .wp-front .wp-block-group.display-sm-block > .wp-block-group__inner-container {
    display: block !important;
  }
  .wp-front .wp-block-group.display-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-sm-flex > .wp-block-group__inner-container {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .wp-front .wp-block-group.display-sm-inline {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-sm-inline > .wp-block-group__inner-container {
    display: inline !important;
  }
  .wp-front .wp-block-group.display-sm-inline-block {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-sm-inline-block > .wp-block-group__inner-container {
    display: inline-block !important;
  }
  .wp-front .wp-block-group.display-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.display-sm-inline-flex > .wp-block-group__inner-container {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .wp-front .wp-block-group.flex-direction-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-sm-row > .wp-block-group__inner-container {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .wp-front .wp-block-group.flex-direction-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.flex-direction-sm-column > .wp-block-group__inner-container {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .wp-front .wp-block-group.align-items-sm-normal {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-sm-normal > .wp-block-group__inner-container {
    -webkit-box-align: normal !important;
        -ms-flex-align: normal !important;
            align-items: normal !important;
  }
  .wp-front .wp-block-group.align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-sm-baseline > .wp-block-group__inner-container {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .wp-front .wp-block-group.align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-sm-center > .wp-block-group__inner-container {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .wp-front .wp-block-group.align-items-sm-flex-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-sm-flex-start > .wp-block-group__inner-container {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .wp-front .wp-block-group.align-items-sm-flex-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-sm-flex-end > .wp-block-group__inner-container {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .wp-front .wp-block-group.align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.align-items-sm-stretch > .wp-block-group__inner-container {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-sm-normal {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-sm-normal > .wp-block-group__inner-container {
    -webkit-box-pack: normal !important;
        -ms-flex-pack: normal !important;
            justify-content: normal !important;
  }
  .wp-front .wp-block-group.justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-sm-center > .wp-block-group__inner-container {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .wp-front .wp-block-group.justify-content-sm-flex-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-sm-flex-start > .wp-block-group__inner-container {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .wp-front .wp-block-group.justify-content-sm-flex-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-sm-flex-end > .wp-block-group__inner-container {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .wp-front .wp-block-group.justify-content-sm-space-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-sm-space-around > .wp-block-group__inner-container {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .wp-front .wp-block-group.justify-content-sm-space-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-sm-space-between > .wp-block-group__inner-container {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .wp-front .wp-block-group.justify-content-sm-space-evenly {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-sm-space-evenly > .wp-block-group__inner-container {
    -webkit-box-pack: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
            justify-content: space-evenly !important;
  }
  .wp-front .wp-block-group.justify-content-sm-stretch {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.justify-content-sm-stretch > .wp-block-group__inner-container {
    -webkit-box-pack: stretch !important;
        -ms-flex-pack: stretch !important;
            justify-content: stretch !important;
  }
  .wp-front .wp-block-group.flex-wrap-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-sm-wrap > .wp-block-group__inner-container {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.flex-wrap-sm-nowrap > .wp-block-group__inner-container {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .wp-front .wp-block-group.full-screen-sm {
    margin-left: -20px !important;
    margin-right: -20px !important;
  }
}
.wp-front .wp-block-separator {
  height: 1px;
  margin: 0;
  opacity: 1;
  width: 100%;
  max-width: 100%;
}
.wp-front .wp-block-separator.is-style-rounded {
  height: 15px;
  background: transparent !important;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-top-left-radius: 10px;
  opacity: 0.3;
}
.wp-front .wp-block-separator-overlay {
  position: relative;
  overflow: hidden;
  min-height: 20px;
}
.wp-front .wp-block-separator-overlay .wp-block-separator {
  height: 20px !important;
  background-color: transparent !important;
}
.wp-front .wp-block-separator-overlay .overlay-text-box {
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 20px;
}
.wp-front .wp-block-separator-overlay .overlay-text-box:before, .wp-front .wp-block-separator-overlay .overlay-text-box:after {
  content: "";
  display: block;
  height: 2px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 100%;
  width: 50vw;
}
.wp-front .wp-block-separator-overlay .overlay-text-box:after {
  right: auto;
  left: 100%;
}
.wp-front ul.is-style-breadcrumbs,
.wp-front ol.is-style-breadcrumbs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-front ul.is-style-breadcrumbs li,
.wp-front ol.is-style-breadcrumbs li {
  position: relative;
  list-style: none;
  margin: 0;
}
.wp-front ul.is-style-breadcrumbs li + li,
.wp-front ol.is-style-breadcrumbs li + li {
  margin-left: 24px;
}
.wp-front ul.is-style-breadcrumbs li:before,
.wp-front ol.is-style-breadcrumbs li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  top: calc(0.5em + 2px);
  left: -12px;
}
.wp-front ul.is-style-breadcrumbs li:first-child:before,
.wp-front ol.is-style-breadcrumbs li:first-child:before {
  display: none;
}
@media (max-width: 575.98px) {
  .wp-front ul.is-style-breadcrumbs,
.wp-front ol.is-style-breadcrumbs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wp-front ul.is-style-breadcrumbs li + li,
.wp-front ol.is-style-breadcrumbs li + li {
    margin: 6px 0 0 0;
  }
  .wp-front ul.is-style-breadcrumbs li:first-child:before,
.wp-front ol.is-style-breadcrumbs li:first-child:before {
    display: block;
  }
}
.wp-front ul.is-style-rounded-checkmarks,
.wp-front ol.is-style-rounded-checkmarks {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 10px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wp-front ul.is-style-rounded-checkmarks li,
.wp-front ol.is-style-rounded-checkmarks li {
  position: relative;
  margin: 10px 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.3;
}
.wp-front ul.is-style-rounded-checkmarks li:before,
.wp-front ol.is-style-rounded-checkmarks li:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 8px;
  border-radius: 50%;
  background-image: url("../svg/checkmark.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.wp-front ul.is-style-rounded-checkmarks li:last-child,
.wp-front ol.is-style-rounded-checkmarks li:last-child {
  margin-right: 0;
}
.wp-front ul.is-style-blue-markers li::marker,
.wp-front ol.is-style-blue-markers li::marker {
  color: #285fe8;
}
.wp-front ol li {
  list-style: decimal-leading-zero;
}
.wp-front .wp-block-quote {
  margin: 0;
  border-left: 2px solid currentColor;
  padding-top: calc(20px*var(--scale));
  padding-bottom: calc(20px*var(--scale));
  padding-left: calc(40px*var(--scale));
}
.wp-front .wp-block-quote p {
  font-size: calc(1.3rem + 0.6vw);
  line-height: 35px;
  font-weight: 500;
  font-style: normal;
}
@media (min-width: 1200px) {
  .wp-front .wp-block-quote p {
    font-size: 1.75rem;
  }
}
.wp-front .wp-block-quote cite {
  display: block;
  font-size: 0.875em;
  line-height: 1.5;
  text-align: left;
  font-style: normal;
  opacity: 0.6;
  padding-top: calc(10px*var(--scale));
}
.wp-front .wp-block-quote.is-style-large p {
  font-size: calc(1.375rem + 1.5vw);
  line-height: 46px;
}
@media (min-width: 1200px) {
  .wp-front .wp-block-quote.is-style-large p {
    font-size: 2.5rem;
  }
}
.wp-front .wp-block-quote.is-style-large cite {
  font-size: 1.25rem;
  line-height: 20px;
  padding-top: calc(20px*var(--scale));
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio.ratio-16-9 .wp-block-image:before {
  padding-top: 56.25%;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio.ratio-4-3 .wp-block-image:before {
  padding-top: 75%;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio.ratio-1-1 .wp-block-image:before {
  padding-top: 100%;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio.ratio-portrait.ratio-16-9 .wp-block-image:before {
  padding-top: 177.77%;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio.ratio-portrait.ratio-4-3 .wp-block-image:before {
  padding-top: 133.33%;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio.ratio-ratio-overflow-x-right img,
.wp-front .wp-block-image-wrapper.has-aspect-ratio.ratio-ratio-overflow-x-right .components-resizable-box__container {
  right: auto;
  -o-object-position: left center;
     object-position: left center;
  width: auto !important;
  max-width: none !important;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio.ratio-ratio-overflow-x-left img,
.wp-front .wp-block-image-wrapper.has-aspect-ratio.ratio-ratio-overflow-x-left .components-resizable-box__container {
  left: auto;
  -o-object-position: right center;
     object-position: right center;
  width: auto !important;
  max-width: none !important;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio .wp-block-image {
  position: relative;
  width: 100%;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio .wp-block-image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio img,
.wp-front .wp-block-image-wrapper.has-aspect-ratio .components-resizable-box__container {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  max-width: none !important;
}
.wp-front .wp-block-image-wrapper.has-aspect-ratio .wp-block {
  width: 100%;
}
.wp-front .wp-block-image-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-front .wp-block-image-wrapper.wp-block-image--align-center {
  margin-left: auto !important;
  margin-right: auto !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.wp-front .wp-block-image-wrapper.wp-block-image--align-right {
  margin: 0 0 0 auto;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.wp-front .wp-block-image-wrapper[class*=wp-block-image--align] figure {
  margin: 0;
  float: none;
}
.wp-front .wp-block-image-wrapper .wp-block {
  margin: 0;
}
.wp-front .wp-block-image-wrapper .wp-block[data-align=left], .wp-front .wp-block-image-wrapper .wp-block[data-align=right] {
  height: auto;
}
.wp-front .wp-block-image-wrapper.has-custom-border-radius .wp-block {
  border-radius: inherit;
}
.wp-front .wp-block-image-wrapper.has-custom-border-radius .wp-block-image {
  border-radius: inherit;
  overflow: hidden;
}
.wp-front .wp-block-image {
  display: inline-block;
  position: relative;
  margin: 0;
}
.wp-front .wp-block-image img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
.wp-front .wp-block-image figcaption {
  display: none;
}
.wp-front .card-wrapper {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .wp-front .card-wrapper {
    position: sticky;
    top: 0px;
  }
  .wp-front .card-wrapper[data-block] {
    position: static;
  }
  .wp-front .card-wrapper:nth-child(1n) {
    top: 40px;
  }
  .wp-front .card-wrapper:nth-child(2n) {
    top: 80px;
  }
  .wp-front .card-wrapper:nth-child(3n) {
    top: 120px;
  }
  .wp-front .card-wrapper:nth-child(4n) {
    top: 160px;
  }
  .wp-front .card-wrapper:nth-child(5n) {
    top: 200px;
  }
  .wp-front .card-wrapper:nth-child(6n) {
    top: 240px;
  }
  .wp-front .card-wrapper:nth-child(7n) {
    top: 280px;
  }
  .wp-front .card-wrapper:nth-child(8n) {
    top: 320px;
  }
}
@media (max-width: 575.98px) {
  .wp-front .card-wrapper {
    padding: 30px !important;
    margin-bottom: 30px;
  }
}
.wp-front .card-wrapper img {
  image-rendering: -webkit-optimize-contrast;
}
.wp-front .empty-image-placeholder {
  background: #eee;
  padding: 2rem;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.wp-front .company-slide {
  border-radius: 4px;
  overflow: hidden;
  -webkit-filter: saturate(0%);
          filter: saturate(0%);
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.wp-front .company-slide:hover {
  -webkit-filter: saturate(100%);
          filter: saturate(100%);
}
.wp-front .company-slide img {
  width: auto;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 575.98px) {
  .wp-front .company-slide img {
    height: 100px;
  }
}
.wp-front .companies-carousel {
  min-width: 0px;
  /* the slides */
  /* the parent */
}
.wp-front .companies-carousel .slick-slide {
  margin: 0 5px;
}
.wp-front .companies-carousel .slick-list {
  margin: 0 -5px;
  overflow: visible;
}
.wp-front .companies-carousel-wrapper {
  overflow: hidden;
}
.wp-front .image-content-section {
  overflow: hidden;
}
.wp-front .image-content-section .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-front .image-content-section .container > * {
  width: 50%;
}
@media (max-width: 767.98px) {
  .wp-front .image-content-section .container {
    display: block;
  }
  .wp-front .image-content-section .container > * {
    width: 100%;
  }
}
.wp-front .image-column {
  margin: 100px 0;
  -ms-flex-item-align: center;
      align-self: center;
}
.wp-front .image-column .wp-block-image {
  display: block;
}
@media (max-width: 991.98px) {
  .wp-front .image-column {
    margin: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .wp-front .image-column {
    margin: 0 0 30px;
  }
}
.wp-front .content-column {
  padding: 100px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-front .content-column:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -70px;
  height: 100%;
  width: calc(50vw + 70px);
  background: inherit;
  z-index: -1;
  pointer-events: none;
}
.wp-front .content-column .wp-block-group:not(:last-child) {
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: calc(40px*var(--scale));
  margin-bottom: calc(40px*var(--scale));
}
@media (max-width: 991.98px) {
  .wp-front .content-column {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  .wp-front .content-column {
    padding: 60px 30px;
  }
  .wp-front .content-column:before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .wp-front .content-column {
    background: none !important;
    padding: 0;
  }
}
.wp-front .content-column__content {
  width: 80%;
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .wp-front .content-column__content {
    width: 90%;
  }
}
@media (max-width: 767.98px) {
  .wp-front .content-column__content {
    width: 100%;
  }
}
.wp-front .block-testimonial__content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.wp-front .block-testimonial__icon {
  width: 40px;
  margin-bottom: 40px;
}
@media (max-width: 1199.98px) {
  .wp-front .block-testimonial__icon {
    margin-bottom: 30px;
  }
}
.wp-front .block-testimonial__text {
  font-family: "Jost";
  font-weight: 500;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .wp-front .block-testimonial__text {
    margin-bottom: 30px;
  }
}
.wp-front .block-testimonial__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-front .block-testimonial__title {
  margin-bottom: 5px;
}
.wp-front .block-testimonial__role {
  font-size: 1rem;
  color: #454545;
}
.wp-front .latests-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.wp-front .latests-posts > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  .wp-front .latests-posts {
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .wp-front .latests-posts {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.wp-front .latests-post__title {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.375rem !important;
  font-weight: 500;
  line-height: 1.875rem;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: calc(40px*var(--scale));
}
.wp-front .latests-post__title:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  display: block;
  content: "";
  border-bottom: 2px solid #285fe8;
}
.wp-front .content-slider__progress-bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 3px;
  overflow: hidden;
  background-color: #e7e7e7;
  background-image: -webkit-gradient(linear, left top, right top, from(#285fe8), to(#285fe8));
  background-image: -o-linear-gradient(left, #285fe8, #285fe8);
  background-image: linear-gradient(to right, #285fe8, #285fe8);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size 0.4s ease-in-out;
  -o-transition: background-size 0.4s ease-in-out;
  transition: background-size 0.4s ease-in-out;
}
.wp-front .content-slider {
  overflow: hidden;
  padding: 8px 0;
  width: calc(100% + 20px);
}
@media (min-width: 576px) {
  .wp-front .content-slider {
    width: calc( 100vw - (100vw - 100%) / 2 );
  }
}
@media (min-width: 768px) {
  .wp-front .content-slider {
    width: calc( 100vw - (100vw - 100%) / 2 );
  }
}
@media (min-width: 992px) {
  .wp-front .content-slider {
    width: calc( 100vw - (100vw - 960px) / 2 );
  }
}
@media (min-width: 1200px) {
  .wp-front .content-slider {
    width: calc( 100vw - (100vw - 1300px) / 2 );
  }
}
@media (min-width: 1580px) {
  .wp-front .content-slider {
    width: calc( 100vw - (100vw - 1480px) / 2 );
  }
}
.wp-front .content-slider-wrapper .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wp-front .content-slider-wrapper .slick-slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px;
  border: 1px solid #c9c9c9;
  margin: 0 20px;
}
.wp-front .content-slider-wrapper .slick-slide:before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
  padding-top: 100%;
}
.wp-front .content-slider-wrapper .slick-slide:after {
  content: "";
  display: table;
  clear: both;
}
.wp-front .content-slider-wrapper .slick-list {
  margin: 0 -20px;
  padding-right: 50px;
}
@media (max-width: 991.98px) {
  .wp-front .content-slider-wrapper .slick-slide {
    margin: 0 15px;
    padding: 30px;
  }
  .wp-front .content-slider-wrapper .slick-list {
    margin: 0 -15px;
  }
}
@media (max-width: 575.98px) {
  .wp-front .content-slider-wrapper .slick-slide {
    padding: 20px;
    margin: 0 7.5px;
  }
  .wp-front .content-slider-wrapper .slick-list {
    margin: -7.5px;
    padding-right: 20px;
  }
}
.wp-front .content-slide__inner-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.wp-front .content-slide__inner-wrapper h2, .wp-front .content-slide__inner-wrapper .h2,
.wp-front .content-slide__inner-wrapper h3,
.wp-front .content-slide__inner-wrapper .h3,
.wp-front .content-slide__inner-wrapper h4,
.wp-front .content-slide__inner-wrapper .h4,
.wp-front .content-slide__inner-wrapper h5,
.wp-front .content-slide__inner-wrapper .h5,
.wp-front .content-slide__inner-wrapper h6,
.wp-front .content-slide__inner-wrapper .h6 {
  font-weight: 400;
}
.wp-front .content-slider-controls-wrapper {
  margin-top: 60px;
}
.wp-front .content-slider-controls-wrapper {
  margin-top: 60px;
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  .wp-front .content-slider-controls-wrapper {
    width: 100%;
  }
}
.wp-front .content-slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 30px;
}
.wp-front .content-slider-arrows .slick-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  cursor: pointer;
}
.wp-front .content-slider-arrows .slick-arrow.slick-disabled {
  color: #7b7b7b;
}
.wp-front .content-slider-arrows .slick-arrow + .slick-arrow {
  margin-left: 20px;
}
.wp-front .content-slider-arrows .slick-arrow i {
  font-size: 16px;
  -webkit-transition: color 250ms ease;
  -o-transition: color 250ms ease;
  transition: color 250ms ease;
}
.wp-front .features-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}
.wp-front .features-section__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: calc(150px*var(--scale));
}
@media (max-width: 1199.98px) {
  .wp-front .features-section__content {
    margin-right: 70px;
  }
}
.wp-front .features-section__images {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% + 70px);
          flex: 0 1 calc(50% + 70px);
}
.wp-front .features-section__images:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 68.4931506849%;
}
.wp-front .collapsible-item__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateY(15px);
      -ms-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 350ms ease, -webkit-transform 450ms ease;
  transition: opacity 350ms ease, -webkit-transform 450ms ease;
  -o-transition: opacity 350ms ease, transform 450ms ease;
  transition: opacity 350ms ease, transform 450ms ease;
  transition: opacity 350ms ease, transform 450ms ease, -webkit-transform 450ms ease;
}
.wp-front .collapsible-item__image.active {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.wp-front .collapsible-item__image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.wp-front .collapsible-item {
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  margin-bottom: 15px;
}
.wp-front .collapsible-item:last-child {
  margin-bottom: 0;
}
.wp-front .collapsible-item:hover {
  border-color: #333;
}
.wp-front .collapsible-item.active {
  border-color: #000;
}
.wp-front .collapsible-item.active .collapsible-item__content {
  max-height: none;
}
.wp-front .collapsible-item.active .collapsible-item__header i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wp-front .collapsible-item.active .collapsible-item__inner-content {
  opacity: 1;
  -webkit-transition-delay: 300ms;
       -o-transition-delay: 300ms;
          transition-delay: 300ms;
}
.wp-front .collapsible-item__header {
  padding: 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.wp-front .collapsible-item__header i {
  font-size: 6px;
}
.wp-front .collapsible-item__content {
  font-size: 1rem;
  max-height: 0px;
  -webkit-transition: max-height 400ms ease;
  -o-transition: max-height 400ms ease;
  transition: max-height 400ms ease;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.wp-front .collapsible-item__inner-content {
  padding: 0 20px 20px;
  opacity: 0;
  -webkit-transition: opacity 250ms ease;
  -o-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
}
.wp-front .collapsible-item__title {
  display: block;
  font-family: "Jost";
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.wp-front .no-features-added-message {
  padding: 50px;
  font-size: 1.5rem;
  background: #f5f5f5;
}
.wp-front .collapsible-item__mobile-image {
  display: none;
  position: relative;
  margin-top: 15px;
}
.wp-front .collapsible-item__mobile-image:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 68.4931506849%;
}
.wp-front .collapsible-item__mobile-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991.98px) {
  .wp-front .collapsible-item__mobile-image {
    display: block;
  }
  .wp-front .features-section__images {
    display: none;
  }
  .wp-front .features-section__content {
    margin: 0;
    width: 100%;
  }
  .wp-front .features-section {
    display: block;
  }
}
/*# sourceMappingURL=main.min.css.map */
