@charset "utf-8";
/* CSS Document */


*,
*:before,
*:after {
    text-rendering:optimizeLegibility;
}
/* =====  ⋮⋮⫸  GLOBAL  */
:root {
    --bs-body-font-family: "Inter", Helvetica, Arial, sans-serif;
    --bs-body-line-height: 1.4;
    --bs-body-color: #151515;
    --bs-body-font-weight: 400;

    --bs-heading-line-height: 1.25;

    --bs-link-color: #E3BC60;
    --bs-link-hover-color: #000;

    --bs-border-radius-sm: 2px;
    --bs-border-radius-md: 9px;
    --bs-border-radius-xl: 20px;
    --bs-border-radius-xxl: 25px;
}

.letter-space-0 { letter-spacing: 0; }
.letter-space--5 { letter-spacing: -.005em; }
.letter-space--2 { letter-spacing: -.02em; }

.line-height-1_5 { line-height: 1.5em }
.line-height-1 { line-height: 1em }

.text-gold { 
    color: #C7A147;
    background-color: #C7A147;
    background-image: linear-gradient(0deg, #C7A147, #E3BC60);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent; 
    -moz-text-fill-color: transparent;
}

#main ul li {
    text-align: left;
}

a { color: var(--bs-link-color); text-decoration: none; -webkit-transition: all 0.1s ease-out; -o-transition: all 0.1s ease-out; transition: all 0.1s ease-out; text-underline-offset: 0.25em; }
a:hover { color: var(--bs-link-hover-color); text-decoration: none; }

.bg-img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.reveal.hide_title {
    display: none !important;
}
.reveal,
.reveal.two {
    display: block;
    overflow: hidden;
}
.reveal-content {
    display: block;
    transform: translateY(100%);
    animation: reveal 1.7s cubic-bezier(1, 0, 0.3, 0.9) forwards;
}
.reveal:nth-child(2) .reveal-content {
  animation-delay: 0.6s;
}
.reveal:nth-child(3) .reveal-content {
  animation-delay: 1.2s;
}
.reveal:nth-child(4) .reveal-content {
  animation-delay: 1.8s;
}
.reveal:nth-child(5) .reveal-content {
  animation-delay: 2.4s;
}
@keyframes reveal {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

button {
    outline: 0;
}


.btn {
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: 0.8125rem;
    --bs-btn-font-size: 14px;
    --bs-btn-font-weight: 500;
    --bs-btn-line-height: 1.6;
    --bs-btn-box-shadow: none;
    --bs-btn-focus-box-shadow: none;;
    display: inline-block;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    line-height: var(--bs-btn-line-height);
    border: 0;
    text-underline-offset: 0.25em;
    -webkit-transition: all 0.1s ease-out; -o-transition: all 0.1s ease-out; transition: all 0.1s ease-out;
}

.btn-primary {
    --bs-btn-color: #000;
    --bs-btn-hover-color: #000;
    --bs-btn-padding-x: 1.5rem;
    --bs-btn-padding-y: 0.8125rem;
    min-width: inherit;
    background: -webkit-gradient(linear, left top, left bottom, from(#E3BC60), to(#C7A147)) !important;
    background: -o-linear-gradient(top, #E3BC60 0%, #C7A147 100%) !important;
    background: linear-gradient(180deg, #E3BC60 0%, #C7A147 100%) !important;
    border-radius: 57px;
    text-align: center;
}

.btn-primary.btn-lg {
    --bs-btn-padding-y: 1em;
    --bs-btn-padding-x: 2.5em;
    --bs-btn-font-size: 1.125em;
    --bs-btn-border-radius: 102px;
    font-weight: 600;
}

a.btn-primary:hover,
a.btn-primary:active,
button.btn-primary:hover {
    text-decoration: underline;
}

@media (min-width: 1200px) {
     .container-xxl { max-width: 1224px; }
}
@media (min-width: 1400px) {
    .container-xxl { max-width: 1224px; }
}
/* widths */
@media (min-width: 380px) {
    .w-xxs-auto {
        width: auto !important;
    }
    .w-xxs-100 {
        width: 100% !important;
    }
    .d-xxs-none {
        display: none !important;
    }
}
@media (min-width: 480px) {
    .w-xs-auto {
        width: auto !important;
    }
    .w-xs-100 {
        width: 100% !important;
    }
    .d-xs-none {
        display: none !important;
    }
}
@media (min-width: 576px) {
    .w-sm-auto {
        width: auto !important;
    }
    .w-sm-100 {
        width: 100% !important;
    }
}
@media (min-width: 768px) {
    .w-md-auto {
        width: auto !important;
    }
    .w-md-100 {
        width: 100% !important;
    }
}
@media (min-width: 992px) {
    .w-lg-auto {
        width: auto !important;
    }
    .w-lg-100 {
        width: 100% !important;
    }
}
@media (min-width: 1200px) {
    .w-xl-auto {
        width: auto !important;
    }
    .w-xl-100 {
        width: 100% !important;
    }
}
@media (min-width: 1400px) {
    .w-xxl-auto {
        width: auto !important;
    }
    .w-xxl-100 {
        width: 100% !important;
    }
}
/* end widths */

h1, .h1 {font-size:2.75em; line-height: var(--bs-heading-line-height);}
h2, .h2{font-size:1.875em; line-height: var(--bs-heading-line-height);}
h3, .h3{font-size:1.5em; line-height: var(--bs-heading-line-height); font-weight: 700;}
h4, .h4{font-size:1.25em; line-height: var(--bs-heading-line-height); font-weight: 700;}
h5, .h5{font-size:1.125em; line-height: var(--bs-heading-line-height); font-weight: 700;}
h6, .h6{font-size:1em; line-height: var(--bs-heading-line-height); font-weight: 700;}

.fs-1{font-size:2.75em!important;}
.fs-2{font-size:1.875em!important;}
.fs-3{font-size:1.5em!important;}
.fs-4{font-size:1.25em!important;}
.fs-5{font-size:1.125em!important;}
.fs-6{font-size:1em!important;}
.fs-7{font-size:.938em!important;}
.fs-8{font-size:.875em!important;}
.fs-9{font-size:.75em!important;}

.m-0{margin:0!important;}
.m-1{margin:0.375rem!important;}
.m-2{margin:0.75rem!important;}
.m-3{margin:1.125rem!important;}
.m-4{margin:1.5rem!important;}
.m-5{margin:1.875rem!important;}
.m-6{margin:2.25rem!important;}
.m-7{margin:3rem!important;}
.m-auto{margin:auto!important;}
.mx-0{margin-right:0!important;margin-left:0!important;}
.mx-1{margin-right:0.375rem!important;margin-left:0.375rem!important;}
.mx-2{margin-right:0.75rem!important;margin-left:0.75rem!important;}
.mx-3{margin-right:1.125rem!important;margin-left:1.125rem!important;}
.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important;}
.mx-5{margin-right:1.875rem!important;margin-left:1.875rem!important;}
.mx-6{margin-right:2.25rem!important;margin-left:2.25rem!important;}
.mx-7{margin-right:3rem!important;margin-left:3rem!important;}
.mx-auto{margin-right:auto!important;margin-left:auto!important;}
.my-0{margin-top:0!important;margin-bottom:0!important;}
.my-1{margin-top:0.375rem!important;margin-bottom:0.375rem!important;}
.my-2{margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
.my-3{margin-top:1.125rem!important;margin-bottom:1.125rem!important;}
.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important;}
.my-5{margin-top:1.875rem!important; margin-bottom:1.875rem!important;}
.my-6{margin-top:2.25rem!important; margin-bottom:2.25rem!important;}
.my-7{margin-top:3rem!important; margin-bottom:3rem!important;}
.my-auto{margin-top:auto!important;margin-bottom:auto!important;}
.mt-0{margin-top:0!important;}
.mt-1{margin-top:0.375rem!important;}
.mt-2{margin-top:0.75rem!important;}
.mt-3{margin-top:1.125rem!important;}
.mt-4{margin-top:1.5rem!important;}
.mt-5{margin-top:1.875rem!important;}
.mt-6{margin-top:2.25rem!important;}
.mt-7{margin-top:3rem!important;}
.mt-auto{margin-top:auto!important;}
.me-0{margin-right:0!important;}
.me-1{margin-right:0.375rem!important;}
.me-2{margin-right:0.75rem!important;}
.me-3{margin-right:1.125rem!important;}
.me-4{margin-right:1.5rem!important;}
.me-5{margin-right:1.875rem!important;}
.me-6{margin-right:2.25rem!important;}
.me-7{margin-right:3rem!important;}
.me-auto{margin-right:auto!important;}
.mb-0{margin-bottom:0!important;}
.mb-1{margin-bottom:0.375rem!important;}
.mb-2{margin-bottom:0.75rem!important;}
.mb-3{margin-bottom:1.125rem!important;}
.mb-4{margin-bottom:1.5rem!important;}
.mb-5{margin-bottom:1.875rem!important;}
.mb-6{margin-bottom:2.25rem!important;}
.mb-7{margin-bottom:3rem!important;}
.mb-auto{margin-bottom:auto!important;}
.ms-0{margin-left:0!important;}
.ms-1{margin-left:0.375rem!important;}
.ms-2{margin-left:0.75rem!important;}
.ms-3{margin-left:1.125rem!important;}
.ms-4{margin-left:1.5rem!important;}
.ms-5{margin-left:1.875rem!important;}
.ms-6{margin-left:2.25rem!important;}
.ms-7{margin-left:3rem!important;}
.ms-auto{margin-left:auto!important;}
.p-0{padding:0!important;}
.p-1{padding:0.375rem!important;}
.p-2{padding:0.75rem!important;}
.p-3{padding:1.125rem!important;}
.p-4{padding:1.5rem!important;}
.p-5{padding:1.875rem!important;}
.p-6{padding:2.25rem!important;}
.p-7{padding:3rem!important;}
.px-0{padding-right:0!important;padding-left:0!important;}
.px-1{padding-right:0.375rem!important;padding-left:0.375rem!important;}
.px-2{padding-right:0.75rem!important;padding-left:0.75rem!important;}
.px-3{padding-right:1.125rem!important;padding-left:1.125rem!important;}
.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important;}
.px-5{padding-right:1.875rem!important; padding-left:1.875rem!important;}
.px-6{padding-right:2.25rem!important; padding-left:2.25rem!important;}
.px-7{padding-right:3rem!important; padding-left:3rem!important;}
.py-0{padding-top:0!important;padding-bottom:0!important;}
.py-1{padding-top:0.375rem!important;padding-bottom:0.375rem!important;}
.py-2{padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
.py-3{padding-top:1.125rem!important;padding-bottom:1.125rem!important;}
.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important;}
.py-5{padding-top:1.875rem!important; padding-bottom:1.875rem!important;}
.py-6{padding-top:2.25rem!important; padding-bottom:2.25rem!important;}
.py-7{padding-top:3rem!important; padding-bottom:3rem!important;}
.pt-0{padding-top:0!important;}
.pt-1{padding-top:0.375rem!important;}
.pt-2{padding-top:0.75rem!important;}
.pt-3{padding-top:1.125rem!important;}
.pt-4{padding-top:1.5rem!important;}
.pt-5{padding-top:1.875rem!important;}
.pt-6{padding-top:2.25rem!important;}
.pt-7{padding-top:3rem!important;}
.pe-0{padding-right:0!important;}
.pe-1{padding-right:0.375rem!important;}
.pe-2{padding-right:0.75rem!important;}
.pe-3{padding-right:1.125rem!important;}
.pe-4{padding-right:1.5rem!important;}
.pe-5{padding-right:1.875rem!important;}
.pe-6{padding-right:2.25rem!important;}
.pe-7{padding-right:3rem!important;}
.pb-0{padding-bottom:0!important;}
.pb-1{padding-bottom:0.375rem!important;}
.pb-2{padding-bottom:0.75rem!important;}
.pb-3{padding-bottom:1.125rem!important;}
.pb-4{padding-bottom:1.5rem!important;}
.pb-5{padding-bottom:1.875rem!important;}
.pb-6{padding-bottom:2.25rem!important;}
.pb-7{padding-bottom:3rem!important;}
.ps-0{padding-left:0!important;}
.ps-1{padding-left:0.375rem!important;}
.ps-2{padding-left:0.75rem!important;}
.ps-3{padding-left:1.125rem!important;}
.ps-4{padding-left:1.5rem!important;}
.ps-5{padding-left:1.875rem!important;}
.ps-6{padding-left:2.25rem!important;}
.ps-7{padding-left:3rem!important;}
.gap-0{gap:0!important;}
.gap-1{gap:0.375rem!important;}
.gap-2{gap:0.75rem!important;}
.gap-3{gap:1.125rem!important;}
.gap-4{gap:1.5rem!important;}
.gap-5{gap:1.875rem!important;}
.gap-6{gap:2.25rem!important;}
.gap-7{gap:3rem!important;}

@media (min-width:1200px) {

.m-xl-0{margin:0!important;}
.m-xl-1{margin:0.375rem!important;}
.m-xl-2{margin:0.75rem!important;}
.m-xl-3{margin:1.125rem!important;}
.m-xl-4{margin:1.5rem!important;}
.m-xl-5{margin:1.875rem!important;}
.m-xl-6{margin:2.25rem!important;}
.m-xl-7{margin:3rem!important;}
.m-xl-auto{margin:auto!important;}
.mx-xl-0{margin-right:0!important;margin-left:0!important;}
.mx-xl-1{margin-right:0.375rem!important;margin-left:0.375rem!important;}
.mx-xl-2{margin-right:0.75rem!important;margin-left:0.75rem!important;}
.mx-xl-3{margin-right:1.125rem!important;margin-left:1.125rem!important;}
.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important;}
.mx-xl-5{margin-right:1.875rem!important;margin-left:1.875rem!important;}
.mx-xl-6{margin-right:2.25rem!important;margin-left:2.25rem!important;}
.mx-xl-7{margin-right:3rem!important;margin-left:3rem!important;}
.mx-xl-auto{margin-right:auto!important;margin-left:auto!important;}
.my-xl-0{margin-top:0!important;margin-bottom:0!important;}
.my-xl-1{margin-top:0.375rem!important;margin-bottom:0.375rem!important;}
.my-xl-2{margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
.my-xl-3{margin-top:1.125rem!important;margin-bottom:1.125rem!important;}
.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important;}
.my-xl-5{margin-top:1.875rem!important;margin-bottom:1.875rem!important;}
.my-xl-6{margin-top:2.25rem!important;margin-bottom:2.25rem!important;}
.my-xl-7{margin-top:3rem!important;margin-bottom:3rem!important;}
.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important;}
.mt-xl-0{margin-top:0!important;}
.mt-xl-1{margin-top:0.375rem!important;}
.mt-xl-2{margin-top:0.75rem!important;}
.mt-xl-3{margin-top:1.125rem!important;}
.mt-xl-4{margin-top:1.5rem!important;}
.mt-xl-5{margin-top:1.875rem!important;}
.mt-xl-6{margin-top:2.25rem!important;}
.mt-xl-7{margin-top:3rem!important;}
.mt-xl-auto{margin-top:auto!important;}
.me-xl-0{margin-right:0!important;}
.me-xl-1{margin-right:0.375rem!important;}
.me-xl-2{margin-right:0.75rem!important;}
.me-xl-3{margin-right:1.125rem!important;}
.me-xl-4{margin-right:1.5rem!important;}
.me-xl-5{margin-right:1.875rem!important;}
.me-xl-6{margin-right:2.25rem!important;}
.me-xl-7{margin-right:3rem!important;}
.me-xl-auto{margin-right:auto!important;}
.mb-xl-0{margin-bottom:0!important;}
.mb-xl-1{margin-bottom:0.375rem!important;}
.mb-xl-2{margin-bottom:0.75rem!important;}
.mb-xl-3{margin-bottom:1.125rem!important;}
.mb-xl-4{margin-bottom:1.5rem!important;}
.mb-xl-5{margin-bottom:1.875rem!important;}
.mb-xl-6{margin-bottom:2.25rem!important;}
.mb-xl-7{margin-bottom:3rem!important;}
.mb-xl-auto{margin-bottom:auto!important;}
.ms-xl-0{margin-left:0!important;}
.ms-xl-1{margin-left:0.375rem!important;}
.ms-xl-2{margin-left:0.75rem!important;}
.ms-xl-3{margin-left:1.125rem!important;}
.ms-xl-4{margin-left:1.5rem!important;}
.ms-xl-5{margin-left:1.875rem!important;}
.ms-xl-6{margin-left:2.25rem!important;}
.ms-xl-7{margin-left:3rem!important;}
.ms-xl-auto{margin-left:auto!important;}
.p-xl-0{padding:0!important;}
.p-xl-1{padding:0.375rem!important;}
.p-xl-2{padding:0.75rem!important;}
.p-xl-3{padding:1.125rem!important;}
.p-xl-4{padding:1.5rem!important;}
.p-xl-5{padding:1.875rem!important;}
.p-xl-6{padding:2.25rem!important;}
.p-xl-7{padding:3rem!important;}
.px-xl-0{padding-right:0!important;padding-left:0!important;}
.px-xl-1{padding-right:0.375rem!important;padding-left:0.375rem!important;}
.px-xl-2{padding-right:0.75rem!important;padding-left:.5rem!important;}
.px-xl-3{padding-right:1.125rem!important;padding-left:1.125rem!important;}
.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important;}
.px-xl-5{padding-right:1.875rem!important;padding-left:1.875rem!important;}
.px-xl-6{padding-right:2.25rem!important;padding-left:1.875rem!important;}
.px-xl-7{padding-right:3rem!important;padding-left:1.875rem!important;}
.py-xl-0{padding-top:0!important;padding-bottom:0!important;}
.py-xl-1{padding-top:0.375rem!important;padding-bottom:0.375rem!important;}
.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important;}
.py-xl-3{padding-top:1.125rem!important;padding-bottom:1.125rem!important;}
.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important;}
.py-xl-5{padding-top:1.875rem!important;padding-bottom:1.875rem!important;}
.py-xl-6{padding-top:2.25rem!important;padding-bottom:2.25rem!important;}
.py-xl-7{padding-top:3rem!important;padding-bottom:3rem!important;}
.pt-xl-0{padding-top:0!important;}
.pt-xl-1{padding-top:0.375rem!important;}
.pt-xl-2{padding-top:.5rem!important;}
.pt-xl-3{padding-top:1.125rem!important;}
.pt-xl-4{padding-top:1.5rem!important;}
.pt-xl-5{padding-top:1.875rem!important;}
.pt-xl-6{padding-top:2.25rem!important;}
.pt-xl-7{padding-top:3rem!important;}
.pe-xl-0{padding-right:0!important;}
.pe-xl-1{padding-right:0.375rem!important;}
.pe-xl-2{padding-right:.5rem!important;}
.pe-xl-3{padding-right:1.125rem!important;}
.pe-xl-4{padding-right:1.5rem!important;}
.pe-xl-5{padding-right:1.875rem!important;}
.pe-xl-6{padding-right:2.25rem!important;}
.pe-xl-7{padding-right:3rem!important;}
.pb-xl-0{padding-bottom:0!important;}
.pb-xl-1{padding-bottom:0.375rem!important;}
.pb-xl-2{padding-bottom:.5rem!important;}
.pb-xl-3{padding-bottom:1.125rem!important;}
.pb-xl-4{padding-bottom:1.5rem!important;}
.pb-xl-5{padding-bottom:1.875rem!important;}
.pb-xl-6{padding-bottom:2.25rem!important;}
.pb-xl-7{padding-bottom:3rem!important;}
.ps-xl-0{padding-left:0!important;}
.ps-xl-1{padding-left:0.375rem!important;}
.ps-xl-2{padding-left:.5rem!important;}
.ps-xl-3{padding-left:1.125rem!important;}
.ps-xl-4{padding-left:1.5rem!important;}
.ps-xl-5{padding-left:1.875rem!important;}
.ps-xl-6{padding-left:2.25rem!important;}
.ps-xl-7{padding-left:3rem!important;}
.gap-xl-0{gap:0!important;}
.gap-xl-1{gap:0.375rem!important;}
.gap-xl-2{gap:.5rem!important;}
.gap-xl-3{gap:1.125rem!important;}
.gap-xl-4{gap:1.5rem!important;}
.gap-xl-5{gap:1.875rem!important;}
.gap-xl-6{gap:2.25rem!important;}
.gap-xl-7{gap:3rem!important;}
}
@media (min-width:576px) {
.m-sm-0{margin:0!important;}
.m-sm-1{margin:0.375rem!important;}
.m-sm-2{margin:.5rem!important;}
.m-sm-3{margin:1.125rem!important;}
.m-sm-4{margin:1.5rem!important;}
.m-sm-5{margin:1.875rem!important;}
.m-sm-6{margin:2.25rem!important;}
.m-sm-7{margin:3rem!important;}
.m-sm-auto{margin:auto!important;}
.mx-sm-0{margin-right:0!important;margin-left:0!important;}
.mx-sm-1{margin-right:0.375rem!important;margin-left:0.375rem!important;}
.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important;}
.mx-sm-3{margin-right:1.125rem!important;margin-left:1.125rem!important;}
.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important;}
.mx-sm-5{margin-right:1.875rem!important;margin-left:1.875rem!important;}
.mx-sm-6{margin-right:2.25rem!important;margin-left:2.25rem!important;}
.mx-sm-7{margin-right:3rem!important;margin-left:3rem!important;}
.mx-sm-auto{margin-right:auto!important;margin-left:auto!important;}
.my-sm-0{margin-top:0!important;margin-bottom:0!important;}
.my-sm-1{margin-top:0.375rem!important;margin-bottom:0.375rem!important;}
.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important;}
.my-sm-3{margin-top:1.125rem!important;margin-bottom:1.125rem!important;}
.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important;}
.my-sm-5{margin-top:1.875rem!important;margin-bottom:1.875rem!important;}
.my-sm-6{margin-top:2.25rem!important;margin-bottom:2.25rem!important;}
.my-sm-7{margin-top:3rem!important;margin-bottom:3rem!important;}
.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important;}
.mt-sm-0{margin-top:0!important;}
.mt-sm-1{margin-top:0.375rem!important;}
.mt-sm-2{margin-top:.5rem!important;}
.mt-sm-3{margin-top:1.125rem!important;}
.mt-sm-4{margin-top:1.5rem!important;}
.mt-sm-5{margin-top:1.875rem!important;}
.mt-sm-6{margin-top:2.25rem!important;}
.mt-sm-7{margin-top:3rem!important;}
.mt-sm-auto{margin-top:auto!important;}
.me-sm-0{margin-right:0!important;}
.me-sm-1{margin-right:0.375rem!important;}
.me-sm-2{margin-right:.5rem!important;}
.me-sm-3{margin-right:1.125rem!important;}
.me-sm-4{margin-right:1.5rem!important;}
.me-sm-5{margin-right:1.875rem!important;}
.me-sm-6{margin-right:2.25rem!important;}
.me-sm-7{margin-right:3rem!important;}
.me-sm-auto{margin-right:auto!important;}
.mb-sm-0{margin-bottom:0!important;}
.mb-sm-1{margin-bottom:0.375rem!important;}
.mb-sm-2{margin-bottom:.5rem!important;}
.mb-sm-3{margin-bottom:1.125rem!important;}
.mb-sm-4{margin-bottom:1.5rem!important;}
.mb-sm-5{margin-bottom:1.875rem!important;}
.mb-sm-6{margin-bottom:2.25rem!important;}
.mb-sm-7{margin-bottom:3rem!important;}
.mb-sm-auto{margin-bottom:auto!important;}
.ms-sm-0{margin-left:0!important;}
.ms-sm-1{margin-left:0.375rem!important;}
.ms-sm-2{margin-left:.5rem!important;}
.ms-sm-3{margin-left:1.125rem!important;}
.ms-sm-4{margin-left:1.5rem!important;}
.ms-sm-5{margin-left:1.875rem!important;}
.ms-sm-6{margin-left:2.25rem!important;}
.ms-sm-7{margin-left:3rem!important;}
.ms-sm-auto{margin-left:auto!important;}
.p-sm-0{padding:0!important;}
.p-sm-1{padding:0.375rem!important;}
.p-sm-2{padding:.5rem!important;}
.p-sm-3{padding:1.125rem!important;}
.p-sm-4{padding:1.5rem!important;}
.p-sm-5{padding:1.875rem!important;}
.p-sm-6{padding:2.25rem!important;}
.p-sm-7{padding:3rem!important;}
.px-sm-0{padding-right:0!important;padding-left:0!important;}
.px-sm-1{padding-right:0.375rem!important;padding-left:0.375rem!important;}
.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important;}
.px-sm-3{padding-right:1.125rem!important;padding-left:1.125rem!important;}
.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important;}
.px-sm-5{padding-right:1.875rem!important;padding-left:1.875rem!important;}
.px-sm-6{padding-right:2.25rem!important;padding-left:2.25rem!important;}
.px-sm-7{padding-right:3rem!important;padding-left:3rem!important;}
.py-sm-0{padding-top:0!important;padding-bottom:0!important;}
.py-sm-1{padding-top:0.375rem!important;padding-bottom:0.375rem!important;}
.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important;}
.py-sm-3{padding-top:1.125rem!important;padding-bottom:1.125rem!important;}
.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important;}
.py-sm-5{padding-top:1.875rem!important;padding-bottom:1.875rem!important;}
.py-sm-6{padding-top:2.25rem!important;padding-bottom:2.25rem!important;}
.py-sm-7{padding-top:3rem!important;padding-bottom:3rem!important;}
.pt-sm-0{padding-top:0!important;}
.pt-sm-1{padding-top:0.375rem!important;}
.pt-sm-2{padding-top:.5rem!important;}
.pt-sm-3{padding-top:1.125rem!important;}
.pt-sm-4{padding-top:1.5rem!important;}
.pt-sm-5{padding-top:1.875rem!important;}
.pt-sm-6{padding-top:2.25rem!important;}
.pt-sm-7{padding-top:3rem!important;}
.pe-sm-0{padding-right:0!important;}
.pe-sm-1{padding-right:0.375rem!important;}
.pe-sm-2{padding-right:.5rem!important;}
.pe-sm-3{padding-right:1.125rem!important;}
.pe-sm-4{padding-right:1.5rem!important;}
.pe-sm-5{padding-right:1.875rem!important;}
.pe-sm-6{padding-right:2.25rem!important;}
.pe-sm-7{padding-right:3rem!important;}
.pb-sm-0{padding-bottom:0!important;}
.pb-sm-1{padding-bottom:0.375rem!important;}
.pb-sm-2{padding-bottom:.5rem!important;}
.pb-sm-3{padding-bottom:1.125rem!important;}
.pb-sm-4{padding-bottom:1.5rem!important;}
.pb-sm-5{padding-bottom:1.875rem!important;}
.pb-sm-6{padding-bottom:2.25rem!important;}
.pb-sm-7{padding-bottom:3rem!important;}
.ps-sm-0{padding-left:0!important;}
.ps-sm-1{padding-left:0.375rem!important;}
.ps-sm-2{padding-left:.5rem!important;}
.ps-sm-3{padding-left:1.125rem!important;}
.ps-sm-4{padding-left:1.5rem!important;}
.ps-sm-5{padding-left:1.875rem!important;}
.ps-sm-6{padding-left:2.25rem!important;}
.ps-sm-7{padding-left:3rem!important;}
.gap-sm-0{gap:0!important;}
.gap-sm-1{gap:0.375rem!important;}
.gap-sm-2{gap:0.75rem!important;}
.gap-sm-3{gap:1.125rem!important;}
.gap-sm-4{gap:1.5rem!important;}
.gap-sm-5{gap:1.875rem!important;}
.gap-sm-6{gap:2.25rem!important;}
.gap-sm-7{gap:3rem!important;}
}
@media (min-width:768px) {
.m-md-0{margin:0!important;}
.m-md-1{margin:0.375rem!important;}
.m-md-2{margin:0.75rem!important;}
.m-md-3{margin:1.125rem!important;}
.m-md-4{margin:1.5rem!important;}
.m-md-5{margin:1.875rem!important;}
.m-md-6{margin:2.25rem!important;}
.m-md-7{margin:3rem!important;}
.m-md-auto{margin:auto!important;}
.mx-md-0{margin-right:0!important;margin-left:0!important;}
.mx-md-1{margin-right:0.375rem!important;margin-left:0.375rem!important;}
.mx-md-2{margin-right:0.75rem!important;margin-left:0.75rem!important;}
.mx-md-3{margin-right:1.125rem!important;margin-left:1.125rem!important;}
.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important;}
.mx-md-5{margin-right:1.875rem!important;margin-left:1.875rem!important;}
.mx-md-6{margin-right:2.25rem!important;margin-left:2.25rem!important;}
.mx-md-7{margin-right:3rem!important;margin-left:3rem!important;}
.mx-md-auto{margin-right:auto!important;margin-left:auto!important;}
.my-md-0{margin-top:0!important;margin-bottom:0!important;}
.my-md-1{margin-top:0.375rem!important;margin-bottom:0.375rem!important;}
.my-md-2{margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
.my-md-3{margin-top:1.125rem!important;margin-bottom:1.125rem!important;}
.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important;}
.my-md-5{margin-top:1.875rem!important;margin-bottom:1.875rem!important;}
.my-md-6{margin-top:2.25rem!important;margin-bottom:2.25rem!important;}
.my-md-7{margin-top:3rem!important;margin-bottom:3rem!important;}
.my-md-auto{margin-top:auto!important;margin-bottom:auto!important;}
.mt-md-0{margin-top:0!important;}
.mt-md-1{margin-top:0.375rem!important;}
.mt-md-2{margin-top:0.75rem!important;}
.mt-md-3{margin-top:1.125rem!important;}
.mt-md-4{margin-top:1.5rem!important;}
.mt-md-5{margin-top:1.875rem!important;}
.mt-md-6{margin-top:2.25rem!important;}
.mt-md-7{margin-top:3rem!important;}
.mt-md-auto{margin-top:auto!important;}
.me-md-0{margin-right:0!important;}
.me-md-1{margin-right:0.375rem!important;}
.me-md-2{margin-right:0.75rem!important;}
.me-md-3{margin-right:1.125rem!important;}
.me-md-4{margin-right:1.5rem!important;}
.me-md-5{margin-right:1.875rem!important;}
.me-md-6{margin-right:2.25rem!important;}
.me-md-7{margin-right:3rem!important;}
.me-md-auto{margin-right:auto!important;}
.mb-md-0{margin-bottom:0!important;}
.mb-md-1{margin-bottom:0.375rem!important;}
.mb-md-2{margin-bottom:0.75rem!important;}
.mb-md-3{margin-bottom:1.125rem!important;}
.mb-md-4{margin-bottom:1.5rem!important;}
.mb-md-5{margin-bottom:1.875rem!important;}
.mb-md-6{margin-bottom:2.25rem!important;}
.mb-md-7{margin-bottom:3rem!important;}
.mb-md-auto{margin-bottom:auto!important;}
.ms-md-0{margin-left:0!important;}
.ms-md-1{margin-left:0.375rem!important;}
.ms-md-2{margin-left:0.75rem!important;}
.ms-md-3{margin-left:1.125rem!important;}
.ms-md-4{margin-left:1.5rem!important;}
.ms-md-5{margin-left:1.875rem!important;}
.ms-md-6{margin-left:2.25rem!important;}
.ms-md-7{margin-left:3rem!important;}
.ms-md-auto{margin-left:auto!important;}
.p-md-0{padding:0!important;}
.p-md-1{padding:0.375rem!important;}
.p-md-2{padding:0.75rem!important;}
.p-md-3{padding:1.125rem!important;}
.p-md-4{padding:1.5rem!important;}
.p-md-5{padding:1.875rem!important;}
.p-md-6{padding:2.25rem!important;}
.p-md-7{padding:3rem!important;}
.px-md-0{padding-right:0!important;padding-left:0!important;}
.px-md-1{padding-right:0.375rem!important;padding-left:0.375rem!important;}
.px-md-2{padding-right:0.75rem!important;padding-left:0.75rem!important;}
.px-md-3{padding-right:1.125rem!important;padding-left:1.125rem!important;}
.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important;}
.px-md-5{padding-right:1.875rem!important;padding-left:1.875rem!important;}
.px-md-6{padding-right:2.25rem!important;padding-left:2.25rem!important;}
.px-md-7{padding-right:3rem!important;padding-left:3rem!important;}
.py-md-0{padding-top:0!important;padding-bottom:0!important;}
.py-md-1{padding-top:0.375rem!important;padding-bottom:0.375rem!important;}
.py-md-2{padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
.py-md-3{padding-top:1.125rem!important;padding-bottom:1.125rem!important;}
.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important;}
.py-md-5{padding-top:1.875rem!important;padding-bottom:1.875rem!important;}
.py-md-6{padding-top:2.25rem!important;padding-bottom:2.25rem!important;}
.py-md-7{padding-top:3rem!important;padding-bottom:3rem!important;}
.pt-md-0{padding-top:0!important;}
.pt-md-1{padding-top:0.375rem!important;}
.pt-md-2{padding-top:0.75rem!important;}
.pt-md-3{padding-top:1.125rem!important;}
.pt-md-4{padding-top:1.5rem!important;}
.pt-md-5{padding-top:1.875rem!important;}
.pt-md-6{padding-top:2.25rem!important;}
.pt-md-7{padding-top:3rem!important;}
.pe-md-0{padding-right:0!important;}
.pe-md-1{padding-right:0.375rem!important;}
.pe-md-2{padding-right:0.75rem!important;}
.pe-md-3{padding-right:1.125rem!important;}
.pe-md-4{padding-right:1.5rem!important;}
.pe-md-5{padding-right:1.875rem!important;}
.pe-md-6{padding-right:2.25rem!important;}
.pe-md-7{padding-right:3rem!important;}
.pb-md-0{padding-bottom:0!important;}
.pb-md-1{padding-bottom:0.375rem!important;}
.pb-md-2{padding-bottom:0.75rem!important;}
.pb-md-3{padding-bottom:1.125rem!important;}
.pb-md-4{padding-bottom:1.5rem!important;}
.pb-md-5{padding-bottom:1.875rem!important;}
.pb-md-6{padding-bottom:2.25rem!important;}
.pb-md-7{padding-bottom:3rem!important;}
.ps-md-0{padding-left:0!important;}
.ps-md-1{padding-left:0.375rem!important;}
.ps-md-2{padding-left:0.75rem!important;}
.ps-md-3{padding-left:1.125rem!important;}
.ps-md-4{padding-left:1.5rem!important;}
.ps-md-5{padding-left:1.875rem!important;}
.ps-md-6{padding-left:2.25rem!important;}
.ps-md-7{padding-left:3rem!important;}
.gap-md-0{gap:0!important;}
.gap-md-1{gap:0.375rem!important;}
.gap-md-2{gap:0.75rem!important;}
.gap-md-3{gap:1.125rem!important;}
.gap-md-4{gap:1.5rem!important;}
.gap-md-5{gap:1.875rem!important;}
.gap-md-6{gap:2.25rem!important;}
.gap-md-7{gap:3rem!important;}
}
@media (min-width:992px) {
.m-lg-0{margin:0!important;}
.m-lg-1{margin:0.375rem!important;}
.m-lg-2{margin:0.75rem!important;}
.m-lg-3{margin:1.125rem!important;}
.m-lg-4{margin:1.5rem!important;}
.m-lg-5{margin:1.875rem!important;}
.m-lg-6{margin:2.25rem!important;}
.m-lg-7{margin:3rem!important;}
.m-lg-auto{margin:auto!important;}
.mx-lg-0{margin-right:0!important;margin-left:0!important;}
.mx-lg-1{margin-right:0.375rem!important;margin-left:0.375rem!important;}
.mx-lg-2{margin-right:0.75rem!important;margin-left:0.75rem!important;}
.mx-lg-3{margin-right:1.125rem!important;margin-left:1.125rem!important;}
.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important;}
.mx-lg-5{margin-right:1.875rem!important;margin-left:1.875rem!important;}
.mx-lg-6{margin-right:2.25rem!important;margin-left:2.25rem!important;}
.mx-lg-7{margin-right:3rem!important;margin-left:3rem!important;}
.mx-lg-auto{margin-right:auto!important;margin-left:auto!important;}
.my-lg-0{margin-top:0!important;margin-bottom:0!important;}
.my-lg-1{margin-top:0.375rem!important;margin-bottom:0.375rem!important;}
.my-lg-2{margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
.my-lg-3{margin-top:1.125rem!important;margin-bottom:1.125rem!important;}
.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important;}
.my-lg-5{margin-top:1.875rem!important;margin-bottom:1.875rem!important;}
.my-lg-6{margin-top:2.25rem!important;margin-bottom:2.25rem!important;}
.my-lg-7{margin-top:3rem!important;margin-bottom:3rem!important;}
.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important;}
.mt-lg-0{margin-top:0!important;}
.mt-lg-1{margin-top:0.375rem!important;}
.mt-lg-2{margin-top:0.75rem!important;}
.mt-lg-3{margin-top:1.125rem!important;}
.mt-lg-4{margin-top:1.5rem!important;}
.mt-lg-5{margin-top:1.875rem!important;}
.mt-lg-6{margin-top:2.25rem!important;}
.mt-lg-7{margin-top:3rem!important;}
.mt-lg-auto{margin-top:auto!important;}
.me-lg-0{margin-right:0!important;}
.me-lg-1{margin-right:0.375rem!important;}
.me-lg-2{margin-right:0.75rem!important;}
.me-lg-3{margin-right:1.125rem!important;}
.me-lg-4{margin-right:1.5rem!important;}
.me-lg-5{margin-right:1.875rem!important;}
.me-lg-6{margin-right:2.25rem!important;}
.me-lg-7{margin-right:3rem!important;}
.me-lg-auto{margin-right:auto!important;}
.mb-lg-0{margin-bottom:0!important;}
.mb-lg-1{margin-bottom:0.375rem!important;}
.mb-lg-2{margin-bottom:0.75rem!important;}
.mb-lg-3{margin-bottom:1.125rem!important;}
.mb-lg-4{margin-bottom:1.5rem!important;}
.mb-lg-5{margin-bottom:1.875rem!important;}
.mb-lg-6{margin-bottom:2.25rem!important;}
.mb-lg-7{margin-bottom:3rem!important;}
.mb-lg-auto{margin-bottom:auto!important;}
.ms-lg-0{margin-left:0!important;}
.ms-lg-1{margin-left:0.375rem!important;}
.ms-lg-2{margin-left:0.75rem!important;}
.ms-lg-3{margin-left:1.125rem!important;}
.ms-lg-4{margin-left:1.5rem!important;}
.ms-lg-5{margin-left:1.875rem!important;}
.ms-lg-6{margin-left:2.25rem!important;}
.ms-lg-7{margin-left:3rem!important;}
.ms-lg-auto{margin-left:auto!important;}
.p-lg-0{padding:0!important;}
.p-lg-1{padding:0.375rem!important;}
.p-lg-2{padding:0.75rem!important;}
.p-lg-3{padding:1.125rem!important;}
.p-lg-4{padding:1.5rem!important;}
.p-lg-5{padding:1.875rem!important;}
.p-lg-6{padding:2.25rem!important;}
.p-lg-7{padding:3rem!important;}
.px-lg-0{padding-right:0!important;padding-left:0!important;}
.px-lg-1{padding-right:0.375rem!important;padding-left:0.375rem!important;}
.px-lg-2{padding-right:0.75rem!important;padding-left:0.75rem!important;}
.px-lg-3{padding-right:1.125rem!important;padding-left:1.125rem!important;}
.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important;}
.px-lg-5{padding-right:1.875rem!important;padding-left:1.875rem!important;}
.px-lg-6{padding-right:2.25rem!important;padding-left:2.25rem!important;}
.px-lg-7{padding-right:3rem!important;padding-left:3rem!important;}
.py-lg-0{padding-top:0!important;padding-bottom:0!important;}
.py-lg-1{padding-top:0.375rem!important;padding-bottom:0.375rem!important;}
.py-lg-2{padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
.py-lg-3{padding-top:1.125rem!important;padding-bottom:1.125rem!important;}
.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important;}
.py-lg-5{padding-top:1.875rem!important;padding-bottom:1.875rem!important;}
.py-lg-6{padding-top:2.25rem!important;padding-bottom:2.25rem!important;}
.py-lg-7{padding-top:3rem!important;padding-bottom:3rem!important;}
.pt-lg-0{padding-top:0!important;}
.pt-lg-1{padding-top:0.375rem!important;}
.pt-lg-2{padding-top:0.75rem!important;}
.pt-lg-3{padding-top:1.125rem!important;}
.pt-lg-4{padding-top:1.5rem!important;}
.pt-lg-5{padding-top:1.875rem!important;}
.pt-lg-6{padding-top:2.25rem!important;}
.pt-lg-7{padding-top:3rem!important;}
.pe-lg-0{padding-right:0!important;}
.pe-lg-1{padding-right:0.375rem!important;}
.pe-lg-2{padding-right:0.75rem!important;}
.pe-lg-3{padding-right:1.125rem!important;}
.pe-lg-4{padding-right:1.5rem!important;}
.pe-lg-5{padding-right:1.875rem!important;}
.pe-lg-6{padding-right:2.25rem!important;}
.pe-lg-7{padding-right:3rem!important;}
.pb-lg-0{padding-bottom:0!important;}
.pb-lg-1{padding-bottom:0.375rem!important;}
.pb-lg-2{padding-bottom:0.75rem!important;}
.pb-lg-3{padding-bottom:1.125rem!important;}
.pb-lg-4{padding-bottom:1.5rem!important;}
.pb-lg-5{padding-bottom:1.875rem!important;}
.pb-lg-6{padding-bottom:2.25rem!important;}
.pb-lg-7{padding-bottom:3rem!important;}
.ps-lg-0{padding-left:0!important;}
.ps-lg-1{padding-left:0.375rem!important;}
.ps-lg-2{padding-left:0.75rem!important;}
.ps-lg-3{padding-left:1.125rem!important;}
.ps-lg-4{padding-left:1.5rem!important;}
.ps-lg-5{padding-left:1.875rem!important;}
.ps-lg-6{padding-left:2.25rem!important;}
.ps-lg-7{padding-left:3rem!important;}
.gap-lg-0{gap:0!important;}
.gap-lg-1{gap:0.375rem!important;}
.gap-lg-2{gap:0.75rem!important;}
.gap-lg-3{gap:1.125rem!important;}
.gap-lg-4{gap:1.5rem!important;}
.gap-lg-5{gap:1.875rem!important;}
.gap-lg-6{gap:2.25rem!important;}
.gap-lg-7{gap:3rem!important;}
}
@media (min-width:1400px) {
.m-xxl-0{margin:0!important;}
.m-xxl-1{margin:0.375rem!important;}
.m-xxl-2{margin:0.75rem!important;}
.m-xxl-3{margin:1.125rem!important;}
.m-xxl-4{margin:1.5rem!important;}
.m-xxl-5{margin:1.875rem!important;}
.m-xxl-6{margin:2.25rem!important;}
.m-xxl-7{margin:3rem!important;}
.m-xxl-auto{margin:auto!important;}
.mx-xxl-0{margin-right:0!important;margin-left:0!important;}
.mx-xxl-1{margin-right:0.375rem!important;margin-left:0.375rem!important;}
.mx-xxl-2{margin-right:0.75rem!important;margin-left:0.75rem!important;}
.mx-xxl-3{margin-right:1.125rem!important;margin-left:1.125rem!important;}
.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important;}
.mx-xxl-5{margin-right:1.875rem!important;margin-left:1.875rem!important;}
.mx-xxl-6{margin-right:2.25rem!important;margin-left:2.25rem!important;}
.mx-xxl-7{margin-right:3rem!important;margin-left:3rem!important;}
.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important;}
.my-xxl-0{margin-top:0!important;margin-bottom:0!important;}
.my-xxl-1{margin-top:0.375rem!important;margin-bottom:0.375rem!important;}
.my-xxl-2{margin-top:0.75rem!important;margin-bottom:0.75rem!important;}
.my-xxl-3{margin-top:1.125rem!important;margin-bottom:1.125rem!important;}
.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important;}
.my-xxl-5{margin-top:1.875rem!important;margin-bottom:1.875rem!important;}
.my-xxl-6{margin-top:2.25rem!important;margin-bottom:2.25rem!important;}
.my-xxl-7{margin-top:3rem!important;margin-bottom:3rem!important;}
.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important;}
.mt-xxl-0{margin-top:0!important;}
.mt-xxl-1{margin-top:0.375rem!important;}
.mt-xxl-2{margin-top:0.75rem!important;}
.mt-xxl-3{margin-top:1.125rem!important;}
.mt-xxl-4{margin-top:1.5rem!important;}
.mt-xxl-5{margin-top:1.875rem!important;}
.mt-xxl-6{margin-top:2.25rem!important;}
.mt-xxl-7{margin-top:3rem!important;}
.mt-xxl-auto{margin-top:auto!important;}
.me-xxl-0{margin-right:0!important;}
.me-xxl-1{margin-right:0.375rem!important;}
.me-xxl-2{margin-right:0.75rem!important;}
.me-xxl-3{margin-right:1.125rem!important;}
.me-xxl-4{margin-right:1.5rem!important;}
.me-xxl-5{margin-right:1.875rem!important;}
.me-xxl-6{margin-right:2.25rem!important;}
.me-xxl-7{margin-right:3rem!important;}
.me-xxl-auto{margin-right:auto!important;}
.mb-xxl-0{margin-bottom:0!important;}
.mb-xxl-1{margin-bottom:0.375rem!important;}
.mb-xxl-2{margin-bottom:0.75rem!important;}
.mb-xxl-3{margin-bottom:1.125rem!important;}
.mb-xxl-4{margin-bottom:1.5rem!important;}
.mb-xxl-5{margin-bottom:1.875rem!important;}
.mb-xxl-6{margin-bottom:2.25rem!important;}
.mb-xxl-7{margin-bottom:3rem!important;}
.mb-xxl-auto{margin-bottom:auto!important;}
.ms-xxl-0{margin-left:0!important;}
.ms-xxl-1{margin-left:0.375rem!important;}
.ms-xxl-2{margin-left:0.75rem!important;}
.ms-xxl-3{margin-left:1.125rem!important;}
.ms-xxl-4{margin-left:1.5rem!important;}
.ms-xxl-5{margin-left:1.875rem!important;}
.ms-xxl-6{margin-left:2.25rem!important;}
.ms-xxl-7{margin-left:3rem!important;}
.ms-xxl-auto{margin-left:auto!important;}
.p-xxl-0{padding:0!important;}
.p-xxl-1{padding:0.375rem!important;}
.p-xxl-2{padding:0.75rem!important;}
.p-xxl-3{padding:1.125rem!important;}
.p-xxl-4{padding:1.5rem!important;}
.p-xxl-5{padding:1.875rem!important;}
.p-xxl-6{padding:2.25rem!important;}
.p-xxl-7{padding:3rem!important;}
.px-xxl-0{padding-right:0!important;padding-left:0!important;}
.px-xxl-1{padding-right:0.375rem!important;padding-left:0.375rem!important;}
.px-xxl-2{padding-right:0.75rem!important;padding-left:0.75rem!important;}
.px-xxl-3{padding-right:1.125rem!important;padding-left:1.125rem!important;}
.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important;}
.px-xxl-5{padding-right:1.875rem!important;padding-left:1.875rem!important;}
.px-xxl-6{padding-right:2.25rem!important;padding-left:2.25rem!important;}
.px-xxl-7{padding-right:3rem!important;padding-left:3rem!important;}
.py-xxl-0{padding-top:0!important;padding-bottom:0!important;}
.py-xxl-1{padding-top:0.375rem!important;padding-bottom:0.375rem!important;}
.py-xxl-2{padding-top:0.75rem!important;padding-bottom:0.75rem!important;}
.py-xxl-3{padding-top:1.125rem!important;padding-bottom:1.125rem!important;}
.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important;}
.py-xxl-5{padding-top:1.875rem!important;padding-bottom:1.875rem!important;}
.py-xxl-6{padding-top:2.25rem!important;padding-bottom:2.25rem!important;}
.py-xxl-7{padding-top:3rem!important;padding-bottom:3rem!important;}
.pt-xxl-0{padding-top:0!important;}
.pt-xxl-1{padding-top:0.375rem!important;}
.pt-xxl-2{padding-top:0.75rem!important;}
.pt-xxl-3{padding-top:1.125rem!important;}
.pt-xxl-4{padding-top:1.5rem!important;}
.pt-xxl-5{padding-top:1.875rem!important;}
.pt-xxl-6{padding-top:2.25rem!important;}
.pt-xxl-7{padding-top:3rem!important;}
.pe-xxl-0{padding-right:0!important;}
.pe-xxl-1{padding-right:0.375rem!important;}
.pe-xxl-2{padding-right:0.75rem!important;}
.pe-xxl-3{padding-right:1.125rem!important;}
.pe-xxl-4{padding-right:1.5rem!important;}
.pe-xxl-5{padding-right:1.875rem!important;}
.pe-xxl-6{padding-right:2.25rem!important;}
.pe-xxl-7{padding-right:3rem!important;}
.pb-xxl-0{padding-bottom:0!important;}
.pb-xxl-1{padding-bottom:0.375rem!important;}
.pb-xxl-2{padding-bottom:0.75rem!important;}
.pb-xxl-3{padding-bottom:1.125rem!important;}
.pb-xxl-4{padding-bottom:1.5rem!important;}
.pb-xxl-5{padding-bottom:1.875rem!important;}
.pb-xxl-6{padding-bottom:2.25rem!important;}
.pb-xxl-7{padding-bottom:3rem!important;}
.ps-xxl-0{padding-left:0!important;}
.ps-xxl-1{padding-left:0.375rem!important;}
.ps-xxl-2{padding-left:0.75rem!important;}
.ps-xxl-3{padding-left:1.125rem!important;}
.ps-xxl-4{padding-left:1.5rem!important;}
.ps-xxl-5{padding-left:1.875rem!important;}
.ps-xxl-6{padding-left:2.25rem!important;}
.ps-xxl-7{padding-left:3rem!important;}
.gap-xxl-0{gap:0!important;}
.gap-xxl-1{gap:0.375rem!important;}
.gap-xxl-2{gap:0.75rem!important;}
.gap-xxl-3{gap:1.125rem!important;}
.gap-xxl-4{gap:1.5rem!important;}
.gap-xxl-5{gap:1.875rem!important;}
.gap-xxl-6{gap:2.25rem!important;}
.gap-xxl-7{gap:3rem!important;}
}