﻿/*--------------------------------------------------------------

 01. ROOT COLORS
 02. 5 COLLUM
 03. GENERAL 
 04. BORDER
 05. MODAL
 06. SHADOW
 07. ALERTS
 08. CARDS
 09. CAROUSEL
 10. TABLES
 11. LIST GROUP
 12. PAGING
 13. FORM CONTROL
 14. BLOCKQUATE
 15. BUTTONS
 16. BREADCRUM
 17. BORDERS
 18. TEXT COLORS
 19. BACKGROUND COLORS
 20. NAVIGATION
 21. TABS
 22. ACCORDIONS
 23. FONTS
 24. SPACE
 
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# ROOT COLORS
--------------------------------------------------------------*/

:root {
    /* Main Color */
    --bs-primary: #4e7ee0;
    --bs-secondary: #aab0bc;
    --bs-success: #64bc8e;
    --bs-info: #5fb7ee;
    --bs-danger: #e7626b;
    --bs-warning: #f5b65c;
    --bs-white: #ffffff;
    --bs-light: #F6F7F7;
    --bs-dark: #222222;
    /* Main Color RGB */
    --bs-primary-rgb: 78, 126, 224;
    --bs-secondary-rgb: 173, 181, 189;
    --bs-success-rgb: 100, 188, 142;
    --bs-info-rgb: 95, 183, 238;
    --bs-danger-rgb: 231, 101, 109;
    --bs-warning-rgb: 245, 182, 92;
    --bs-white-rgb: 255, 255, 255;
    --bs-light-rgb: 246, 247, 247;
    --bs-dark-rgb: 34, 34, 34;
    /* Gray */
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    /* Page Color */
    --bs-body-color: #212529;
    --bs-black: #212529;
    --bs-body-bg: #fff;
    /* Page Color RGB */
    --bs-body-color-rgb: 33, 37, 41;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-bg-rgb: 255, 255, 255;
}
/*--------------------------------------------------------------
# ROOT COLORS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
5 COLLUM
-------------------------------------*/
@media (min-width: 768px) {
    .col-sm-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width: 992px) {
    .col-md-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-lg-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

@media (min-width: 1200px) {
    .col-xl-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}
/*--------------------------------------------------------------
5 COLLUM
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# GENERAL
--------------------------------------------------------------*/
/* a */
a {
    color: var(--bs-primary);
}

    a:hover, a:focus {
        color: var(--bs-secondary);
    }
/* hr */
hr {
    background-color: rgba(164, 174, 198, 0.35);
}
/* Blockquote */
.blockquote {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

/* Bagde */
.badge {
    font-weight: 600;
    border-radius: 0;
}

/* Mark */
.mark, mark {
    padding: 0.2em 0.5rem;
    background-color: #e9ecef;
    font-size: .875em;
    color: #d63384;
    word-wrap: break-word;
    border-radius: 0;
    font-family: var(--bs-font-monospace);
}
/* pre code */
pre code {
    line-height: 1.25;
}
/*--------------------------------------------------------------
# GENERAL
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# BORDER
--------------------------------------------------------------*/
.border {
    border: 1px solid rgba(164, 174, 198, 0.2) !important;
}
/*--------------------------------------------------------------
# BORDER
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# MODAL
--------------------------------------------------------------*/
.modal-backdrop.show, .offcanvas-backdrop.show {
    opacity: .65;
}

.modal-body {
    padding: 1.5rem;
}

.modal-header {
    padding: 1.5rem 1.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.modal-footer {
    padding: 1rem 1.5rem;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.modal-content {
    border-radius: 0;
}

.btn-close-right {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    z-index: 1;
}
/*--------------------------------------------------------------
# MODAL
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SHADOW
--------------------------------------------------------------*/
.shadow {
    box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 9%) !important;
    -webkit-box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 9%) !important;
}
/* shadow small */
.shadow-sm {
    box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 8%) !important;
    -webkit-box-shadow: 0px 2px 10px 0px rgb(0 0 0 / 8%) !important;
}
/* shadow large */
.shadow-lg {
    box-shadow: 0px 4px 20px 0px rgb(0 0 0 / 10%) !important;
    -webkit-box-shadow: 0px 4px 20px 0px rgb(0 0 0 / 10%) !important;
}
/*--------------------------------------------------------------
# SHADOW
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# ALERTS
--------------------------------------------------------------*/
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 0;
}

.alert-link {
    font-weight: 600;
}

.alert i {
    font-size: 1.55rem;
    vertical-align: -0.25rem;
    margin-right: 0.25rem;
}

.alert-primary {
    color: var(--bs-dark-blue);
    background-color: #E0F0FC;
    border-color: transparent;
}

.alert-secondary {
    color: var(--bs-dark-secondary);
    background-color: #e9ecef;
    border-color: transparent;
}

.alert-success {
    color: var(--bs-dark-green);
    background-color: #E8F5E8;
    border-color: transparent;
}

.alert-danger {
    color: var(--bs-dark-red);
    background-color: #FCE7E5;
    border-color: transparent;
}

.alert-warning {
    color: var(--bs-dark-yellow);
    background-color: #FFF6E2;
    border-color: transparent;
}

.alert-info {
    color: var(--bs-dark-sky);
    background-color: #E2F7FA;
    border-color: transparent;
}

.alert-dark {
    color: var(--bs-dark);
    background-color: #dee2e6;
    border-color: transparent;
}

.alert-light {
    color: var(--bs-dark-secondary);
    background-color: #f8f9fa;
    border-color: transparent;
}

.alert-primary .alert-link {
    color: var(--bs-dark-blue);
}

.alert-secondary .alert-link {
    color: var(--bs-dark-gray);
}

.alert-success .alert-link {
    color: var(--bs-dark-green);
}

.alert-danger .alert-link {
    color: var(--bs-dark-red);
}

.alert-warning .alert-link {
    color: var(--bs-dark-yellow);
}

.alert-info .alert-link {
    color: var(--bs-dark-sky);
}

.alert-light .alert-link {
    color: var(--bs-dark-gray);
}

.alert-dark .alert-link {
    color: var(--bs-dark);
}

.alert-dismissible .btn-close {
    padding: 1.55rem 1.5rem;
}

    .alert-dismissible .btn-close:focus {
        box-shadow: none;
    }
/*--------------------------------------------------------------
# ALERTS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CARDS
--------------------------------------------------------------*/
.card {
    border: 1px solid rgba(164, 174, 198, 0.2);
    border-radius: 0;
}

.card-body {
    padding: 1.5rem 1.5rem;
}

.card-header:first-child {
    border-radius: 0;
}

.card-footer {
    padding: 1.5rem 1.5rem;
    border-color: rgba(164, 174, 198, 0.2);
    background-color: #f8f9fa;
}

    .card-footer:last-child {
        border-radius: 0;
    }

.card-header {
    padding: 1.5rem 1.5rem;
    border-color: rgba(164, 174, 198, 0.2);
    background-color: #f8f9fa;
}

.card-img-overlay {
    padding: 1.5rem 1.5rem;
    background-color: rgba(0,0,0,0.35);
    border-radius: 0;
}

.card-img-overlay-0 {
    background-color: rgba(0,0,0,0) !important;
}

.card-img, .card-img-bottom {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.card-img, .card-img-top {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
/*--------------------------------------------------------------
# CARDS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# CAROUSEL
--------------------------------------------------------------*/
.carousel-indicators {
    margin-bottom: 1.5rem;
}

    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        border-top: unset;
        border-bottom: unset;
        transition: all .3s ease;
        border-radius: 4rem;
        opacity: 0.35;
    }

    .carousel-indicators .active {
        opacity: 1;
        width: 32px;
    }
/*--------------------------------------------------------------
# CAROUSEL
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TABLES
--------------------------------------------------------------*/
.table {
    border-color: #edeff3;
    --bs-table-striped-bg: #f7f7f8;
}

    .table th {
        font-weight: 600;
        position: relative;
    }

    .table > :not(caption) > * > * {
        padding: 0.75rem 1rem;
    }

    .table > :not(:first-child) {
        border-top: 2px solid var(--bs-gray-400);
    }

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bs-gray-100);
}

.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: var(--bs-gray-200);
}
/*--------------------------------------------------------------
# TABLES
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# LIST GROUP
--------------------------------------------------------------*/
.list-group-item {
    border: 1px solid rgba(164, 174, 198, 0.2);
}
/*--------------------------------------------------------------
# LIST GROUP
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# PAGING
--------------------------------------------------------------*/
.page-item .page-link {
    color: var(--bs-primary);
    min-width: 2.5rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

    .page-item .page-link:focus,
    .page-item .page-link:hover {
        outline: none;
        box-shadow: none;
        background-color: var(--bs-gray-100);
    }

.page-item.active .page-link {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.page-next-back .page-item .page-link {
    border-radius: 0;
    margin: 0 0.5rem;
}

.page-load-more .page-item .page-link {
    border-radius: 0;
}

.page-load-more.pagination-background .page-item .page-link {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
    transition: all 0.35s ease-in-out;
}

    .page-load-more.pagination-background .page-item .page-link:hover {
        opacity: 0.85;
    }

.page-load-more.pagination-background .page-item.disabled .page-link {
    background: var(--bs-gray-300);
    border-color: var(--bs-gray-300);
    color: var(--bs-gray-600);
}
/*--------------------------------------------------------------
# PAGING
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# FORM CONTROL
--------------------------------------------------------------*/
.form-control, .form-select {
    border: 1px solid rgb(231 231 232);
    box-shadow: 0rem 0rem 1.25rem rgb(30 34 40 / 4%);
    border-radius: 0 !important;
}

    .form-control:focus,
    .form-select:focus {
        outline: 0;
        box-shadow: unset;
        border-color: var(--bs-primary);
        border-width: 1px;
        border-style: solid;
    }

    .form-control::-moz-placeholder {
        color: #959ca9;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #959ca9;
        opacity: 1;
    }

    .form-control::placeholder {
        color: #959ca9;
        opacity: 1;
    }

.form-floating > label {
    padding: 0.85rem 0.75rem;
    color: #949baa;
}

.input-group-text {
    border: 1px solid rgba(164, 174, 198, 0.2);
}

.input-group i.las,
.input-group i.la,
.input-group i.lar {
    font-size: 1.25rem;
    vertical-align: -0.105rem;
}

.input-group-sm i.las,
.input-group-sm i.la,
.input-group-sm i.lar {
    font-size: 1rem;
    vertical-align: -0.05rem;
}

.input-group-sm > .btn,
.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text {
    border-radius: 0;
}

.input-group-lg i.las,
.input-group-lg i.la,
.input-group-lg i.lar {
    font-size: 1.55rem;
    vertical-align: -0.115rem;
}

.input-group-lg > .btn,
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text {
    border-radius: 0;
}

.input-group-text {
    border-radius: 0;
}

.invalid-feedback {
    color: #e2626b;
}

.form-control.is-invalid,
.was-validated .form-control:invalid,
.form-select.is-invalid,
.was-validated .form-select:invalid {
    border-color: #e2626b;
}

    .form-control.is-invalid:focus,
    .was-validated .form-control:invalid:focus,
    .form-select.is-invalid:focus,
    .was-validated .form-select:invalid:focus {
        outline: 0;
        box-shadow: unset;
        border-color: #eba9ae;
        border-width: 1px;
        border-style: solid;
    }

.form-control.is-valid,
.was-validated .form-control:valid,
.form-select.is-valid,
.was-validated .form-select:valid {
    border-color: #45c4a0;
}

    .form-control.is-valid:focus,
    .was-validated .form-control:valid:focus,
    .form-select.is-valid:focus,
    .was-validated .form-select:valid:focus {
        outline: 0;
        box-shadow: unset;
        border-color: #a4e1d0;
        border-width: 1px;
        border-style: solid;
    }

/* Checkbox */
.form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.25em;
    vertical-align: top;
    border: 1px solid rgba(164, 174, 198, 0.2);
    transition: all ease-in-out 0.35s;
    margin-right: 0.55rem;
}

    .form-check-input[type=checkbox] {
        border-radius: 0;
        box-shadow: 0rem 0rem 1.25rem rgb(30 34 40 / 4%);
    }

.form-switch .form-check-input[type=checkbox] {
    border-radius: 0;
}

.form-check-input:focus {
    outline: 0;
    box-shadow: unset;
    border-color: var(--bs-primary);
    border-width: 1px;
    border-style: solid;
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
    border-color: #45c4a0;
}

    .form-check-input.is-valid:checked,
    .was-validated .form-check-input:valid:checked {
        background-color: #45c4a0;
        border-color: #45c4a0;
    }

    .form-check-input.is-valid ~ .form-check-label,
    .was-validated .form-check-input:valid ~ .form-check-label {
        color: #45c4a0;
    }

    .form-check-input.is-valid:focus,
    .was-validated .form-check-input:valid:focus {
        outline: 0;
        box-shadow: unset;
        border-color: #45c4a0;
        border-width: 1px;
        border-style: solid;
    }

/*--------------------------------------------------------------
# FORM CONTROL
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# BLOCKQUATE
--------------------------------------------------------------*/
.blockquote-footer {
    margin-top: -0.5rem;
    color: var(--bs-secondary);
}
/*--------------------------------------------------------------
# BLOCKQUATE
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/
/* Button custome */
.btn {
    transition: all 0.2s ease-in-out;
    border-radius: 0 !important;
    font-weight: 300;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
}

.btn-lg {
    border-radius: 0;
}

.btn-group-lg > .btn, .btn-lg {
    font-size: 1.15rem;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover,
.btn:focus,
.btn-check:focus + .btn {
    box-shadow: none;
    outline: 0;
}

.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active,
.show > .btn.dropdown-toggle {
    box-shadow: none;
    outline: 0;
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65;
    box-shadow: none;
}

.btn.btn-block.btn-play {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.2rem;
}

    .btn.btn-block.btn-play i {
        margin-left: 0.15rem;
    }

.btn.btn-circle {
    padding: 0;
    border-radius: 100% !important;
    width: 2.3rem;
    height: 2.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    line-height: 1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

    .btn.btn-circle:disabled,
    .btn.btn-circle.disabled,
    fieldset:disabled .btn.btn-circle {
        opacity: 1;
    }

    .btn.btn-circle.btn-sm,
    .btn-group-sm > .btn.btn-circle {
        width: 1.8rem;
        height: 1.8rem;
        font-size: 0.8rem;
    }

        .btn.btn-circle.btn-sm i,
        .btn-group-sm > .btn.btn-circle i {
            font-size: 0.85rem;
        }

    .btn.btn-circle.btn-lg,
    .btn-group-lg > .btn.btn-circle {
        width: 3rem;
        height: 3rem;
        font-size: calc(1.255rem + 0.06vw);
    }

@media (min-width: 1200px) {

    .btn.btn-circle.btn-lg,
    .btn-group-lg > .btn.btn-circle {
        font-size: 1.3rem;
    }
}

.input-group .btn:hover {
    transform: none;
}

button:focus {
    outline: 0;
}

/* Button white */
.btn-white {
    color: var(--bs-body-color);
    background-color: var(--bs-white);
    border-color: var(--bs-white);
}

    .btn-white:hover {
        color: var(--bs-gray);
        background-color: var(--bs-white);
        border-color: var(--bs-white);
    }

    .btn-check:focus + .btn-white,
    .btn-white:focus {
        color: var(--bs-gray);
        background-color: var(--bs-white);
        border-color: var(--bs-white);
    }

    .btn-check:checked + .btn-white,
    .btn-check:active + .btn-white,
    .btn-white:active,
    .btn-white.active,
    .show > .btn-white.dropdown-toggle {
        color: var(--bs-gray);
        background-color: var(--bs-white);
        border-color: var(--bs-white);
    }

    .btn-white:disabled:not(.btn-circle):not(.btn-block),
    .btn-white.disabled:not(.btn-circle):not(.btn-block) {
        color: var(--bs-body-color);
        background-color: var(--bs-white);
        border-color: var(--bs-white);
        opacity: 0.75;
    }

/* Button outline white */
.btn-outline-white {
    color: var(--bs-white);
    border-color: var(--bs-white);
}

    .btn-outline-white:hover {
        color: var(--bs-body-color);
        background-color: var(--bs-white);
        border-color: var(--bs-white);
    }

    .btn-check:focus + .btn-outline-white,
    .btn-outline-white:focus {
        color: var(--bs-body-color);
        background-color: var(--bs-white);
        border-color: var(--bs-white);
    }

    .btn-check:checked + .btn-outline-white,
    .btn-check:active + .btn-outline-white,
    .btn-outline-white:active,
    .btn-outline-white.active,
    .btn-outline-white.dropdown-toggle.show {
        color: var(--bs-body-color);
        background-color: var(--bs-white);
        border-color: var(--bs-white);
    }

        .btn-check:checked + .btn-outline-white:focus,
        .btn-check:active + .btn-outline-white:focus,
        .btn-outline-white:active:focus,
        .btn-outline-white.active:focus,
        .btn-outline-white.dropdown-toggle.show:focus {
            color: var(--bs-body-color);
            background-color: var(--bs-white);
            border-color: var(--bs-white);
        }

    .btn-outline-white:disabled,
    .btn-outline-white.disabled {
        color: var(--bs-white);
        border-color: var(--bs-white);
        opacity: 0.75;
    }

/* Button light */
.btn-light {
    color: var(--bs-gray);
    background-color: var(--bs-light);
    border-color: var(--bs-light);
}

    .btn-light:hover {
        color: var(--bs-white);
        background-color: var(--bs-gray);
        border-color: var(--bs-gray);
    }

    .btn-check:focus + .btn-light,
    .btn-light:focus {
        color: var(--bs-white);
        background-color: var(--bs-gray);
        border-color: var(--bs-gray);
    }

    .btn-check:checked + .btn-light,
    .btn-check:active + .btn-light,
    .btn-light:active,
    .btn-light.active,
    .show > .btn-light.dropdown-toggle {
        color: var(--bs-white);
        background-color: var(--bs-gray);
        border-color: var(--bs-gray);
    }

    .btn-light:disabled:not(.btn-circle):not(.btn-block),
    .btn-light.disabled:not(.btn-circle):not(.btn-block) {
        color: var(--bs-gray);
        background-color: var(--bs-light);
        border-color: var(--bs-light);
        opacity: 0.75;
    }

/* Button outline light */
.btn-outline-light {
    color: var(--bs-gray);
    border-color: var(--bs-light);
}

    .btn-outline-light:hover {
        color: var(--bs-gray);
        background-color: var(--bs-light);
        border-color: var(--bs-light);
    }

    .btn-check:focus + .btn-outline-light,
    .btn-outline-light:focus {
        color: var(--bs-gray);
        background-color: var(--bs-light);
        border-color: var(--bs-light);
    }

    .btn-check:checked + .btn-outline-light,
    .btn-check:active + .btn-outline-light,
    .btn-outline-light:active,
    .btn-outline-light.active,
    .btn-outline-light.dropdown-toggle.show {
        color: var(--bs-gray);
        background-color: var(--bs-light);
        border-color: var(--bs-light);
    }

        .btn-check:checked + .btn-outline-light:focus,
        .btn-check:active + .btn-outline-light:focus,
        .btn-outline-light:active:focus,
        .btn-outline-light.active:focus,
        .btn-outline-light.dropdown-toggle.show:focus {
            color: var(--bs-gray);
            background-color: var(--bs-light);
            border-color: var(--bs-light);
        }

    .btn-outline-light:disabled,
    .btn-outline-light.disabled {
        color: var(--bs-gray);
        border-color: var(--bs-light);
        opacity: 0.75;
    }

/* Button dark */
.btn-dark {
    background-color: #262b32;
    border-color: #262b32;
}

    .btn-dark:hover {
        background-color: #262b32;
        border-color: #262b32;
    }

    .btn-check:focus + .btn-dark,
    .btn-dark:focus {
        background-color: #262b32;
        border-color: #262b32;
    }

    .btn-check:checked + .btn-dark,
    .btn-check:active + .btn-dark,
    .btn-dark:active,
    .btn-dark.active,
    .show > .btn-dark.dropdown-toggle {
        background-color: #262b32;
        border-color: #21262c;
    }

    .btn-dark:disabled:not(.btn-circle):not(.btn-block),
    .btn-dark.disabled:not(.btn-circle):not(.btn-block) {
        color: var(--bs-white);
        background-color: #262b32;
        border-color: #262b32;
    }

/* Button outline dark */
.btn-outline-dark {
    color: #262b32;
    border-color: #262b32;
}

    .btn-outline-dark:hover {
        background-color: #262b32;
        border-color: #262b32;
    }

    .btn-check:focus + .btn-outline-dark,
    .btn-outline-dark:focus {
        box-shadow: none;
    }

    .btn-check:checked + .btn-outline-dark,
    .btn-check:active + .btn-outline-dark,
    .btn-outline-dark:active,
    .btn-outline-dark.active,
    .btn-outline-dark.dropdown-toggle.show {
        color: #262b32;
        background-color: #262b32;
        border-color: #262b32;
    }

        .btn-check:checked + .btn-outline-dark:focus,
        .btn-check:active + .btn-outline-dark:focus,
        .btn-outline-dark:active:focus,
        .btn-outline-dark.active:focus,
        .btn-outline-dark.dropdown-toggle.show:focus {
            box-shadow: 0;
        }

    .btn-outline-dark:disabled,
    .btn-outline-dark.disabled {
        color: #262b32;
        background-color: transparent;
    }

/* Button primary */
.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

    .btn-primary:hover {
        background-color: var(--bs-dark-primary);
        border-color: var(--bs-dark-primary);
    }

    .btn-check:focus + .btn-primary,
    .btn-primary:focus {
        background-color: var(--bs-dark-primary);
        border-color: var(--bs-dark-primary);
    }

    .btn-check:checked + .btn-primary,
    .btn-check:active + .btn-primary,
    .btn-primary:active,
    .btn-primary.active,
    .show > .btn-primary.dropdown-toggle {
        background-color: var(--bs-dark-primary);
        border-color: var(--bs-dark-primary);
    }

    .btn-primary:disabled:not(.btn-circle):not(.btn-block),
    .btn-primary.disabled:not(.btn-circle):not(.btn-block) {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        opacity: 0.75;
    }

/* Button outline primary */
.btn-outline-primary {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        color: var(--bs-white);
    }

    .btn-check:focus + .btn-outline-primary,
    .btn-outline-primary:focus {
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
        color: var(--bs-white);
    }

    .btn-check:checked + .btn-outline-primary,
    .btn-check:active + .btn-outline-primary,
    .btn-outline-primary:active,
    .btn-outline-primary.active,
    .btn-outline-primary.dropdown-toggle.show {
        color: var(--bs-white);
        background-color: var(--bs-primary);
        border-color: var(--bs-primary);
    }

        .btn-check:checked + .btn-outline-primary:focus,
        .btn-check:active + .btn-outline-primary:focus,
        .btn-outline-primary:active:focus,
        .btn-outline-primary.active:focus,
        .btn-outline-primary.dropdown-toggle.show:focus {
            color: var(--bs-white);
            background-color: var(--bs-primary);
            border-color: var(--bs-primary);
        }

    .btn-outline-primary:disabled,
    .btn-outline-primary.disabled {
        opacity: 0.75;
        color: var(--bs-primary);
        border-color: var(--bs-primary);
    }

/* Button secondary */
.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

    .btn-secondary:hover {
        background-color: var(--bs-gray-600);
        border-color: var(--bs-gray-600);
    }

    .btn-check:focus + .btn-secondary,
    .btn-secondary:focus {
        background-color: var(--bs-gray-600);
        border-color: var(--bs-gray-600);
    }

    .btn-check:checked + .btn-secondary,
    .btn-check:active + .btn-secondary,
    .btn-secondary:active,
    .btn-secondary.active,
    .show > .btn-secondary.dropdown-toggle {
        background-color: var(--bs-gray-600);
        border-color: var(--bs-gray-600);
    }

    .btn-secondary:disabled:not(.btn-circle):not(.btn-block),
    .btn-secondary.disabled:not(.btn-circle):not(.btn-block) {
        opacity: 0.75;
        background-color: var(--bs-secondary);
        border-color: var(--bs-secondary);
    }

/* Button outline secondary */
.btn-outline-secondary {
    color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

    .btn-outline-secondary:hover {
        background-color: var(--bs-dark-gray);
        border-color: var(--bs-dark-gray);
        color: var(--bs-white);
    }

    .btn-check:focus + .btn-outline-secondary,
    .btn-outline-secondary:focus {
        background-color: var(--bs-dark-gray);
        border-color: var(--bs-dark-gray);
        color: var(--bs-white);
    }

    .btn-check:checked + .btn-outline-secondary,
    .btn-check:active + .btn-outline-secondary,
    .btn-outline-secondary:active,
    .btn-outline-secondary.active,
    .btn-outline-secondary.dropdown-toggle.show {
        background-color: var(--bs-dark-gray);
        border-color: var(--bs-dark-gray);
        color: var(--bs-white);
    }

        .btn-check:checked + .btn-outline-secondary:focus,
        .btn-check:active + .btn-outline-secondary:focus,
        .btn-outline-secondary:active:focus,
        .btn-outline-secondary.active:focus,
        .btn-outline-secondary.dropdown-toggle.show:focus {
            background-color: var(--bs-dark-gray);
            border-color: var(--bs-dark-gray);
            color: var(--bs-white);
        }

    .btn-outline-secondary:disabled,
    .btn-outline-secondary.disabled {
        opacity: 0.75;
        color: var(--bs-secondary);
        border-color: var(--bs-secondary);
    }

/* Button success */
.btn-success {
    background-color: var(--bs-success);
    border-color: var(--bs-success);
}

    .btn-success:hover {
        background-color: var(--bs-dark-green);
        border-color: var(--bs-dark-green);
    }

    .btn-check:focus + .btn-success,
    .btn-success:focus {
        background-color: var(--bs-dark-green);
        border-color: var(--bs-dark-green);
    }

    .btn-check:checked + .btn-success,
    .btn-check:active + .btn-success,
    .btn-success:active,
    .btn-success.active,
    .show > .btn-success.dropdown-toggle {
        background-color: var(--bs-dark-green);
        border-color: var(--bs-dark-green);
    }

    .btn-success:disabled:not(.btn-circle):not(.btn-block),
    .btn-success.disabled:not(.btn-circle):not(.btn-block) {
        background-color: var(--bs-success);
        border-color: var(--bs-success);
        opacity: 0.75;
    }

/* Button outline success */
.btn-outline-success {
    color: var(--bs-success);
    border-color: var(--bs-success);
}

    .btn-outline-success:hover {
        color: var(--bs-white);
        background-color: var(--bs-success);
        border-color: var(--bs-success);
    }

    .btn-check:focus + .btn-outline-success,
    .btn-outline-success:focus {
        color: var(--bs-white);
        background-color: var(--bs-success);
        border-color: var(--bs-success);
    }

    .btn-check:checked + .btn-outline-success,
    .btn-check:active + .btn-outline-success,
    .btn-outline-success:active,
    .btn-outline-success.active,
    .btn-outline-success.dropdown-toggle.show {
        color: var(--bs-white);
        background-color: var(--bs-success);
        border-color: var(--bs-success);
    }

        .btn-check:checked + .btn-outline-success:focus,
        .btn-check:active + .btn-outline-success:focus,
        .btn-outline-success:active:focus,
        .btn-outline-success.active:focus,
        .btn-outline-success.dropdown-toggle.show:focus {
            color: var(--bs-white);
            background-color: var(--bs-success);
            border-color: var(--bs-success);
        }

    .btn-outline-success:disabled,
    .btn-outline-success.disabled {
        opacity: 0.75;
        color: var(--bs-success);
        border-color: var(--bs-success);
    }

/* Button info */
.btn-info {
    color: var(--bs-white);
    background-color: var(--bs-info);
    border-color: var(--bs-info);
}

    .btn-info:hover {
        color: var(--bs-white);
        background-color: var(--bs-dark-sky);
        border-color: var(--bs-dark-sky);
    }

    .btn-check:focus + .btn-info,
    .btn-info:focus {
        color: var(--bs-white);
        background-color: var(--bs-dark-sky);
        border-color: var(--bs-dark-sky);
    }

    .btn-check:checked + .btn-info,
    .btn-check:active + .btn-info,
    .btn-info:active,
    .btn-info.active,
    .show > .btn-info.dropdown-toggle {
        color: var(--bs-white);
        background-color: var(--bs-dark-sky);
        border-color: var(--bs-dark-sky);
    }

    .btn-info:disabled:not(.btn-circle):not(.btn-block),
    .btn-info.disabled:not(.btn-circle):not(.btn-block) {
        color: var(--bs-white);
        opacity: 0.75;
        color: var(--bs-info);
        border-color: var(--bs-info);
    }

/* Button outline info */
.btn-outline-info {
    color: var(--bs-info);
    border-color: var(--bs-info);
}

    .btn-outline-info:hover {
        color: var(--bs-white);
        background-color: var(--bs-info);
        border-color: var(--bs-info);
    }

    .btn-check:focus + .btn-outline-info,
    .btn-outline-info:focus {
        color: var(--bs-white);
        background-color: var(--bs-info);
        border-color: var(--bs-info);
    }

    .btn-check:checked + .btn-outline-info,
    .btn-check:active + .btn-outline-info,
    .btn-outline-info:active,
    .btn-outline-info.active,
    .btn-outline-info.dropdown-toggle.show {
        color: var(--bs-white);
        background-color: var(--bs-info);
        border-color: var(--bs-info);
    }

        .btn-check:checked + .btn-outline-info:focus,
        .btn-check:active + .btn-outline-info:focus,
        .btn-outline-info:active:focus,
        .btn-outline-info.active:focus,
        .btn-outline-info.dropdown-toggle.show:focus {
            color: var(--bs-white);
            background-color: var(--bs-info);
            border-color: var(--bs-info);
        }

    .btn-outline-info:disabled,
    .btn-outline-info.disabled {
        color: var(--bs-info);
        border-color: var(--bs-info);
        opacity: 0.75;
    }

/* Button warning */
.btn-warning {
    color: var(--bs-white);
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
}

    .btn-warning:hover {
        color: var(--bs-white);
        background-color: var(--bs-dark-yellow);
        border-color: var(--bs-dark-yellow);
    }

    .btn-check:focus + .btn-warning,
    .btn-warning:focus {
        color: var(--bs-white);
        background-color: var(--bs-dark-yellow);
        border-color: var(--bs-dark-yellow);
    }

    .btn-check:checked + .btn-warning,
    .btn-check:active + .btn-warning,
    .btn-warning:active,
    .btn-warning.active,
    .show > .btn-warning.dropdown-toggle {
        color: var(--bs-white);
        background-color: var(--bs-dark-yellow);
        border-color: var(--bs-dark-yellow);
    }

    .btn-warning:disabled:not(.btn-circle):not(.btn-block),
    .btn-warning.disabled:not(.btn-circle):not(.btn-block) {
        color: var(--bs-white);
        background-color: var(--bs-warning);
        border-color: var(--bs-warning);
        opacity: 0.75;
    }

/* Button outline warning */
.btn-outline-warning {
    color: var(--bs-yellow);
    border-color: var(--bs-yellow);
}

    .btn-outline-warning:hover {
        color: var(--bs-white);
        background-color: var(--bs-yellow);
        border-color: var(--bs-yellow);
    }

    .btn-check:focus + .btn-outline-warning,
    .btn-outline-warning:focus {
        color: var(--bs-white);
        background-color: var(--bs-yellow);
        border-color: var(--bs-yellow);
    }

    .btn-check:checked + .btn-outline-warning,
    .btn-check:active + .btn-outline-warning,
    .btn-outline-warning:active,
    .btn-outline-warning.active,
    .btn-outline-warning.dropdown-toggle.show {
        color: var(--bs-white);
        background-color: var(--bs-yellow);
        border-color: var(--bs-yellow);
    }

        .btn-check:checked + .btn-outline-warning:focus,
        .btn-check:active + .btn-outline-warning:focus,
        .btn-outline-warning:active:focus,
        .btn-outline-warning.active:focus,
        .btn-outline-warning.dropdown-toggle.show:focus {
            color: var(--bs-white);
            background-color: var(--bs-yellow);
            border-color: var(--bs-yellow);
        }

    .btn-outline-warning:disabled,
    .btn-outline-warning.disabled {
        color: var(--bs-yellow);
        border-color: var(--bs-yellow);
        opacity: 0.75;
    }

/* Button danger */
.btn-danger {
    background-color: var(--bs-danger);
    border-color: var(--bs-danger);
}

    .btn-danger:hover {
        background-color: var(--bs-dark-red);
        border-color: var(--bs-dark-red);
    }

    .btn-check:focus + .btn-danger,
    .btn-danger:focus {
        background-color: var(--bs-dark-red);
        border-color: var(--bs-dark-red);
    }

    .btn-check:checked + .btn-danger,
    .btn-check:active + .btn-danger,
    .btn-danger:active,
    .btn-danger.active,
    .show > .btn-danger.dropdown-toggle {
        background-color: var(--bs-dark-red);
        border-color: var(--bs-dark-red);
    }

    .btn-danger:disabled:not(.btn-circle):not(.btn-block),
    .btn-danger.disabled:not(.btn-circle):not(.btn-block) {
        background-color: var(--bs-danger);
        border-color: var(--bs-danger);
        opacity: 0.75;
    }

/* Button outline danger */
.btn-outline-danger {
    color: var(--bs-danger);
    border-color: var(--bs-danger);
}

    .btn-outline-danger:hover {
        color: var(--bs-white);
        background-color: var(--bs-danger);
        border-color: var(--bs-danger);
    }

    .btn-check:focus + .btn-outline-danger,
    .btn-outline-danger:focus {
        color: var(--bs-white);
        background-color: var(--bs-danger);
        border-color: var(--bs-danger);
    }

    .btn-check:checked + .btn-outline-danger,
    .btn-check:active + .btn-outline-danger,
    .btn-outline-danger:active,
    .btn-outline-danger.active,
    .btn-outline-danger.dropdown-toggle.show {
        color: var(--bs-white);
        background-color: var(--bs-danger);
        border-color: var(--bs-danger);
    }

        .btn-check:checked + .btn-outline-danger:focus,
        .btn-check:active + .btn-outline-danger:focus,
        .btn-outline-danger:active:focus,
        .btn-outline-danger.active:focus,
        .btn-outline-danger.dropdown-toggle.show:focus {
            color: var(--bs-white);
            background-color: var(--bs-danger);
            border-color: var(--bs-danger);
        }

    .btn-outline-danger:disabled,
    .btn-outline-danger.disabled {
        opacity: 0.75;
        color: var(--bs-danger);
        border-color: var(--bs-danger);
    }

/* Button link */
.btn-link {
    color: var(--bs-primary);
    text-decoration: none;
}

    .btn-link:hover {
        color: var(--bs-secondary);
    }

/* Button Close */
.btn-close:focus {
    outline: 0;
    box-shadow: none;
}
/*--------------------------------------------------------------
# BUTTONS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# BREADCRUM
--------------------------------------------------------------*/
.breadcrumb {
    font-size: 90%
}

.breadcrumb-item + .breadcrumb-item::before {
    font-size: 80%;
    margin-top: 0.2rem;
}

.breadcrumb.breadcrumb-dots .breadcrumb-item + .breadcrumb-item::before {
    content: '•';
}

.breadcrumb.breadcrumb-bg-light {
    padding: 1rem;
    background: #e9ecef;
}

.breadcrumb.breadcrumb-bg-black {
    padding: 1rem;
    background: #495057;
    color: #aab0bc;
}

    .breadcrumb.breadcrumb-bg-black .breadcrumb-item.active {
        color: #aab0bc;
    }

    .breadcrumb.breadcrumb-bg-black a {
        color: var(--bs-white);
    }

        .breadcrumb.breadcrumb-bg-black a:hover,
        .breadcrumb.breadcrumb-bg-black a:focus {
            color: #fe4848;
        }

/*--------------------------------------------------------------
# BREADCRUM
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# BORDERS
--------------------------------------------------------------*/
/* Border Standard color */
.border-white {
    border-color: var(--bs-white) !important;
}

.border-light {
    border-color: #edeff4 !important;
}

.border-dark {
    border-color: var(--bs-dark) !important;
}

.border-primary {
    border-color: var(--bs-primary) !important;
}

.border-secondary {
    border-color: var(--bs-secondary) !important;
}

.border-success {
    border-color: var(--bs-success) !important;
}

.border-info {
    border-color: var(--bs-info) !important;
}

.border-warning {
    border-color: var(--bs-warning) !important;
}

.border-danger {
    border-color: var(--bs-danger) !important;
}

/* Border Size */
.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;
}
/*--------------------------------------------------------------
# BORDERS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# TEXT COLORS
--------------------------------------------------------------*/
/* Text Standard Color */
.text-white {
    color: #fff !important;
}

.text-light {
    color: var(--bs-light) !important;
}

.text-dark {
    color: var(--bs-dark) !important;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.text-success {
    color: var(--bs-success) !important;
}

.text-info {
    color: var(--bs-info) !important;
}

.text-warning {
    color: var(--bs-warning) !important;
}

.text-danger {
    color: var(--bs-danger) !important;
}

/* Text Light Colors */
text-light-primary {
    color: #e0e9fa !important;
}
/*--------------------------------------------------------------
# TEXT COLORS
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# BACKGROUND COLORS
--------------------------------------------------------------*/
/* Background Light Colors */
.bg-light-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-primary-rgb), var(--bs-bg-opacity)) !important;
}

/* Background Lighter Colors */
.bg-lighter-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-lighter-primary-rgb), var(--bs-bg-opacity)) !important;
}
/*--------------------------------------------------------------
# BACKGROUND COLORS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# NAVIGATION
--------------------------------------------------------------*/
.nav.nav-padding-0 li a {
    padding: 0;
    margin-right: 1.5rem;
}

.nav li .nav-link.disabled {
    color: var(--bs-gray-500);
}

.nav li .nav-link.active {
    color: var(--bs-dark);
}

.nav.rounded, .nav.rounded li a {
    border-radius: 0;
}

.nav.nav-border li a {
    border: 1px solid rgba(164, 174, 198, 0.2);
    margin-right: 0.5rem;
    color: var(--bs-dark);
    box-shadow: 0rem 0rem 1.25rem rgb(30 34 40 / 4%);
    border-radius: 0;
}

    .nav.nav-border li a:hover {
        color: var(--bs-gray-600);
    }

    .nav.nav-border li a.disabled {
        color: var(--bs-gray-500);
    }

    .nav.nav-border li a.active {
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

.nav.nav-border li:last-child a {
    margin-right: 0;
}

.nav.nav-background li a {
    background: var(--bs-gray-100);
    margin-right: 0.5rem;
    color: var(--bs-dark);
    border-radius: 0;
}

    .nav.nav-background li a:hover {
        color: var(--bs-gray-600);
    }


    .nav.nav-background li a.disabled {
        color: var(--bs-gray-500);
    }

    .nav.nav-background li a.active {
        background: var(--bs-primary);
        color: var(--bs-white);
    }

.nav.nav-background li:last-child a {
    margin-right: 0;
}
/*--------------------------------------------------------------
# NAVIGATION
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# TABS
--------------------------------------------------------------*/
.nav-link {
    color: var(--bs-primary);
}

.nav.nav-tab-text .nav-item {
    margin-right: 2rem;
}

    .nav.nav-tab-text .nav-item:last-child {
        margin-right: 0;
    }

.nav.nav-tab-text .nav-link {
    padding: 0 0;
    font-weight: 600;
    color: #343f52;
}

    .nav.nav-tab-text .nav-link:hover,
    .nav.nav-tab-text .nav-link:focus {
        color: #6c757d;
    }

    .nav.nav-tab-text .nav-link.active {
        color: var(--bs-primary);
    }

.nav.nav-tabs {
    border-bottom: 1px solid rgba(164, 174, 198, 0.2);
}

    .nav.nav-tabs .nav-link {
        color: var(--bs-primary);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .nav.nav-tabs .nav-item {
        margin-right: 0.5rem;
    }

        .nav.nav-tabs .nav-item:last-child {
            margin-right: 0;
        }


    .nav.nav-tabs .nav-link {
        padding: 1rem 2rem;
        color: #343f52;
        background-color: #f8f9fa;
        border-bottom-color: rgba(164, 174, 198, 0.2);
        font-weight: 600;
        font-family: 'Raleway', sans-serif;
    }

        .nav.nav-tabs .nav-link:hover,
        .nav.nav-tabs .nav-link:focus {
            color: #6c757d;
        }

        .nav.nav-tabs .nav-link.active {
            color: var(--bs-primary);
            background-color: transparent;
        }

        .nav.nav-tabs .nav-item.show .nav-link,
        .nav.nav-tabs .nav-link.active {
            border-color: rgba(164, 174, 198, 0.2) rgba(164, 174, 198, 0.2) #fff;
        }

@media(max-width: 575.98px) {
    .nav.nav-tab-text,
    .nav.nav-tabs {
        display: block;
    }

        .nav.nav-tab-text .nav-item,
        .nav.nav-tabs .nav-item {
            margin-right: 0;
            margin-bottom: 0.5rem;
        }

            .nav.nav-tab-text .nav-item .nav-link,
            .nav.nav-tabs .nav-item .nav-link {
                width: 100%;
            }

    .nav.nav-tabs {
        border-bottom-color: transparent;
    }

        .nav.nav-tabs .nav-link {
            border-width: 0;
            border-radius: 0;
        }
}
/*--------------------------------------------------------------
# TABS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# ACCORDIONS
--------------------------------------------------------------*/
/* Genral */
.accordion {
    border-radius: 0;
}

.accordion-button i {
    margin-right: 0.25rem;
}

.accordion-button:focus {
    border-color: var(--bs-gray-200);
    box-shadow: none;
}

.accordion-item {
    border: 1px solid var(--bs-gray-200);
}

.accordion-button {
    padding: 1rem 1.5rem;
    color: #343f52;
    font-weight: 500;
}

    .accordion-button:hover {
        color: #6c757d;
    }

    .accordion-button:not(.collapsed) {
        color: var(--bs-primary);
        background-color: var(--bs-gray-100);
        box-shadow: inset 0 -1px 0 var(--bs-gray-200);
    }

.accordion-item:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

    .accordion-item:first-of-type .accordion-button {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.accordion-item:last-of-type {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

    .accordion-item:last-of-type .accordion-collapse {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .accordion-item:last-of-type .accordion-button.collapsed {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

.accordion-button::after {
    content: "\f067";
    background-image: none;
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 1.35rem;
    line-height: 1;
    transition: 0.35s all;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f068";
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 1.25rem 1.5rem;
}

/* Gap */
.accordion-gap .accordion-item {
    margin-bottom: 1rem;
    border-radius: 0;
}

    .accordion-gap .accordion-item:not(:first-of-type) {
        border-top: 1px solid var(--bs-gray-200);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .accordion-gap .accordion-item .accordion-button.collapsed {
        border-radius: 0;
    }

    .accordion-gap .accordion-item .accordion-button:not(.collapsed) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

/* Gap Outline */
.accordion-gap.accordion-gap-outline .accordion-body {
    padding: 0 1.25rem 1.5rem 1.25rem;
}

.accordion-gap.accordion-gap-outline .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: inset 0 -1px 0 var(--bs-gray-200);
    box-shadow: none;
}
/* No Border */
.accordion-no-border .accordion-body {
    padding: 0 0 1.15rem 0;
}

.accordion-no-border .accordion-item {
    border: 0;
    border-bottom: 1px solid var(--bs-gray-200);
}

    .accordion-no-border .accordion-item:last-child {
        border-bottom: 0;
    }

    .accordion-no-border .accordion-item .accordion-button {
        padding: 1rem 0;
    }

.accordion-no-border .accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
}
/*--------------------------------------------------------------
# ACCORDIONS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# FONTS
--------------------------------------------------------------*/
/* Font weight bold */
.fw-bold-1 {
    font-weight: 500 !important;
}

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

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

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

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

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

/* Font weight light */
.fw-light-1 {
    font-weight: 300 !important;
}

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

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

/* Font Size */
.fs-sm {
    font-size: 0.75rem !important;
}

.fs-lg {
    font-size: 1.05rem !important;
}

.fs-1 {
    font-size: 0.05rem !important;
}

.fs-2 {
    font-size: 0.1rem !important;
}

.fs-3 {
    font-size: 0.15rem !important;
}

.fs-4 {
    font-size: 0.2rem !important;
}

.fs-5 {
    font-size: 0.25rem !important;
}

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

.fs-7 {
    font-size: 0.35rem !important;
}

.fs-8 {
    font-size: 0.4rem !important;
}

.fs-9 {
    font-size: 0.45rem !important;
}

.fs-10 {
    font-size: 0.5rem !important;
}

.fs-11 {
    font-size: 0.55rem !important;
}

.fs-12 {
    font-size: 0.6rem !important;
}

.fs-13 {
    font-size: 0.65rem !important;
}

.fs-14 {
    font-size: 0.7rem !important;
}

.fs-15 {
    font-size: 0.75rem !important;
}

.fs-16 {
    font-size: 0.8rem !important;
}

.fs-17 {
    font-size: 0.85rem !important;
}

.fs-18 {
    font-size: 0.9rem !important;
}

.fs-19 {
    font-size: 0.95rem !important;
}

.fs-20 {
    font-size: 1rem !important;
}

.fs-21 {
    font-size: 1.05rem !important;
}

.fs-22 {
    font-size: 1.1rem !important;
}

.fs-23 {
    font-size: 1.15rem !important;
}

.fs-24 {
    font-size: 1.2rem !important;
}

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

.fs-26 {
    font-size: calc(1.255rem + 0.06vw) !important;
}

@media (min-width: 1200px) {
    .fs-26 {
        font-size: 1.3rem !important;
    }
}

.fs-27 {
    font-size: calc(1.26rem + 0.12vw) !important;
}

@media (min-width: 1200px) {
    .fs-27 {
        font-size: 1.35rem !important;
    }
}

.fs-28 {
    font-size: calc(1.265rem + 0.18vw) !important;
}

@media (min-width: 1200px) {
    .fs-28 {
        font-size: 1.4rem !important;
    }
}

.fs-29 {
    font-size: calc(1.27rem + 0.24vw) !important;
}

@media (min-width: 1200px) {
    .fs-29 {
        font-size: 1.45rem !important;
    }
}

.fs-30 {
    font-size: calc(1.275rem + 0.3vw) !important;
}

@media (min-width: 1200px) {
    .fs-30 {
        font-size: 1.5rem !important;
    }
}

.fs-31 {
    font-size: calc(1.28rem + 0.36vw) !important;
}

@media (min-width: 1200px) {
    .fs-31 {
        font-size: 1.55rem !important;
    }
}

.fs-32 {
    font-size: calc(1.285rem + 0.42vw) !important;
}

@media (min-width: 1200px) {
    .fs-32 {
        font-size: 1.6rem !important;
    }
}

.fs-33 {
    font-size: calc(1.29rem + 0.48vw) !important;
}

@media (min-width: 1200px) {
    .fs-33 {
        font-size: 1.65rem !important;
    }
}

.fs-34 {
    font-size: calc(1.295rem + 0.54vw) !important;
}

@media (min-width: 1200px) {
    .fs-34 {
        font-size: 1.7rem !important;
    }
}

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

@media (min-width: 1200px) {
    .fs-35 {
        font-size: 1.75rem !important;
    }
}

.fs-36 {
    font-size: calc(1.305rem + 0.66vw) !important;
}

@media (min-width: 1200px) {
    .fs-36 {
        font-size: 1.8rem !important;
    }
}

.fs-37 {
    font-size: calc(1.31rem + 0.72vw) !important;
}

@media (min-width: 1200px) {
    .fs-37 {
        font-size: 1.85rem !important;
    }
}

.fs-38 {
    font-size: calc(1.315rem + 0.78vw) !important;
}

@media (min-width: 1200px) {
    .fs-38 {
        font-size: 1.9rem !important;
    }
}

.fs-39 {
    font-size: calc(1.32rem + 0.84vw) !important;
}

@media (min-width: 1200px) {
    .fs-39 {
        font-size: 1.95rem !important;
    }
}

.fs-40 {
    font-size: calc(1.325rem + 0.9vw) !important;
}

@media (min-width: 1200px) {
    .fs-40 {
        font-size: 2rem !important;
    }
}

.fs-41 {
    font-size: calc(1.33rem + 0.96vw) !important;
}

@media (min-width: 1200px) {
    .fs-41 {
        font-size: 2.05rem !important;
    }
}

.fs-42 {
    font-size: calc(1.335rem + 1.02vw) !important;
}

@media (min-width: 1200px) {
    .fs-42 {
        font-size: 2.1rem !important;
    }
}

.fs-43 {
    font-size: calc(1.34rem + 1.08vw) !important;
}

@media (min-width: 1200px) {
    .fs-43 {
        font-size: 2.15rem !important;
    }
}

.fs-44 {
    font-size: calc(1.345rem + 1.14vw) !important;
}

@media (min-width: 1200px) {
    .fs-44 {
        font-size: 2.2rem !important;
    }
}

.fs-45 {
    font-size: calc(1.35rem + 1.2vw) !important;
}

@media (min-width: 1200px) {
    .fs-45 {
        font-size: 2.25rem !important;
    }
}

.fs-46 {
    font-size: calc(1.355rem + 1.26vw) !important;
}

@media (min-width: 1200px) {
    .fs-46 {
        font-size: 2.3rem !important;
    }
}

.fs-47 {
    font-size: calc(1.36rem + 1.32vw) !important;
}

@media (min-width: 1200px) {
    .fs-47 {
        font-size: 2.35rem !important;
    }
}

.fs-48 {
    font-size: calc(1.365rem + 1.38vw) !important;
}

@media (min-width: 1200px) {
    .fs-48 {
        font-size: 2.4rem !important;
    }
}

.fs-49 {
    font-size: calc(1.37rem + 1.44vw) !important;
}

@media (min-width: 1200px) {
    .fs-49 {
        font-size: 2.45rem !important;
    }
}

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

@media (min-width: 1200px) {
    .fs-50 {
        font-size: 2.5rem !important;
    }
}

.fs-51 {
    font-size: calc(1.38rem + 1.56vw) !important;
}

@media (min-width: 1200px) {
    .fs-51 {
        font-size: 2.55rem !important;
    }
}

.fs-52 {
    font-size: calc(1.385rem + 1.62vw) !important;
}

@media (min-width: 1200px) {
    .fs-52 {
        font-size: 2.6rem !important;
    }
}

.fs-53 {
    font-size: calc(1.39rem + 1.68vw) !important;
}

@media (min-width: 1200px) {
    .fs-53 {
        font-size: 2.65rem !important;
    }
}

.fs-54 {
    font-size: calc(1.395rem + 1.74vw) !important;
}

@media (min-width: 1200px) {
    .fs-54 {
        font-size: 2.7rem !important;
    }
}

.fs-55 {
    font-size: calc(1.4rem + 1.8vw) !important;
}

@media (min-width: 1200px) {
    .fs-55 {
        font-size: 2.75rem !important;
    }
}

.fs-56 {
    font-size: calc(1.405rem + 1.86vw) !important;
}

@media (min-width: 1200px) {
    .fs-56 {
        font-size: 2.8rem !important;
    }
}

.fs-57 {
    font-size: calc(1.41rem + 1.92vw) !important;
}

@media (min-width: 1200px) {
    .fs-57 {
        font-size: 2.85rem !important;
    }
}

.fs-58 {
    font-size: calc(1.415rem + 1.98vw) !important;
}

@media (min-width: 1200px) {
    .fs-58 {
        font-size: 2.9rem !important;
    }
}

.fs-59 {
    font-size: calc(1.42rem + 2.04vw) !important;
}

@media (min-width: 1200px) {
    .fs-59 {
        font-size: 2.95rem !important;
    }
}

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

@media (min-width: 1200px) {
    .fs-60 {
        font-size: 3rem !important;
    }
}

.fs-61 {
    font-size: calc(1.43rem + 2.16vw) !important;
}

@media (min-width: 1200px) {
    .fs-61 {
        font-size: 3.05rem !important;
    }
}

.fs-62 {
    font-size: calc(1.435rem + 2.22vw) !important;
}

@media (min-width: 1200px) {
    .fs-62 {
        font-size: 3.1rem !important;
    }
}

.fs-63 {
    font-size: calc(1.44rem + 2.28vw) !important;
}

@media (min-width: 1200px) {
    .fs-63 {
        font-size: 3.15rem !important;
    }
}

.fs-64 {
    font-size: calc(1.445rem + 2.34vw) !important;
}

@media (min-width: 1200px) {
    .fs-64 {
        font-size: 3.2rem !important;
    }
}

.fs-65 {
    font-size: calc(1.45rem + 2.4vw) !important;
}

@media (min-width: 1200px) {
    .fs-65 {
        font-size: 3.25rem !important;
    }
}

.fs-66 {
    font-size: calc(1.455rem + 2.46vw) !important;
}

@media (min-width: 1200px) {
    .fs-66 {
        font-size: 3.3rem !important;
    }
}

.fs-67 {
    font-size: calc(1.46rem + 2.52vw) !important;
}

@media (min-width: 1200px) {
    .fs-67 {
        font-size: 3.35rem !important;
    }
}

.fs-68 {
    font-size: calc(1.465rem + 2.58vw) !important;
}

@media (min-width: 1200px) {
    .fs-68 {
        font-size: 3.4rem !important;
    }
}

.fs-69 {
    font-size: calc(1.47rem + 2.64vw) !important;
}

@media (min-width: 1200px) {
    .fs-69 {
        font-size: 3.45rem !important;
    }
}

.fs-70 {
    font-size: calc(1.475rem + 2.7vw) !important;
}

@media (min-width: 1200px) {
    .fs-70 {
        font-size: 3.5rem !important;
    }
}

.fs-71 {
    font-size: calc(1.48rem + 2.76vw) !important;
}

@media (min-width: 1200px) {
    .fs-71 {
        font-size: 3.55rem !important;
    }
}

.fs-72 {
    font-size: calc(1.485rem + 2.82vw) !important;
}

@media (min-width: 1200px) {
    .fs-72 {
        font-size: 3.6rem !important;
    }
}

.fs-73 {
    font-size: calc(1.49rem + 2.88vw) !important;
}

@media (min-width: 1200px) {
    .fs-73 {
        font-size: 3.65rem !important;
    }
}

.fs-74 {
    font-size: calc(1.495rem + 2.94vw) !important;
}

@media (min-width: 1200px) {
    .fs-74 {
        font-size: 3.7rem !important;
    }
}

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

@media (min-width: 1200px) {
    .fs-75 {
        font-size: 3.75rem !important;
    }
}

.fs-76 {
    font-size: calc(1.505rem + 3.06vw) !important;
}

@media (min-width: 1200px) {
    .fs-76 {
        font-size: 3.8rem !important;
    }
}

.fs-77 {
    font-size: calc(1.51rem + 3.12vw) !important;
}

@media (min-width: 1200px) {
    .fs-77 {
        font-size: 3.85rem !important;
    }
}

.fs-78 {
    font-size: calc(1.515rem + 3.18vw) !important;
}

@media (min-width: 1200px) {
    .fs-78 {
        font-size: 3.9rem !important;
    }
}

.fs-79 {
    font-size: calc(1.52rem + 3.24vw) !important;
}

@media (min-width: 1200px) {
    .fs-79 {
        font-size: 3.95rem !important;
    }
}

.fs-80 {
    font-size: calc(1.525rem + 3.3vw) !important;
}

@media (min-width: 1200px) {
    .fs-80 {
        font-size: 4rem !important;
    }
}

.fs-81 {
    font-size: calc(1.53rem + 3.36vw) !important;
}

@media (min-width: 1200px) {
    .fs-81 {
        font-size: 4.05rem !important;
    }
}

.fs-82 {
    font-size: calc(1.535rem + 3.42vw) !important;
}

@media (min-width: 1200px) {
    .fs-82 {
        font-size: 4.1rem !important;
    }
}

.fs-83 {
    font-size: calc(1.54rem + 3.48vw) !important;
}

@media (min-width: 1200px) {
    .fs-83 {
        font-size: 4.15rem !important;
    }
}

.fs-84 {
    font-size: calc(1.545rem + 3.54vw) !important;
}

@media (min-width: 1200px) {
    .fs-84 {
        font-size: 4.2rem !important;
    }
}

.fs-85 {
    font-size: calc(1.55rem + 3.6vw) !important;
}

@media (min-width: 1200px) {
    .fs-85 {
        font-size: 4.25rem !important;
    }
}

.fs-86 {
    font-size: calc(1.555rem + 3.66vw) !important;
}

@media (min-width: 1200px) {
    .fs-86 {
        font-size: 4.3rem !important;
    }
}

.fs-87 {
    font-size: calc(1.56rem + 3.72vw) !important;
}

@media (min-width: 1200px) {
    .fs-87 {
        font-size: 4.35rem !important;
    }
}

.fs-88 {
    font-size: calc(1.565rem + 3.78vw) !important;
}

@media (min-width: 1200px) {
    .fs-88 {
        font-size: 4.4rem !important;
    }
}

.fs-89 {
    font-size: calc(1.57rem + 3.84vw) !important;
}

@media (min-width: 1200px) {
    .fs-89 {
        font-size: 4.45rem !important;
    }
}

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

@media (min-width: 1200px) {
    .fs-90 {
        font-size: 4.5rem !important;
    }
}

.fs-91 {
    font-size: calc(1.58rem + 3.96vw) !important;
}

@media (min-width: 1200px) {
    .fs-91 {
        font-size: 4.55rem !important;
    }
}

.fs-92 {
    font-size: calc(1.585rem + 4.02vw) !important;
}

@media (min-width: 1200px) {
    .fs-92 {
        font-size: 4.6rem !important;
    }
}

.fs-93 {
    font-size: calc(1.59rem + 4.08vw) !important;
}

@media (min-width: 1200px) {
    .fs-93 {
        font-size: 4.65rem !important;
    }
}

.fs-94 {
    font-size: calc(1.595rem + 4.14vw) !important;
}

@media (min-width: 1200px) {
    .fs-94 {
        font-size: 4.7rem !important;
    }
}

.fs-95 {
    font-size: calc(1.6rem + 4.2vw) !important;
}

@media (min-width: 1200px) {
    .fs-95 {
        font-size: 4.75rem !important;
    }
}

.fs-96 {
    font-size: calc(1.605rem + 4.26vw) !important;
}

@media (min-width: 1200px) {
    .fs-96 {
        font-size: 4.8rem !important;
    }
}

.fs-97 {
    font-size: calc(1.61rem + 4.32vw) !important;
}

@media (min-width: 1200px) {
    .fs-97 {
        font-size: 4.85rem !important;
    }
}

.fs-98 {
    font-size: calc(1.615rem + 4.38vw) !important;
}

@media (min-width: 1200px) {
    .fs-98 {
        font-size: 4.9rem !important;
    }
}

.fs-99 {
    font-size: calc(1.62rem + 4.44vw) !important;
}

@media (min-width: 1200px) {
    .fs-99 {
        font-size: 4.95rem !important;
    }
}

.fs-100 {
    font-size: calc(1.625rem + 4.5vw) !important;
}

@media (min-width: 1200px) {
    .fs-100 {
        font-size: 5rem !important;
    }
}

.fs-101 {
    font-size: calc(1.63rem + 4.56vw) !important;
}

@media (min-width: 1200px) {
    .fs-101 {
        font-size: 5.05rem !important;
    }
}

.fs-102 {
    font-size: calc(1.635rem + 4.62vw) !important;
}

@media (min-width: 1200px) {
    .fs-102 {
        font-size: 5.1rem !important;
    }
}

.fs-103 {
    font-size: calc(1.64rem + 4.68vw) !important;
}

@media (min-width: 1200px) {
    .fs-103 {
        font-size: 5.15rem !important;
    }
}

.fs-104 {
    font-size: calc(1.645rem + 4.74vw) !important;
}

@media (min-width: 1200px) {
    .fs-104 {
        font-size: 5.2rem !important;
    }
}

.fs-105 {
    font-size: calc(1.65rem + 4.8vw) !important;
}

@media (min-width: 1200px) {
    .fs-105 {
        font-size: 5.25rem !important;
    }
}

.fs-106 {
    font-size: calc(1.655rem + 4.86vw) !important;
}

@media (min-width: 1200px) {
    .fs-106 {
        font-size: 5.3rem !important;
    }
}

.fs-107 {
    font-size: calc(1.66rem + 4.92vw) !important;
}

@media (min-width: 1200px) {
    .fs-107 {
        font-size: 5.35rem !important;
    }
}

.fs-108 {
    font-size: calc(1.665rem + 4.98vw) !important;
}

@media (min-width: 1200px) {
    .fs-108 {
        font-size: 5.4rem !important;
    }
}

.fs-109 {
    font-size: calc(1.67rem + 5.04vw) !important;
}

@media (min-width: 1200px) {
    .fs-109 {
        font-size: 5.45rem !important;
    }
}

.fs-110 {
    font-size: calc(1.675rem + 5.1vw) !important;
}

@media (min-width: 1200px) {
    .fs-110 {
        font-size: 5.5rem !important;
    }
}

.fs-111 {
    font-size: calc(1.68rem + 5.16vw) !important;
}

@media (min-width: 1200px) {
    .fs-111 {
        font-size: 5.55rem !important;
    }
}

.fs-112 {
    font-size: calc(1.685rem + 5.22vw) !important;
}

@media (min-width: 1200px) {
    .fs-112 {
        font-size: 5.6rem !important;
    }
}

.fs-113 {
    font-size: calc(1.69rem + 5.28vw) !important;
}

@media (min-width: 1200px) {
    .fs-113 {
        font-size: 5.65rem !important;
    }
}

.fs-114 {
    font-size: calc(1.695rem + 5.34vw) !important;
}

@media (min-width: 1200px) {
    .fs-114 {
        font-size: 5.7rem !important;
    }
}

.fs-115 {
    font-size: calc(1.7rem + 5.4vw) !important;
}

@media (min-width: 1200px) {
    .fs-115 {
        font-size: 5.75rem !important;
    }
}

.fs-116 {
    font-size: calc(1.705rem + 5.46vw) !important;
}

@media (min-width: 1200px) {
    .fs-116 {
        font-size: 5.8rem !important;
    }
}

.fs-117 {
    font-size: calc(1.71rem + 5.52vw) !important;
}

@media (min-width: 1200px) {
    .fs-117 {
        font-size: 5.85rem !important;
    }
}

.fs-118 {
    font-size: calc(1.715rem + 5.58vw) !important;
}

@media (min-width: 1200px) {
    .fs-118 {
        font-size: 5.9rem !important;
    }
}

.fs-119 {
    font-size: calc(1.72rem + 5.64vw) !important;
}

@media (min-width: 1200px) {
    .fs-119 {
        font-size: 5.95rem !important;
    }
}

.fs-120 {
    font-size: calc(1.725rem + 5.7vw) !important;
}

@media (min-width: 1200px) {
    .fs-120 {
        font-size: 6rem !important;
    }
}

.fs-121 {
    font-size: calc(1.73rem + 5.76vw) !important;
}

@media (min-width: 1200px) {
    .fs-121 {
        font-size: 6.05rem !important;
    }
}

.fs-122 {
    font-size: calc(1.735rem + 5.82vw) !important;
}

@media (min-width: 1200px) {
    .fs-122 {
        font-size: 6.1rem !important;
    }
}

.fs-123 {
    font-size: calc(1.74rem + 5.88vw) !important;
}

@media (min-width: 1200px) {
    .fs-123 {
        font-size: 6.15rem !important;
    }
}

.fs-124 {
    font-size: calc(1.745rem + 5.94vw) !important;
}

@media (min-width: 1200px) {
    .fs-124 {
        font-size: 6.2rem !important;
    }
}

.fs-125 {
    font-size: calc(1.75rem + 6vw) !important;
}

@media (min-width: 1200px) {
    .fs-125 {
        font-size: 6.25rem !important;
    }
}

.fs-126 {
    font-size: calc(1.755rem + 6.06vw) !important;
}

@media (min-width: 1200px) {
    .fs-126 {
        font-size: 6.3rem !important;
    }
}

.fs-127 {
    font-size: calc(1.76rem + 6.12vw) !important;
}

@media (min-width: 1200px) {
    .fs-127 {
        font-size: 6.35rem !important;
    }
}

.fs-128 {
    font-size: calc(1.765rem + 6.18vw) !important;
}

@media (min-width: 1200px) {
    .fs-128 {
        font-size: 6.4rem !important;
    }
}

.fs-129 {
    font-size: calc(1.77rem + 6.24vw) !important;
}

@media (min-width: 1200px) {
    .fs-129 {
        font-size: 6.45rem !important;
    }
}

.fs-130 {
    font-size: calc(1.775rem + 6.3vw) !important;
}

@media (min-width: 1200px) {
    .fs-130 {
        font-size: 6.5rem !important;
    }
}

.fs-131 {
    font-size: calc(1.78rem + 6.36vw) !important;
}

@media (min-width: 1200px) {
    .fs-131 {
        font-size: 6.55rem !important;
    }
}

.fs-132 {
    font-size: calc(1.785rem + 6.42vw) !important;
}

@media (min-width: 1200px) {
    .fs-132 {
        font-size: 6.6rem !important;
    }
}

.fs-133 {
    font-size: calc(1.79rem + 6.48vw) !important;
}

@media (min-width: 1200px) {
    .fs-133 {
        font-size: 6.65rem !important;
    }
}

.fs-134 {
    font-size: calc(1.795rem + 6.54vw) !important;
}

@media (min-width: 1200px) {
    .fs-134 {
        font-size: 6.7rem !important;
    }
}

.fs-135 {
    font-size: calc(1.8rem + 6.6vw) !important;
}

@media (min-width: 1200px) {
    .fs-135 {
        font-size: 6.75rem !important;
    }
}

.fs-136 {
    font-size: calc(1.805rem + 6.66vw) !important;
}

@media (min-width: 1200px) {
    .fs-136 {
        font-size: 6.8rem !important;
    }
}

.fs-137 {
    font-size: calc(1.81rem + 6.72vw) !important;
}

@media (min-width: 1200px) {
    .fs-137 {
        font-size: 6.85rem !important;
    }
}

.fs-138 {
    font-size: calc(1.815rem + 6.78vw) !important;
}

@media (min-width: 1200px) {
    .fs-138 {
        font-size: 6.9rem !important;
    }
}

.fs-139 {
    font-size: calc(1.82rem + 6.84vw) !important;
}

@media (min-width: 1200px) {
    .fs-139 {
        font-size: 6.95rem !important;
    }
}

.fs-140 {
    font-size: calc(1.825rem + 6.9vw) !important;
}

@media (min-width: 1200px) {
    .fs-140 {
        font-size: 7rem !important;
    }
}

.fs-141 {
    font-size: calc(1.83rem + 6.96vw) !important;
}

@media (min-width: 1200px) {
    .fs-141 {
        font-size: 7.05rem !important;
    }
}

.fs-142 {
    font-size: calc(1.835rem + 7.02vw) !important;
}

@media (min-width: 1200px) {
    .fs-142 {
        font-size: 7.1rem !important;
    }
}

.fs-143 {
    font-size: calc(1.84rem + 7.08vw) !important;
}

@media (min-width: 1200px) {
    .fs-143 {
        font-size: 7.15rem !important;
    }
}

.fs-144 {
    font-size: calc(1.845rem + 7.14vw) !important;
}

@media (min-width: 1200px) {
    .fs-144 {
        font-size: 7.2rem !important;
    }
}

.fs-145 {
    font-size: calc(1.85rem + 7.2vw) !important;
}

@media (min-width: 1200px) {
    .fs-145 {
        font-size: 7.25rem !important;
    }
}

.fs-146 {
    font-size: calc(1.855rem + 7.26vw) !important;
}

@media (min-width: 1200px) {
    .fs-146 {
        font-size: 7.3rem !important;
    }
}

.fs-147 {
    font-size: calc(1.86rem + 7.32vw) !important;
}

@media (min-width: 1200px) {
    .fs-147 {
        font-size: 7.35rem !important;
    }
}

.fs-148 {
    font-size: calc(1.865rem + 7.38vw) !important;
}

@media (min-width: 1200px) {
    .fs-148 {
        font-size: 7.4rem !important;
    }
}

.fs-149 {
    font-size: calc(1.87rem + 7.44vw) !important;
}

@media (min-width: 1200px) {
    .fs-149 {
        font-size: 7.45rem !important;
    }
}

.fs-150 {
    font-size: calc(1.875rem + 7.5vw) !important;
}

@media (min-width: 1200px) {
    .fs-150 {
        font-size: 7.5rem !important;
    }
}

.fs-151 {
    font-size: calc(1.88rem + 7.56vw) !important;
}

@media (min-width: 1200px) {
    .fs-151 {
        font-size: 7.55rem !important;
    }
}

.fs-152 {
    font-size: calc(1.885rem + 7.62vw) !important;
}

@media (min-width: 1200px) {
    .fs-152 {
        font-size: 7.6rem !important;
    }
}

.fs-153 {
    font-size: calc(1.89rem + 7.68vw) !important;
}

@media (min-width: 1200px) {
    .fs-153 {
        font-size: 7.65rem !important;
    }
}

.fs-154 {
    font-size: calc(1.895rem + 7.74vw) !important;
}

@media (min-width: 1200px) {
    .fs-154 {
        font-size: 7.7rem !important;
    }
}

.fs-155 {
    font-size: calc(1.9rem + 7.8vw) !important;
}

@media (min-width: 1200px) {
    .fs-155 {
        font-size: 7.75rem !important;
    }
}

.fs-156 {
    font-size: calc(1.905rem + 7.86vw) !important;
}

@media (min-width: 1200px) {
    .fs-156 {
        font-size: 7.8rem !important;
    }
}

.fs-157 {
    font-size: calc(1.91rem + 7.92vw) !important;
}

@media (min-width: 1200px) {
    .fs-157 {
        font-size: 7.85rem !important;
    }
}

.fs-158 {
    font-size: calc(1.915rem + 7.98vw) !important;
}

@media (min-width: 1200px) {
    .fs-158 {
        font-size: 7.9rem !important;
    }
}

.fs-159 {
    font-size: calc(1.92rem + 8.04vw) !important;
}

@media (min-width: 1200px) {
    .fs-159 {
        font-size: 7.95rem !important;
    }
}

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

@media (min-width: 1200px) {
    .fs-160 {
        font-size: 8rem !important;
    }
}

.fs-161 {
    font-size: calc(1.93rem + 8.16vw) !important;
}

@media (min-width: 1200px) {
    .fs-161 {
        font-size: 8.05rem !important;
    }
}

.fs-162 {
    font-size: calc(1.935rem + 8.22vw) !important;
}

@media (min-width: 1200px) {
    .fs-162 {
        font-size: 8.1rem !important;
    }
}

.fs-163 {
    font-size: calc(1.94rem + 8.28vw) !important;
}

@media (min-width: 1200px) {
    .fs-163 {
        font-size: 8.15rem !important;
    }
}

.fs-164 {
    font-size: calc(1.945rem + 8.34vw) !important;
}

@media (min-width: 1200px) {
    .fs-164 {
        font-size: 8.2rem !important;
    }
}

.fs-165 {
    font-size: calc(1.95rem + 8.4vw) !important;
}

@media (min-width: 1200px) {
    .fs-165 {
        font-size: 8.25rem !important;
    }
}

.fs-166 {
    font-size: calc(1.955rem + 8.46vw) !important;
}

@media (min-width: 1200px) {
    .fs-166 {
        font-size: 8.3rem !important;
    }
}

.fs-167 {
    font-size: calc(1.96rem + 8.52vw) !important;
}

@media (min-width: 1200px) {
    .fs-167 {
        font-size: 8.35rem !important;
    }
}

.fs-168 {
    font-size: calc(1.965rem + 8.58vw) !important;
}

@media (min-width: 1200px) {
    .fs-168 {
        font-size: 8.4rem !important;
    }
}

.fs-169 {
    font-size: calc(1.97rem + 8.64vw) !important;
}

@media (min-width: 1200px) {
    .fs-169 {
        font-size: 8.45rem !important;
    }
}

.fs-170 {
    font-size: calc(1.975rem + 8.7vw) !important;
}

@media (min-width: 1200px) {
    .fs-170 {
        font-size: 8.5rem !important;
    }
}

.fs-171 {
    font-size: calc(1.98rem + 8.76vw) !important;
}

@media (min-width: 1200px) {
    .fs-171 {
        font-size: 8.55rem !important;
    }
}

.fs-172 {
    font-size: calc(1.985rem + 8.82vw) !important;
}

@media (min-width: 1200px) {
    .fs-172 {
        font-size: 8.6rem !important;
    }
}

.fs-173 {
    font-size: calc(1.99rem + 8.88vw) !important;
}

@media (min-width: 1200px) {
    .fs-173 {
        font-size: 8.65rem !important;
    }
}

.fs-174 {
    font-size: calc(1.995rem + 8.94vw) !important;
}

@media (min-width: 1200px) {
    .fs-174 {
        font-size: 8.7rem !important;
    }
}

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

@media (min-width: 1200px) {
    .fs-175 {
        font-size: 8.75rem !important;
    }
}

.fs-176 {
    font-size: calc(2.005rem + 9.06vw) !important;
}

@media (min-width: 1200px) {
    .fs-176 {
        font-size: 8.8rem !important;
    }
}

.fs-177 {
    font-size: calc(2.01rem + 9.12vw) !important;
}

@media (min-width: 1200px) {
    .fs-177 {
        font-size: 8.85rem !important;
    }
}

.fs-178 {
    font-size: calc(2.015rem + 9.18vw) !important;
}

@media (min-width: 1200px) {
    .fs-178 {
        font-size: 8.9rem !important;
    }
}

.fs-179 {
    font-size: calc(2.02rem + 9.24vw) !important;
}

@media (min-width: 1200px) {
    .fs-179 {
        font-size: 8.95rem !important;
    }
}

.fs-180 {
    font-size: calc(2.025rem + 9.3vw) !important;
}

@media (min-width: 1200px) {
    .fs-180 {
        font-size: 9rem !important;
    }
}

.fs-181 {
    font-size: calc(2.03rem + 9.36vw) !important;
}

@media (min-width: 1200px) {
    .fs-181 {
        font-size: 9.05rem !important;
    }
}

.fs-182 {
    font-size: calc(2.035rem + 9.42vw) !important;
}

@media (min-width: 1200px) {
    .fs-182 {
        font-size: 9.1rem !important;
    }
}

.fs-183 {
    font-size: calc(2.04rem + 9.48vw) !important;
}

@media (min-width: 1200px) {
    .fs-183 {
        font-size: 9.15rem !important;
    }
}

.fs-184 {
    font-size: calc(2.045rem + 9.54vw) !important;
}

@media (min-width: 1200px) {
    .fs-184 {
        font-size: 9.2rem !important;
    }
}

.fs-185 {
    font-size: calc(2.05rem + 9.6vw) !important;
}

@media (min-width: 1200px) {
    .fs-185 {
        font-size: 9.25rem !important;
    }
}

.fs-186 {
    font-size: calc(2.055rem + 9.66vw) !important;
}

@media (min-width: 1200px) {
    .fs-186 {
        font-size: 9.3rem !important;
    }
}

.fs-187 {
    font-size: calc(2.06rem + 9.72vw) !important;
}

@media (min-width: 1200px) {
    .fs-187 {
        font-size: 9.35rem !important;
    }
}

.fs-188 {
    font-size: calc(2.065rem + 9.78vw) !important;
}

@media (min-width: 1200px) {
    .fs-188 {
        font-size: 9.4rem !important;
    }
}

.fs-189 {
    font-size: calc(2.07rem + 9.84vw) !important;
}

@media (min-width: 1200px) {
    .fs-189 {
        font-size: 9.45rem !important;
    }
}

.fs-190 {
    font-size: calc(2.075rem + 9.9vw) !important;
}

@media (min-width: 1200px) {
    .fs-190 {
        font-size: 9.5rem !important;
    }
}

.fs-191 {
    font-size: calc(2.08rem + 9.96vw) !important;
}

@media (min-width: 1200px) {
    .fs-191 {
        font-size: 9.55rem !important;
    }
}

.fs-192 {
    font-size: calc(2.085rem + 10.02vw) !important;
}

@media (min-width: 1200px) {
    .fs-192 {
        font-size: 9.6rem !important;
    }
}

.fs-193 {
    font-size: calc(2.09rem + 10.08vw) !important;
}

@media (min-width: 1200px) {
    .fs-193 {
        font-size: 9.65rem !important;
    }
}

.fs-194 {
    font-size: calc(2.095rem + 10.14vw) !important;
}

@media (min-width: 1200px) {
    .fs-194 {
        font-size: 9.7rem !important;
    }
}

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

@media (min-width: 1200px) {
    .fs-195 {
        font-size: 9.75rem !important;
    }
}

.fs-196 {
    font-size: calc(2.105rem + 10.26vw) !important;
}

@media (min-width: 1200px) {
    .fs-196 {
        font-size: 9.8rem !important;
    }
}

.fs-197 {
    font-size: calc(2.11rem + 10.32vw) !important;
}

@media (min-width: 1200px) {
    .fs-197 {
        font-size: 9.85rem !important;
    }
}

.fs-198 {
    font-size: calc(2.115rem + 10.38vw) !important;
}

@media (min-width: 1200px) {
    .fs-198 {
        font-size: 9.9rem !important;
    }
}

.fs-199 {
    font-size: calc(2.12rem + 10.44vw) !important;
}

@media (min-width: 1200px) {
    .fs-199 {
        font-size: 9.95rem !important;
    }
}

.fs-200 {
    font-size: calc(2.125rem + 10.5vw) !important;
}

@media (min-width: 1200px) {
    .fs-200 {
        font-size: 10rem !important;
    }
}
/*--------------------------------------------------------------
# FONTS
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# SPACE
--------------------------------------------------------------*/
/*  Gap */
.gap-6 {
    gap: 1.5rem !important;
}

.gap-7 {
    gap: 1.75rem !important;
}

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

.gap-9 {
    gap: 2.25rem !important;
}

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

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

.gap-12 {
    gap: 3.5rem !important;
}

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

.gap-14 {
    gap: 4.5rem !important;
}

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

.gap-16 {
    gap: 6rem !important;
}

.gap-17 {
    gap: 7rem !important;
}

.gap-18 {
    gap: 8rem !important;
}

.gap-19 {
    gap: 9rem !important;
}

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

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

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

.gap-23 {
    gap: 17.5rem !important;
}

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

.gap-25 {
    gap: 22.5rem !important;
}

/* Margin */

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

.m-7 {
    margin: 1.75rem !important;
}

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

.m-9 {
    margin: 2.25rem !important;
}

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

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

.m-12 {
    margin: 3.5rem !important;
}

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

.m-14 {
    margin: 4.5rem !important;
}

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

.m-16 {
    margin: 6rem !important;
}

.m-17 {
    margin: 7rem !important;
}

.m-18 {
    margin: 8rem !important;
}

.m-19 {
    margin: 9rem !important;
}

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

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

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

.m-23 {
    margin: 17.5rem !important;
}

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

.m-25 {
    margin: 22.5rem !important;
}

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

.mx-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
}

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

.mx-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
}

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

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

.mx-12 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
}

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

.mx-14 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
}

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

.mx-16 {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
}

.mx-17 {
    margin-right: 7rem !important;
    margin-left: 7rem !important;
}

.mx-18 {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
}

.mx-19 {
    margin-right: 9rem !important;
    margin-left: 9rem !important;
}

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

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

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

.mx-23 {
    margin-right: 17.5rem !important;
    margin-left: 17.5rem !important;
}

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

.mx-25 {
    margin-right: 22.5rem !important;
    margin-left: 22.5rem !important;
}

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

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

.my-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
}

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

.my-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
}

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

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

.my-12 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
}

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

.my-14 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
}

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

.my-16 {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
}

.my-17 {
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
}

.my-18 {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
}

.my-19 {
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
}

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

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

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

.my-23 {
    margin-top: 17.5rem !important;
    margin-bottom: 17.5rem !important;
}

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

.my-25 {
    margin-top: 22.5rem !important;
    margin-bottom: 22.5rem !important;
}

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

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

.mt-7 {
    margin-top: 1.75rem !important;
}

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

.mt-9 {
    margin-top: 2.25rem !important;
}

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

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

.mt-12 {
    margin-top: 3.5rem !important;
}

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

.mt-14 {
    margin-top: 4.5rem !important;
}

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

.mt-16 {
    margin-top: 6rem !important;
}

.mt-17 {
    margin-top: 7rem !important;
}

.mt-18 {
    margin-top: 8rem !important;
}

.mt-19 {
    margin-top: 9rem !important;
}

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

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

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

.mt-23 {
    margin-top: 17.5rem !important;
}

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

.mt-25 {
    margin-top: 22.5rem !important;
}

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

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

.me-7 {
    margin-right: 1.75rem !important;
}

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

.me-9 {
    margin-right: 2.25rem !important;
}

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

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

.me-12 {
    margin-right: 3.5rem !important;
}

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

.me-14 {
    margin-right: 4.5rem !important;
}

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

.me-16 {
    margin-right: 6rem !important;
}

.me-17 {
    margin-right: 7rem !important;
}

.me-18 {
    margin-right: 8rem !important;
}

.me-19 {
    margin-right: 9rem !important;
}

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

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

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

.me-23 {
    margin-right: 17.5rem !important;
}

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

.me-25 {
    margin-right: 22.5rem !important;
}

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

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

.mb-7 {
    margin-bottom: 1.75rem !important;
}

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

.mb-9 {
    margin-bottom: 2.25rem !important;
}

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

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

.mb-12 {
    margin-bottom: 3.5rem !important;
}

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

.mb-14 {
    margin-bottom: 4.5rem !important;
}

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

.mb-16 {
    margin-bottom: 6rem !important;
}

.mb-17 {
    margin-bottom: 7rem !important;
}

.mb-18 {
    margin-bottom: 8rem !important;
}

.mb-19 {
    margin-bottom: 9rem !important;
}

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

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

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

.mb-23 {
    margin-bottom: 17.5rem !important;
}

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

.mb-25 {
    margin-bottom: 22.5rem !important;
}

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

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

.ms-7 {
    margin-left: 1.75rem !important;
}

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

.ms-9 {
    margin-left: 2.25rem !important;
}

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

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

.ms-12 {
    margin-left: 3.5rem !important;
}

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

.ms-14 {
    margin-left: 4.5rem !important;
}

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

.ms-16 {
    margin-left: 6rem !important;
}

.ms-17 {
    margin-left: 7rem !important;
}

.ms-18 {
    margin-left: 8rem !important;
}

.ms-19 {
    margin-left: 9rem !important;
}

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

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

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

.ms-23 {
    margin-left: 17.5rem !important;
}

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

.ms-25 {
    margin-left: 22.5rem !important;
}

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

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

.m-n7 {
    margin: -1.75rem !important;
}

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

.m-n9 {
    margin: -2.25rem !important;
}

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

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

.m-n12 {
    margin: -3.5rem !important;
}

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

.m-n14 {
    margin: -4.5rem !important;
}

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

.m-n16 {
    margin: -6rem !important;
}

.m-n17 {
    margin: -7rem !important;
}

.m-n18 {
    margin: -8rem !important;
}

.m-n19 {
    margin: -9rem !important;
}

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

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

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

.m-n23 {
    margin: -17.5rem !important;
}

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

.m-n25 {
    margin: -22.5rem !important;
}

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

.mx-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
}

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

.mx-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
}

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

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

.mx-n12 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
}

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

.mx-n14 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
}

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

.mx-n16 {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
}

.mx-n17 {
    margin-right: -7rem !important;
    margin-left: -7rem !important;
}

.mx-n18 {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
}

.mx-n19 {
    margin-right: -9rem !important;
    margin-left: -9rem !important;
}

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

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

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

.mx-n23 {
    margin-right: -17.5rem !important;
    margin-left: -17.5rem !important;
}

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

.mx-n25 {
    margin-right: -22.5rem !important;
    margin-left: -22.5rem !important;
}

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

.my-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
}

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

.my-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
}

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

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

.my-n12 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
}

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

.my-n14 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
}

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

.my-n16 {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
}

.my-n17 {
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
}

.my-n18 {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
}

.my-n19 {
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
}

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

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

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

.my-n23 {
    margin-top: -17.5rem !important;
    margin-bottom: -17.5rem !important;
}

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

.my-n25 {
    margin-top: -22.5rem !important;
    margin-bottom: -22.5rem !important;
}

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

.mt-n7 {
    margin-top: -1.75rem !important;
}

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

.mt-n9 {
    margin-top: -2.25rem !important;
}

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

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

.mt-n12 {
    margin-top: -3.5rem !important;
}

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

.mt-n14 {
    margin-top: -4.5rem !important;
}

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

.mt-n16 {
    margin-top: -6rem !important;
}

.mt-n17 {
    margin-top: -7rem !important;
}

.mt-n18 {
    margin-top: -8rem !important;
}

.mt-n19 {
    margin-top: -9rem !important;
}

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

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

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

.mt-n23 {
    margin-top: -17.5rem !important;
}

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

.mt-n25 {
    margin-top: -22.5rem !important;
}

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

.me-n7 {
    margin-right: -1.75rem !important;
}

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

.me-n9 {
    margin-right: -2.25rem !important;
}

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

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

.me-n12 {
    margin-right: -3.5rem !important;
}

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

.me-n14 {
    margin-right: -4.5rem !important;
}

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

.me-n16 {
    margin-right: -6rem !important;
}

.me-n17 {
    margin-right: -7rem !important;
}

.me-n18 {
    margin-right: -8rem !important;
}

.me-n19 {
    margin-right: -9rem !important;
}

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

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

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

.me-n23 {
    margin-right: -17.5rem !important;
}

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

.me-n25 {
    margin-right: -22.5rem !important;
}

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

.mb-n7 {
    margin-bottom: -1.75rem !important;
}

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

.mb-n9 {
    margin-bottom: -2.25rem !important;
}

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

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

.mb-n12 {
    margin-bottom: -3.5rem !important;
}

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

.mb-n14 {
    margin-bottom: -4.5rem !important;
}

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

.mb-n16 {
    margin-bottom: -6rem !important;
}

.mb-n17 {
    margin-bottom: -7rem !important;
}

.mb-n18 {
    margin-bottom: -8rem !important;
}

.mb-n19 {
    margin-bottom: -9rem !important;
}

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

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

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

.mb-n23 {
    margin-bottom: -17.5rem !important;
}

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

.mb-n25 {
    margin-bottom: -22.5rem !important;
}

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

.ms-n7 {
    margin-left: -1.75rem !important;
}

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

.ms-n9 {
    margin-left: -2.25rem !important;
}

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

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

.ms-n12 {
    margin-left: -3.5rem !important;
}

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

.ms-n14 {
    margin-left: -4.5rem !important;
}

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

.ms-n16 {
    margin-left: -6rem !important;
}

.ms-n17 {
    margin-left: -7rem !important;
}

.ms-n18 {
    margin-left: -8rem !important;
}

.ms-n19 {
    margin-left: -9rem !important;
}

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

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

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

.ms-n23 {
    margin-left: -17.5rem !important;
}

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

.ms-n25 {
    margin-left: -22.5rem !important;
}

/* Padding */
.p-6 {
    padding: 1.5rem !important;
}

.p-7 {
    padding: 1.75rem !important;
}

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

.p-9 {
    padding: 2.25rem !important;
}

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

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

.p-12 {
    padding: 3.5rem !important;
}

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

.p-14 {
    padding: 4.5rem !important;
}

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

.p-16 {
    padding: 6rem !important;
}

.p-17 {
    padding: 7rem !important;
}

.p-18 {
    padding: 8rem !important;
}

.p-19 {
    padding: 9rem !important;
}

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

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

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

.p-23 {
    padding: 17.5rem !important;
}

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

.p-25 {
    padding: 22.5rem !important;
}

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

.px-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
}

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

.px-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
}

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

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

.px-12 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
}

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

.px-14 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
}

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

.px-16 {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
}

.px-17 {
    padding-right: 7rem !important;
    padding-left: 7rem !important;
}

.px-18 {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
}

.px-19 {
    padding-right: 9rem !important;
    padding-left: 9rem !important;
}

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

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

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

.px-23 {
    padding-right: 17.5rem !important;
    padding-left: 17.5rem !important;
}

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

.px-25 {
    padding-right: 22.5rem !important;
    padding-left: 22.5rem !important;
}

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

.py-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
}

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

.py-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
}

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

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

.py-12 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

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

.py-14 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
}

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

.py-16 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.py-17 {
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
}

.py-18 {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
}

.py-19 {
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
}

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

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

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

.py-23 {
    padding-top: 17.5rem !important;
    padding-bottom: 17.5rem !important;
}

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

.py-25 {
    padding-top: 22.5rem !important;
    padding-bottom: 22.5rem !important;
}

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

.pt-7 {
    padding-top: 1.75rem !important;
}

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

.pt-9 {
    padding-top: 2.25rem !important;
}

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

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

.pt-12 {
    padding-top: 3.5rem !important;
}

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

.pt-14 {
    padding-top: 4.5rem !important;
}

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

.pt-16 {
    padding-top: 6rem !important;
}

.pt-17 {
    padding-top: 7rem !important;
}

.pt-18 {
    padding-top: 8rem !important;
}

.pt-19 {
    padding-top: 9rem !important;
}

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

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

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

.pt-23 {
    padding-top: 17.5rem !important;
}

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

.pt-25 {
    padding-top: 22.5rem !important;
}

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

.pe-7 {
    padding-right: 1.75rem !important;
}

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

.pe-9 {
    padding-right: 2.25rem !important;
}

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

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

.pe-12 {
    padding-right: 3.5rem !important;
}

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

.pe-14 {
    padding-right: 4.5rem !important;
}

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

.pe-16 {
    padding-right: 6rem !important;
}

.pe-17 {
    padding-right: 7rem !important;
}

.pe-18 {
    padding-right: 8rem !important;
}

.pe-19 {
    padding-right: 9rem !important;
}

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

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

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

.pe-23 {
    padding-right: 17.5rem !important;
}

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

.pe-25 {
    padding-right: 22.5rem !important;
}

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

.pb-7 {
    padding-bottom: 1.75rem !important;
}

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

.pb-9 {
    padding-bottom: 2.25rem !important;
}

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

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

.pb-12 {
    padding-bottom: 3.5rem !important;
}

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

.pb-14 {
    padding-bottom: 4.5rem !important;
}

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

.pb-16 {
    padding-bottom: 6rem !important;
}

.pb-17 {
    padding-bottom: 7rem !important;
}

.pb-18 {
    padding-bottom: 8rem !important;
}

.pb-19 {
    padding-bottom: 9rem !important;
}

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

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

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

.pb-23 {
    padding-bottom: 17.5rem !important;
}

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

.pb-25 {
    padding-bottom: 22.5rem !important;
}


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

.ps-7 {
    padding-left: 1.75rem !important;
}

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

.ps-9 {
    padding-left: 2.25rem !important;
}

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

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

.ps-12 {
    padding-left: 3.5rem !important;
}

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

.ps-14 {
    padding-left: 4.5rem !important;
}

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

.ps-16 {
    padding-left: 6rem !important;
}

.ps-17 {
    padding-left: 7rem !important;
}

.ps-18 {
    padding-left: 8rem !important;
}

.ps-19 {
    padding-left: 9rem !important;
}

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

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

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

.ps-23 {
    padding-left: 17.5rem !important;
}

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

.ps-25 {
    padding-left: 22.5rem !important;
}

@media (min-width: 1200px) {
    /* Gap */
    .gap-xl-6 {
        gap: 1.5rem !important;
    }

    .gap-xl-7 {
        gap: 1.75rem !important;
    }

    .gap-xl-8 {
        gap: 2rem !important;
    }

    .gap-xl-9 {
        gap: 2.25rem !important;
    }

    .gap-xl-10 {
        gap: 2.5rem !important;
    }

    .gap-xl-11 {
        gap: 3rem !important;
    }

    .gap-xl-12 {
        gap: 3.5rem !important;
    }

    .gap-xl-13 {
        gap: 4rem !important;
    }

    .gap-xl-14 {
        gap: 4.5rem !important;
    }

    .gap-xl-15 {
        gap: 5rem !important;
    }

    .gap-xl-16 {
        gap: 6rem !important;
    }

    .gap-xl-17 {
        gap: 7rem !important;
    }

    .gap-xl-18 {
        gap: 8rem !important;
    }

    .gap-xl-19 {
        gap: 9rem !important;
    }

    .gap-xl-20 {
        gap: 10rem !important;
    }

    .gap-xl-21 {
        gap: 12.5rem !important;
    }

    .gap-xl-22 {
        gap: 15rem !important;
    }

    .gap-xl-23 {
        gap: 17.5rem !important;
    }

    .gap-xl-24 {
        gap: 20rem !important;
    }

    .gap-xl-25 {
        gap: 22.5rem !important;
    }

    /* Margin */
    .m-xl-6 {
        margin: 1.5rem !important;
    }

    .m-xl-7 {
        margin: 1.75rem !important;
    }

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

    .m-xl-9 {
        margin: 2.25rem !important;
    }

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

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

    .m-xl-12 {
        margin: 3.5rem !important;
    }

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

    .m-xl-14 {
        margin: 4.5rem !important;
    }

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

    .m-xl-16 {
        margin: 6rem !important;
    }

    .m-xl-17 {
        margin: 7rem !important;
    }

    .m-xl-18 {
        margin: 8rem !important;
    }

    .m-xl-19 {
        margin: 9rem !important;
    }

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

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

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

    .m-xl-23 {
        margin: 17.5rem !important;
    }

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

    .m-xl-25 {
        margin: 22.5rem !important;
    }

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

    .mx-xl-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important;
    }

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

    .mx-xl-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important;
    }

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

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

    .mx-xl-12 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

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

    .mx-xl-14 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important;
    }

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

    .mx-xl-16 {
        margin-right: 6rem !important;
        margin-left: 6rem !important;
    }

    .mx-xl-17 {
        margin-right: 7rem !important;
        margin-left: 7rem !important;
    }

    .mx-xl-18 {
        margin-right: 8rem !important;
        margin-left: 8rem !important;
    }

    .mx-xl-19 {
        margin-right: 9rem !important;
        margin-left: 9rem !important;
    }

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

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

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

    .mx-xl-23 {
        margin-right: 17.5rem !important;
        margin-left: 17.5rem !important;
    }

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

    .mx-xl-25 {
        margin-right: 22.5rem !important;
        margin-left: 22.5rem !important;
    }


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

    .my-xl-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important;
    }

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

    .my-xl-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important;
    }

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

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

    .my-xl-12 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

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

    .my-xl-14 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important;
    }

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

    .my-xl-16 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important;
    }

    .my-xl-17 {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important;
    }

    .my-xl-18 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }

    .my-xl-19 {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }

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

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

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

    .my-xl-23 {
        margin-top: 17.5rem !important;
        margin-bottom: 17.5rem !important;
    }

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

    .my-xl-25 {
        margin-top: 22.5rem !important;
        margin-bottom: 22.5rem !important;
    }

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

    .mt-xl-7 {
        margin-top: 1.75rem !important;
    }

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

    .mt-xl-9 {
        margin-top: 2.25rem !important;
    }

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

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

    .mt-xl-12 {
        margin-top: 3.5rem !important;
    }

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

    .mt-xl-14 {
        margin-top: 4.5rem !important;
    }

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

    .mt-xl-16 {
        margin-top: 6rem !important;
    }

    .mt-xl-17 {
        margin-top: 7rem !important;
    }

    .mt-xl-18 {
        margin-top: 8rem !important;
    }

    .mt-xl-19 {
        margin-top: 9rem !important;
    }

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

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

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

    .mt-xl-23 {
        margin-top: 17.5rem !important;
    }

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

    .mt-xl-25 {
        margin-top: 22.5rem !important;
    }


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

    .me-xl-7 {
        margin-right: 1.75rem !important;
    }

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

    .me-xl-9 {
        margin-right: 2.25rem !important;
    }

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

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

    .me-xl-12 {
        margin-right: 3.5rem !important;
    }

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

    .me-xl-14 {
        margin-right: 4.5rem !important;
    }

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

    .me-xl-16 {
        margin-right: 6rem !important;
    }

    .me-xl-17 {
        margin-right: 7rem !important;
    }

    .me-xl-18 {
        margin-right: 8rem !important;
    }

    .me-xl-19 {
        margin-right: 9rem !important;
    }

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

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

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

    .me-xl-23 {
        margin-right: 17.5rem !important;
    }

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

    .me-xl-25 {
        margin-right: 22.5rem !important;
    }

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

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

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

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

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

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

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

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

    .mb-xl-7 {
        margin-bottom: 1.75rem !important;
    }

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

    .mb-xl-9 {
        margin-bottom: 2.25rem !important;
    }

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

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

    .mb-xl-12 {
        margin-bottom: 3.5rem !important;
    }

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

    .mb-xl-14 {
        margin-bottom: 4.5rem !important;
    }

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

    .mb-xl-16 {
        margin-bottom: 6rem !important;
    }

    .mb-xl-17 {
        margin-bottom: 7rem !important;
    }

    .mb-xl-18 {
        margin-bottom: 8rem !important;
    }

    .mb-xl-19 {
        margin-bottom: 9rem !important;
    }

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

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

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

    .mb-xl-23 {
        margin-bottom: 17.5rem !important;
    }

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

    .mb-xl-25 {
        margin-bottom: 22.5rem !important;
    }

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

    .ms-xl-7 {
        margin-left: 1.75rem !important;
    }

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

    .ms-xl-9 {
        margin-left: 2.25rem !important;
    }

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

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

    .ms-xl-12 {
        margin-left: 3.5rem !important;
    }

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

    .ms-xl-14 {
        margin-left: 4.5rem !important;
    }

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

    .ms-xl-16 {
        margin-left: 6rem !important;
    }

    .ms-xl-17 {
        margin-left: 7rem !important;
    }

    .ms-xl-18 {
        margin-left: 8rem !important;
    }

    .ms-xl-19 {
        margin-left: 9rem !important;
    }

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

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

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

    .ms-xl-23 {
        margin-left: 17.5rem !important;
    }

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

    .ms-xl-25 {
        margin-left: 22.5rem !important;
    }

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

    .m-xl-n7 {
        margin: -1.75rem !important;
    }

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

    .m-xl-n9 {
        margin: -2.25rem !important;
    }

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

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

    .m-xl-n12 {
        margin: -3.5rem !important;
    }

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

    .m-xl-n14 {
        margin: -4.5rem !important;
    }

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

    .m-xl-n16 {
        margin: -6rem !important;
    }

    .m-xl-n17 {
        margin: -7rem !important;
    }

    .m-xl-n18 {
        margin: -8rem !important;
    }

    .m-xl-n19 {
        margin: -9rem !important;
    }

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

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

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

    .m-xl-n23 {
        margin: -17.5rem !important;
    }

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

    .m-xl-n25 {
        margin: -22.5rem !important;
    }


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

    .mx-xl-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important;
    }

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

    .mx-xl-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important;
    }

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

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

    .mx-xl-n12 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important;
    }

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

    .mx-xl-n14 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important;
    }

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

    .mx-xl-n16 {
        margin-right: -6rem !important;
        margin-left: -6rem !important;
    }

    .mx-xl-n17 {
        margin-right: -7rem !important;
        margin-left: -7rem !important;
    }

    .mx-xl-n18 {
        margin-right: -8rem !important;
        margin-left: -8rem !important;
    }

    .mx-xl-n19 {
        margin-right: -9rem !important;
        margin-left: -9rem !important;
    }

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

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

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

    .mx-xl-n23 {
        margin-right: -17.5rem !important;
        margin-left: -17.5rem !important;
    }

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

    .mx-xl-n25 {
        margin-right: -22.5rem !important;
        margin-left: -22.5rem !important;
    }

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

    .my-xl-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important;
    }

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

    .my-xl-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important;
    }

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

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

    .my-xl-n12 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important;
    }

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

    .my-xl-n14 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important;
    }

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

    .my-xl-n16 {
        margin-top: -6rem !important;
        margin-bottom: -6rem !important;
    }

    .my-xl-n17 {
        margin-top: -7rem !important;
        margin-bottom: -7rem !important;
    }

    .my-xl-n18 {
        margin-top: -8rem !important;
        margin-bottom: -8rem !important;
    }

    .my-xl-n19 {
        margin-top: -9rem !important;
        margin-bottom: -9rem !important;
    }

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

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

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

    .my-xl-n23 {
        margin-top: -17.5rem !important;
        margin-bottom: -17.5rem !important;
    }

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

    .my-xl-n25 {
        margin-top: -22.5rem !important;
        margin-bottom: -22.5rem !important;
    }

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

    .mt-xl-n7 {
        margin-top: -1.75rem !important;
    }

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

    .mt-xl-n9 {
        margin-top: -2.25rem !important;
    }

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

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

    .mt-xl-n12 {
        margin-top: -3.5rem !important;
    }

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

    .mt-xl-n14 {
        margin-top: -4.5rem !important;
    }

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

    .mt-xl-n16 {
        margin-top: -6rem !important;
    }

    .mt-xl-n17 {
        margin-top: -7rem !important;
    }

    .mt-xl-n18 {
        margin-top: -8rem !important;
    }

    .mt-xl-n19 {
        margin-top: -9rem !important;
    }

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

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

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

    .mt-xl-n23 {
        margin-top: -17.5rem !important;
    }

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

    .mt-xl-n25 {
        margin-top: -22.5rem !important;
    }

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

    .me-xl-n7 {
        margin-right: -1.75rem !important;
    }

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

    .me-xl-n9 {
        margin-right: -2.25rem !important;
    }

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

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

    .me-xl-n12 {
        margin-right: -3.5rem !important;
    }

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

    .me-xl-n14 {
        margin-right: -4.5rem !important;
    }

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

    .me-xl-n16 {
        margin-right: -6rem !important;
    }

    .me-xl-n17 {
        margin-right: -7rem !important;
    }

    .me-xl-n18 {
        margin-right: -8rem !important;
    }

    .me-xl-n19 {
        margin-right: -9rem !important;
    }

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

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

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

    .me-xl-n23 {
        margin-right: -17.5rem !important;
    }

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

    .me-xl-n25 {
        margin-right: -22.5rem !important;
    }

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

    .mb-xl-n7 {
        margin-bottom: -1.75rem !important;
    }

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

    .mb-xl-n9 {
        margin-bottom: -2.25rem !important;
    }

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

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

    .mb-xl-n12 {
        margin-bottom: -3.5rem !important;
    }

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

    .mb-xl-n14 {
        margin-bottom: -4.5rem !important;
    }

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

    .mb-xl-n16 {
        margin-bottom: -6rem !important;
    }

    .mb-xl-n17 {
        margin-bottom: -7rem !important;
    }

    .mb-xl-n18 {
        margin-bottom: -8rem !important;
    }

    .mb-xl-n19 {
        margin-bottom: -9rem !important;
    }

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

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

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

    .mb-xl-n23 {
        margin-bottom: -17.5rem !important;
    }

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

    .mb-xl-n25 {
        margin-bottom: -22.5rem !important;
    }

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

    .ms-xl-n7 {
        margin-left: -1.75rem !important;
    }

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

    .ms-xl-n9 {
        margin-left: -2.25rem !important;
    }

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

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

    .ms-xl-n12 {
        margin-left: -3.5rem !important;
    }

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

    .ms-xl-n14 {
        margin-left: -4.5rem !important;
    }

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

    .ms-xl-n16 {
        margin-left: -6rem !important;
    }

    .ms-xl-n17 {
        margin-left: -7rem !important;
    }

    .ms-xl-n18 {
        margin-left: -8rem !important;
    }

    .ms-xl-n19 {
        margin-left: -9rem !important;
    }

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

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

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

    .ms-xl-n23 {
        margin-left: -17.5rem !important;
    }

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

    .ms-xl-n25 {
        margin-left: -22.5rem !important;
    }

    /* Padding */
    .p-xl-6 {
        padding: 1.5rem !important;
    }

    .p-xl-7 {
        padding: 1.75rem !important;
    }

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

    .p-xl-9 {
        padding: 2.25rem !important;
    }

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

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

    .p-xl-12 {
        padding: 3.5rem !important;
    }

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

    .p-xl-14 {
        padding: 4.5rem !important;
    }

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

    .p-xl-16 {
        padding: 6rem !important;
    }

    .p-xl-17 {
        padding: 7rem !important;
    }

    .p-xl-18 {
        padding: 8rem !important;
    }

    .p-xl-19 {
        padding: 9rem !important;
    }

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

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

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

    .p-xl-23 {
        padding: 17.5rem !important;
    }

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

    .p-xl-25 {
        padding: 22.5rem !important;
    }

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

    .px-xl-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important;
    }

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

    .px-xl-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important;
    }

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

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

    .px-xl-12 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

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

    .px-xl-14 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important;
    }

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

    .px-xl-16 {
        padding-right: 6rem !important;
        padding-left: 6rem !important;
    }

    .px-xl-17 {
        padding-right: 7rem !important;
        padding-left: 7rem !important;
    }

    .px-xl-18 {
        padding-right: 8rem !important;
        padding-left: 8rem !important;
    }

    .px-xl-19 {
        padding-right: 9rem !important;
        padding-left: 9rem !important;
    }

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

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

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

    .px-xl-23 {
        padding-right: 17.5rem !important;
        padding-left: 17.5rem !important;
    }

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

    .px-xl-25 {
        padding-right: 22.5rem !important;
        padding-left: 22.5rem !important;
    }

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

    .py-xl-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

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

    .py-xl-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }

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

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

    .py-xl-12 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

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

    .py-xl-14 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

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

    .py-xl-16 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .py-xl-17 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }

    .py-xl-18 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }

    .py-xl-19 {
        padding-top: 9rem !important;
        padding-bottom: 9rem !important;
    }

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

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

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

    .py-xl-23 {
        padding-top: 17.5rem !important;
        padding-bottom: 17.5rem !important;
    }

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

    .py-xl-25 {
        padding-top: 22.5rem !important;
        padding-bottom: 22.5rem !important;
    }

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

    .pt-xl-7 {
        padding-top: 1.75rem !important;
    }

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

    .pt-xl-9 {
        padding-top: 2.25rem !important;
    }

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

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

    .pt-xl-12 {
        padding-top: 3.5rem !important;
    }

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

    .pt-xl-14 {
        padding-top: 4.5rem !important;
    }

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

    .pt-xl-16 {
        padding-top: 6rem !important;
    }

    .pt-xl-17 {
        padding-top: 7rem !important;
    }

    .pt-xl-18 {
        padding-top: 8rem !important;
    }

    .pt-xl-19 {
        padding-top: 9rem !important;
    }

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

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

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

    .pt-xl-23 {
        padding-top: 17.5rem !important;
    }

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

    .pt-xl-25 {
        padding-top: 22.5rem !important;
    }


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

    .pe-xl-7 {
        padding-right: 1.75rem !important;
    }

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

    .pe-xl-9 {
        padding-right: 2.25rem !important;
    }

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

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

    .pe-xl-12 {
        padding-right: 3.5rem !important;
    }

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

    .pe-xl-14 {
        padding-right: 4.5rem !important;
    }

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

    .pe-xl-16 {
        padding-right: 6rem !important;
    }

    .pe-xl-17 {
        padding-right: 7rem !important;
    }

    .pe-xl-18 {
        padding-right: 8rem !important;
    }

    .pe-xl-19 {
        padding-right: 9rem !important;
    }

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

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

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

    .pe-xl-23 {
        padding-right: 17.5rem !important;
    }

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

    .pe-xl-25 {
        padding-right: 22.5rem !important;
    }

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

    .pb-xl-7 {
        padding-bottom: 1.75rem !important;
    }

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

    .pb-xl-9 {
        padding-bottom: 2.25rem !important;
    }

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

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

    .pb-xl-12 {
        padding-bottom: 3.5rem !important;
    }

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

    .pb-xl-14 {
        padding-bottom: 4.5rem !important;
    }

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

    .pb-xl-16 {
        padding-bottom: 6rem !important;
    }

    .pb-xl-17 {
        padding-bottom: 7rem !important;
    }

    .pb-xl-18 {
        padding-bottom: 8rem !important;
    }

    .pb-xl-19 {
        padding-bottom: 9rem !important;
    }

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

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

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

    .pb-xl-23 {
        padding-bottom: 17.5rem !important;
    }

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

    .pb-xl-25 {
        padding-bottom: 22.5rem !important;
    }


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

    .ps-xl-7 {
        padding-left: 1.75rem !important;
    }

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

    .ps-xl-9 {
        padding-left: 2.25rem !important;
    }

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

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

    .ps-xl-12 {
        padding-left: 3.5rem !important;
    }

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

    .ps-xl-14 {
        padding-left: 4.5rem !important;
    }

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

    .ps-xl-16 {
        padding-left: 6rem !important;
    }

    .ps-xl-17 {
        padding-left: 7rem !important;
    }

    .ps-xl-18 {
        padding-left: 8rem !important;
    }

    .ps-xl-19 {
        padding-left: 9rem !important;
    }

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

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

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

    .ps-xl-23 {
        padding-left: 17.5rem !important;
    }

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

    .ps-xl-25 {
        padding-left: 22.5rem !important;
    }
}

@media (min-width: 1400px) {

    /* Gap */
    .gap-xxl-6 {
        gap: 1.5rem !important;
    }

    .gap-xxl-7 {
        gap: 1.75rem !important;
    }

    .gap-xxl-8 {
        gap: 2rem !important;
    }

    .gap-xxl-9 {
        gap: 2.25rem !important;
    }

    .gap-xxl-10 {
        gap: 2.5rem !important;
    }

    .gap-xxl-11 {
        gap: 3rem !important;
    }

    .gap-xxl-12 {
        gap: 3.5rem !important;
    }

    .gap-xxl-13 {
        gap: 4rem !important;
    }

    .gap-xxl-14 {
        gap: 4.5rem !important;
    }

    .gap-xxl-15 {
        gap: 5rem !important;
    }

    .gap-xxl-16 {
        gap: 6rem !important;
    }

    .gap-xxl-17 {
        gap: 7rem !important;
    }

    .gap-xxl-18 {
        gap: 8rem !important;
    }

    .gap-xxl-19 {
        gap: 9rem !important;
    }

    .gap-xxl-20 {
        gap: 10rem !important;
    }

    .gap-xxl-21 {
        gap: 12.5rem !important;
    }

    .gap-xxl-22 {
        gap: 15rem !important;
    }

    .gap-xxl-23 {
        gap: 17.5rem !important;
    }

    .gap-xxl-24 {
        gap: 20rem !important;
    }

    .gap-xxl-25 {
        gap: 22.5rem !important;
    }

    /* Margin */
    .m-xxl-6 {
        margin: 1.5rem !important;
    }

    .m-xxl-7 {
        margin: 1.75rem !important;
    }

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

    .m-xxl-9 {
        margin: 2.25rem !important;
    }

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

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

    .m-xxl-12 {
        margin: 3.5rem !important;
    }

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

    .m-xxl-14 {
        margin: 4.5rem !important;
    }

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

    .m-xxl-16 {
        margin: 6rem !important;
    }

    .m-xxl-17 {
        margin: 7rem !important;
    }

    .m-xxl-18 {
        margin: 8rem !important;
    }

    .m-xxl-19 {
        margin: 9rem !important;
    }

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

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

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

    .m-xxl-23 {
        margin: 17.5rem !important;
    }

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

    .m-xxl-25 {
        margin: 22.5rem !important;
    }

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

    .mx-xxl-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important;
    }

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

    .mx-xxl-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important;
    }

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

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

    .mx-xxl-12 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

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

    .mx-xxl-14 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important;
    }

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

    .mx-xxl-16 {
        margin-right: 6rem !important;
        margin-left: 6rem !important;
    }

    .mx-xxl-17 {
        margin-right: 7rem !important;
        margin-left: 7rem !important;
    }

    .mx-xxl-18 {
        margin-right: 8rem !important;
        margin-left: 8rem !important;
    }

    .mx-xxl-19 {
        margin-right: 9rem !important;
        margin-left: 9rem !important;
    }

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

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

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

    .mx-xxl-23 {
        margin-right: 17.5rem !important;
        margin-left: 17.5rem !important;
    }

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

    .mx-xxl-25 {
        margin-right: 22.5rem !important;
        margin-left: 22.5rem !important;
    }

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

    .my-xxl-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important;
    }

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

    .my-xxl-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important;
    }

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

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

    .my-xxl-12 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

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

    .my-xxl-14 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important;
    }

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

    .my-xxl-16 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important;
    }

    .my-xxl-17 {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important;
    }

    .my-xxl-18 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }

    .my-xxl-19 {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }

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

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

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

    .my-xxl-23 {
        margin-top: 17.5rem !important;
        margin-bottom: 17.5rem !important;
    }

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

    .my-xxl-25 {
        margin-top: 22.5rem !important;
        margin-bottom: 22.5rem !important;
    }

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

    .mt-xxl-7 {
        margin-top: 1.75rem !important;
    }

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

    .mt-xxl-9 {
        margin-top: 2.25rem !important;
    }

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

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

    .mt-xxl-12 {
        margin-top: 3.5rem !important;
    }

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

    .mt-xxl-14 {
        margin-top: 4.5rem !important;
    }

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

    .mt-xxl-16 {
        margin-top: 6rem !important;
    }

    .mt-xxl-17 {
        margin-top: 7rem !important;
    }

    .mt-xxl-18 {
        margin-top: 8rem !important;
    }

    .mt-xxl-19 {
        margin-top: 9rem !important;
    }

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

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

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

    .mt-xxl-23 {
        margin-top: 17.5rem !important;
    }

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

    .mt-xxl-25 {
        margin-top: 22.5rem !important;
    }

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

    .me-xxl-7 {
        margin-right: 1.75rem !important;
    }

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

    .me-xxl-9 {
        margin-right: 2.25rem !important;
    }

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

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

    .me-xxl-12 {
        margin-right: 3.5rem !important;
    }

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

    .me-xxl-14 {
        margin-right: 4.5rem !important;
    }

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

    .me-xxl-16 {
        margin-right: 6rem !important;
    }

    .me-xxl-17 {
        margin-right: 7rem !important;
    }

    .me-xxl-18 {
        margin-right: 8rem !important;
    }

    .me-xxl-19 {
        margin-right: 9rem !important;
    }

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

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

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

    .me-xxl-23 {
        margin-right: 17.5rem !important;
    }

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

    .me-xxl-25 {
        margin-right: 22.5rem !important;
    }

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

    .mb-xxl-7 {
        margin-bottom: 1.75rem !important;
    }

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

    .mb-xxl-9 {
        margin-bottom: 2.25rem !important;
    }

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

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

    .mb-xxl-12 {
        margin-bottom: 3.5rem !important;
    }

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

    .mb-xxl-14 {
        margin-bottom: 4.5rem !important;
    }

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

    .mb-xxl-16 {
        margin-bottom: 6rem !important;
    }

    .mb-xxl-17 {
        margin-bottom: 7rem !important;
    }

    .mb-xxl-18 {
        margin-bottom: 8rem !important;
    }

    .mb-xxl-19 {
        margin-bottom: 9rem !important;
    }

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

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

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

    .mb-xxl-23 {
        margin-bottom: 17.5rem !important;
    }

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

    .mb-xxl-25 {
        margin-bottom: 22.5rem !important;
    }

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

    .ms-xxl-7 {
        margin-left: 1.75rem !important;
    }

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

    .ms-xxl-9 {
        margin-left: 2.25rem !important;
    }

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

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

    .ms-xxl-12 {
        margin-left: 3.5rem !important;
    }

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

    .ms-xxl-14 {
        margin-left: 4.5rem !important;
    }

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

    .ms-xxl-16 {
        margin-left: 6rem !important;
    }

    .ms-xxl-17 {
        margin-left: 7rem !important;
    }

    .ms-xxl-18 {
        margin-left: 8rem !important;
    }

    .ms-xxl-19 {
        margin-left: 9rem !important;
    }

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

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

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

    .ms-xxl-23 {
        margin-left: 17.5rem !important;
    }

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

    .ms-xxl-25 {
        margin-left: 22.5rem !important;
    }

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

    .m-xxl-n7 {
        margin: -1.75rem !important;
    }

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

    .m-xxl-n9 {
        margin: -2.25rem !important;
    }

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

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

    .m-xxl-n12 {
        margin: -3.5rem !important;
    }

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

    .m-xxl-n14 {
        margin: -4.5rem !important;
    }

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

    .m-xxl-n16 {
        margin: -6rem !important;
    }

    .m-xxl-n17 {
        margin: -7rem !important;
    }

    .m-xxl-n18 {
        margin: -8rem !important;
    }

    .m-xxl-n19 {
        margin: -9rem !important;
    }

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

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

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

    .m-xxl-n23 {
        margin: -17.5rem !important;
    }

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

    .m-xxl-n25 {
        margin: -22.5rem !important;
    }

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

    .mx-xxl-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important;
    }

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

    .mx-xxl-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important;
    }

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

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

    .mx-xxl-n12 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important;
    }

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

    .mx-xxl-n14 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important;
    }

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

    .mx-xxl-n16 {
        margin-right: -6rem !important;
        margin-left: -6rem !important;
    }

    .mx-xxl-n17 {
        margin-right: -7rem !important;
        margin-left: -7rem !important;
    }

    .mx-xxl-n18 {
        margin-right: -8rem !important;
        margin-left: -8rem !important;
    }

    .mx-xxl-n19 {
        margin-right: -9rem !important;
        margin-left: -9rem !important;
    }

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

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

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

    .mx-xxl-n23 {
        margin-right: -17.5rem !important;
        margin-left: -17.5rem !important;
    }

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

    .mx-xxl-n25 {
        margin-right: -22.5rem !important;
        margin-left: -22.5rem !important;
    }

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

    .my-xxl-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important;
    }

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

    .my-xxl-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important;
    }

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

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

    .my-xxl-n12 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important;
    }

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

    .my-xxl-n14 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important;
    }

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

    .my-xxl-n16 {
        margin-top: -6rem !important;
        margin-bottom: -6rem !important;
    }

    .my-xxl-n17 {
        margin-top: -7rem !important;
        margin-bottom: -7rem !important;
    }

    .my-xxl-n18 {
        margin-top: -8rem !important;
        margin-bottom: -8rem !important;
    }

    .my-xxl-n19 {
        margin-top: -9rem !important;
        margin-bottom: -9rem !important;
    }

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

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

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

    .my-xxl-n23 {
        margin-top: -17.5rem !important;
        margin-bottom: -17.5rem !important;
    }

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

    .my-xxl-n25 {
        margin-top: -22.5rem !important;
        margin-bottom: -22.5rem !important;
    }

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

    .mt-xxl-n7 {
        margin-top: -1.75rem !important;
    }

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

    .mt-xxl-n9 {
        margin-top: -2.25rem !important;
    }

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

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

    .mt-xxl-n12 {
        margin-top: -3.5rem !important;
    }

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

    .mt-xxl-n14 {
        margin-top: -4.5rem !important;
    }

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

    .mt-xxl-n16 {
        margin-top: -6rem !important;
    }

    .mt-xxl-n17 {
        margin-top: -7rem !important;
    }

    .mt-xxl-n18 {
        margin-top: -8rem !important;
    }

    .mt-xxl-n19 {
        margin-top: -9rem !important;
    }

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

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

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

    .mt-xxl-n23 {
        margin-top: -17.5rem !important;
    }

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

    .mt-xxl-n25 {
        margin-top: -22.5rem !important;
    }

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

    .me-xxl-n7 {
        margin-right: -1.75rem !important;
    }

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

    .me-xxl-n9 {
        margin-right: -2.25rem !important;
    }

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

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

    .me-xxl-n12 {
        margin-right: -3.5rem !important;
    }

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

    .me-xxl-n14 {
        margin-right: -4.5rem !important;
    }

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

    .me-xxl-n16 {
        margin-right: -6rem !important;
    }

    .me-xxl-n17 {
        margin-right: -7rem !important;
    }

    .me-xxl-n18 {
        margin-right: -8rem !important;
    }

    .me-xxl-n19 {
        margin-right: -9rem !important;
    }

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

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

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

    .me-xxl-n23 {
        margin-right: -17.5rem !important;
    }

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

    .me-xxl-n25 {
        margin-right: -22.5rem !important;
    }

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

    .mb-xxl-n7 {
        margin-bottom: -1.75rem !important;
    }

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

    .mb-xxl-n9 {
        margin-bottom: -2.25rem !important;
    }

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

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

    .mb-xxl-n12 {
        margin-bottom: -3.5rem !important;
    }

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

    .mb-xxl-n14 {
        margin-bottom: -4.5rem !important;
    }

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

    .mb-xxl-n16 {
        margin-bottom: -6rem !important;
    }

    .mb-xxl-n17 {
        margin-bottom: -7rem !important;
    }

    .mb-xxl-n18 {
        margin-bottom: -8rem !important;
    }

    .mb-xxl-n19 {
        margin-bottom: -9rem !important;
    }

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

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

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

    .mb-xxl-n23 {
        margin-bottom: -17.5rem !important;
    }

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

    .mb-xxl-n25 {
        margin-bottom: -22.5rem !important;
    }

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

    .ms-xxl-n7 {
        margin-left: -1.75rem !important;
    }

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

    .ms-xxl-n9 {
        margin-left: -2.25rem !important;
    }

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

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

    .ms-xxl-n12 {
        margin-left: -3.5rem !important;
    }

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

    .ms-xxl-n14 {
        margin-left: -4.5rem !important;
    }

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

    .ms-xxl-n16 {
        margin-left: -6rem !important;
    }

    .ms-xxl-n17 {
        margin-left: -7rem !important;
    }

    .ms-xxl-n18 {
        margin-left: -8rem !important;
    }

    .ms-xxl-n19 {
        margin-left: -9rem !important;
    }

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

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

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

    .ms-xxl-n23 {
        margin-left: -17.5rem !important;
    }

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

    .ms-xxl-n25 {
        margin-left: -22.5rem !important;
    }

    /* Padding */
    .p-xxl-6 {
        padding: 1.5rem !important;
    }

    .p-xxl-7 {
        padding: 1.75rem !important;
    }

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

    .p-xxl-9 {
        padding: 2.25rem !important;
    }

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

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

    .p-xxl-12 {
        padding: 3.5rem !important;
    }

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

    .p-xxl-14 {
        padding: 4.5rem !important;
    }

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

    .p-xxl-16 {
        padding: 6rem !important;
    }

    .p-xxl-17 {
        padding: 7rem !important;
    }

    .p-xxl-18 {
        padding: 8rem !important;
    }

    .p-xxl-19 {
        padding: 9rem !important;
    }

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

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

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

    .p-xxl-23 {
        padding: 17.5rem !important;
    }

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

    .p-xxl-25 {
        padding: 22.5rem !important;
    }

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

    .px-xxl-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important;
    }

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

    .px-xxl-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important;
    }

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

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

    .px-xxl-12 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

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

    .px-xxl-14 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important;
    }

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

    .px-xxl-16 {
        padding-right: 6rem !important;
        padding-left: 6rem !important;
    }

    .px-xxl-17 {
        padding-right: 7rem !important;
        padding-left: 7rem !important;
    }

    .px-xxl-18 {
        padding-right: 8rem !important;
        padding-left: 8rem !important;
    }

    .px-xxl-19 {
        padding-right: 9rem !important;
        padding-left: 9rem !important;
    }

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

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

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

    .px-xxl-23 {
        padding-right: 17.5rem !important;
        padding-left: 17.5rem !important;
    }

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

    .px-xxl-25 {
        padding-right: 22.5rem !important;
        padding-left: 22.5rem !important;
    }

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

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

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

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

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

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

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

    .py-xxl-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

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

    .py-xxl-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }

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

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

    .py-xxl-12 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

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

    .py-xxl-14 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

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

    .py-xxl-16 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .py-xxl-17 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }

    .py-xxl-18 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }

    .py-xxl-19 {
        padding-top: 9rem !important;
        padding-bottom: 9rem !important;
    }

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

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

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

    .py-xxl-23 {
        padding-top: 17.5rem !important;
        padding-bottom: 17.5rem !important;
    }

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

    .py-xxl-25 {
        padding-top: 22.5rem !important;
        padding-bottom: 22.5rem !important;
    }

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

    .pt-xxl-7 {
        padding-top: 1.75rem !important;
    }

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

    .pt-xxl-9 {
        padding-top: 2.25rem !important;
    }

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

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

    .pt-xxl-12 {
        padding-top: 3.5rem !important;
    }

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

    .pt-xxl-14 {
        padding-top: 4.5rem !important;
    }

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

    .pt-xxl-16 {
        padding-top: 6rem !important;
    }

    .pt-xxl-17 {
        padding-top: 7rem !important;
    }

    .pt-xxl-18 {
        padding-top: 8rem !important;
    }

    .pt-xxl-19 {
        padding-top: 9rem !important;
    }

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

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

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

    .pt-xxl-23 {
        padding-top: 17.5rem !important;
    }

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

    .pt-xxl-25 {
        padding-top: 22.5rem !important;
    }

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

    .pe-xxl-7 {
        padding-right: 1.75rem !important;
    }

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

    .pe-xxl-9 {
        padding-right: 2.25rem !important;
    }

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

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

    .pe-xxl-12 {
        padding-right: 3.5rem !important;
    }

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

    .pe-xxl-14 {
        padding-right: 4.5rem !important;
    }

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

    .pe-xxl-16 {
        padding-right: 6rem !important;
    }

    .pe-xxl-17 {
        padding-right: 7rem !important;
    }

    .pe-xxl-18 {
        padding-right: 8rem !important;
    }

    .pe-xxl-19 {
        padding-right: 9rem !important;
    }

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

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

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

    .pe-xxl-23 {
        padding-right: 17.5rem !important;
    }

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

    .pe-xxl-25 {
        padding-right: 22.5rem !important;
    }

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

    .pb-xxl-7 {
        padding-bottom: 1.75rem !important;
    }

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

    .pb-xxl-9 {
        padding-bottom: 2.25rem !important;
    }

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

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

    .pb-xxl-12 {
        padding-bottom: 3.5rem !important;
    }

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

    .pb-xxl-14 {
        padding-bottom: 4.5rem !important;
    }

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

    .pb-xxl-16 {
        padding-bottom: 6rem !important;
    }

    .pb-xxl-17 {
        padding-bottom: 7rem !important;
    }

    .pb-xxl-18 {
        padding-bottom: 8rem !important;
    }

    .pb-xxl-19 {
        padding-bottom: 9rem !important;
    }

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

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

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

    .pb-xxl-23 {
        padding-bottom: 17.5rem !important;
    }

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

    .pb-xxl-25 {
        padding-bottom: 22.5rem !important;
    }

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

    .ps-xxl-7 {
        padding-left: 1.75rem !important;
    }

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

    .ps-xxl-9 {
        padding-left: 2.25rem !important;
    }

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

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

    .ps-xxl-12 {
        padding-left: 3.5rem !important;
    }

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

    .ps-xxl-14 {
        padding-left: 4.5rem !important;
    }

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

    .ps-xxl-16 {
        padding-left: 6rem !important;
    }

    .ps-xxl-17 {
        padding-left: 7rem !important;
    }

    .ps-xxl-18 {
        padding-left: 8rem !important;
    }

    .ps-xxl-19 {
        padding-left: 9rem !important;
    }

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

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

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

    .ps-xxl-23 {
        padding-left: 17.5rem !important;
    }

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

    .ps-xxl-25 {
        padding-left: 22.5rem !important;
    }
}

@media (min-width: 992px) {

    /* Gap */
    .gap-lg-6 {
        gap: 1.5rem !important;
    }

    .gap-lg-7 {
        gap: 1.75rem !important;
    }

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

    .gap-lg-9 {
        gap: 2.25rem !important;
    }

    .gap-lg-10 {
        gap: 2.5rem !important;
    }

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

    .gap-lg-12 {
        gap: 3.5rem !important;
    }

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

    .gap-lg-14 {
        gap: 4.5rem !important;
    }

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

    .gap-lg-16 {
        gap: 6rem !important;
    }

    .gap-lg-17 {
        gap: 7rem !important;
    }

    .gap-lg-18 {
        gap: 8rem !important;
    }

    .gap-lg-19 {
        gap: 9rem !important;
    }

    .gap-lg-20 {
        gap: 10rem !important;
    }

    .gap-lg-21 {
        gap: 12.5rem !important;
    }

    .gap-lg-22 {
        gap: 15rem !important;
    }

    .gap-lg-23 {
        gap: 17.5rem !important;
    }

    .gap-lg-24 {
        gap: 20rem !important;
    }

    .gap-lg-25 {
        gap: 22.5rem !important;
    }

    /* Margin */
    .m-lg-6 {
        margin: 1.5rem !important;
    }

    .m-lg-7 {
        margin: 1.75rem !important;
    }

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

    .m-lg-9 {
        margin: 2.25rem !important;
    }

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

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

    .m-lg-12 {
        margin: 3.5rem !important;
    }

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

    .m-lg-14 {
        margin: 4.5rem !important;
    }

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

    .m-lg-16 {
        margin: 6rem !important;
    }

    .m-lg-17 {
        margin: 7rem !important;
    }

    .m-lg-18 {
        margin: 8rem !important;
    }

    .m-lg-19 {
        margin: 9rem !important;
    }

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

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

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

    .m-lg-23 {
        margin: 17.5rem !important;
    }

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

    .m-lg-25 {
        margin: 22.5rem !important;
    }


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

    .mx-lg-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important;
    }

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

    .mx-lg-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important;
    }

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

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

    .mx-lg-12 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

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

    .mx-lg-14 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important;
    }

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

    .mx-lg-16 {
        margin-right: 6rem !important;
        margin-left: 6rem !important;
    }

    .mx-lg-17 {
        margin-right: 7rem !important;
        margin-left: 7rem !important;
    }

    .mx-lg-18 {
        margin-right: 8rem !important;
        margin-left: 8rem !important;
    }

    .mx-lg-19 {
        margin-right: 9rem !important;
        margin-left: 9rem !important;
    }

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

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

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

    .mx-lg-23 {
        margin-right: 17.5rem !important;
        margin-left: 17.5rem !important;
    }

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

    .mx-lg-25 {
        margin-right: 22.5rem !important;
        margin-left: 22.5rem !important;
    }

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

    .my-lg-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important;
    }

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

    .my-lg-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important;
    }

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

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

    .my-lg-12 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

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

    .my-lg-14 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important;
    }

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

    .my-lg-16 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important;
    }

    .my-lg-17 {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important;
    }

    .my-lg-18 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }

    .my-lg-19 {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }

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

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

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

    .my-lg-23 {
        margin-top: 17.5rem !important;
        margin-bottom: 17.5rem !important;
    }

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

    .my-lg-25 {
        margin-top: 22.5rem !important;
        margin-bottom: 22.5rem !important;
    }


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

    .mt-lg-7 {
        margin-top: 1.75rem !important;
    }

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

    .mt-lg-9 {
        margin-top: 2.25rem !important;
    }

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

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

    .mt-lg-12 {
        margin-top: 3.5rem !important;
    }

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

    .mt-lg-14 {
        margin-top: 4.5rem !important;
    }

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

    .mt-lg-16 {
        margin-top: 6rem !important;
    }

    .mt-lg-17 {
        margin-top: 7rem !important;
    }

    .mt-lg-18 {
        margin-top: 8rem !important;
    }

    .mt-lg-19 {
        margin-top: 9rem !important;
    }

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

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

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

    .mt-lg-23 {
        margin-top: 17.5rem !important;
    }

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

    .mt-lg-25 {
        margin-top: 22.5rem !important;
    }


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

    .me-lg-7 {
        margin-right: 1.75rem !important;
    }

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

    .me-lg-9 {
        margin-right: 2.25rem !important;
    }

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

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

    .me-lg-12 {
        margin-right: 3.5rem !important;
    }

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

    .me-lg-14 {
        margin-right: 4.5rem !important;
    }

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

    .me-lg-16 {
        margin-right: 6rem !important;
    }

    .me-lg-17 {
        margin-right: 7rem !important;
    }

    .me-lg-18 {
        margin-right: 8rem !important;
    }

    .me-lg-19 {
        margin-right: 9rem !important;
    }

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

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

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

    .me-lg-23 {
        margin-right: 17.5rem !important;
    }

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

    .me-lg-25 {
        margin-right: 22.5rem !important;
    }

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

    .mb-lg-7 {
        margin-bottom: 1.75rem !important;
    }

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

    .mb-lg-9 {
        margin-bottom: 2.25rem !important;
    }

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

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

    .mb-lg-12 {
        margin-bottom: 3.5rem !important;
    }

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

    .mb-lg-14 {
        margin-bottom: 4.5rem !important;
    }

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

    .mb-lg-16 {
        margin-bottom: 6rem !important;
    }

    .mb-lg-17 {
        margin-bottom: 7rem !important;
    }

    .mb-lg-18 {
        margin-bottom: 8rem !important;
    }

    .mb-lg-19 {
        margin-bottom: 9rem !important;
    }

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

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

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

    .mb-lg-23 {
        margin-bottom: 17.5rem !important;
    }

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

    .mb-lg-25 {
        margin-bottom: 22.5rem !important;
    }

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

    .ms-lg-7 {
        margin-left: 1.75rem !important;
    }

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

    .ms-lg-9 {
        margin-left: 2.25rem !important;
    }

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

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

    .ms-lg-12 {
        margin-left: 3.5rem !important;
    }

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

    .ms-lg-14 {
        margin-left: 4.5rem !important;
    }

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

    .ms-lg-16 {
        margin-left: 6rem !important;
    }

    .ms-lg-17 {
        margin-left: 7rem !important;
    }

    .ms-lg-18 {
        margin-left: 8rem !important;
    }

    .ms-lg-19 {
        margin-left: 9rem !important;
    }

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

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

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

    .ms-lg-23 {
        margin-left: 17.5rem !important;
    }

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

    .ms-lg-25 {
        margin-left: 22.5rem !important;
    }

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

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

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

    .m-lg-n3 {
        margin: -0.75rem !important;
    }

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

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

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

    .m-lg-n7 {
        margin: -1.75rem !important;
    }

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

    .m-lg-n9 {
        margin: -2.25rem !important;
    }

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

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

    .m-lg-n12 {
        margin: -3.5rem !important;
    }

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

    .m-lg-n14 {
        margin: -4.5rem !important;
    }

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

    .m-lg-n16 {
        margin: -6rem !important;
    }

    .m-lg-n17 {
        margin: -7rem !important;
    }

    .m-lg-n18 {
        margin: -8rem !important;
    }

    .m-lg-n19 {
        margin: -9rem !important;
    }

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

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

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

    .m-lg-n23 {
        margin: -17.5rem !important;
    }

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

    .m-lg-n25 {
        margin: -22.5rem !important;
    }

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

    .mx-lg-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important;
    }

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

    .mx-lg-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important;
    }

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

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

    .mx-lg-n12 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important;
    }

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

    .mx-lg-n14 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important;
    }

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

    .mx-lg-n16 {
        margin-right: -6rem !important;
        margin-left: -6rem !important;
    }

    .mx-lg-n17 {
        margin-right: -7rem !important;
        margin-left: -7rem !important;
    }

    .mx-lg-n18 {
        margin-right: -8rem !important;
        margin-left: -8rem !important;
    }

    .mx-lg-n19 {
        margin-right: -9rem !important;
        margin-left: -9rem !important;
    }

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

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

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

    .mx-lg-n23 {
        margin-right: -17.5rem !important;
        margin-left: -17.5rem !important;
    }

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

    .mx-lg-n25 {
        margin-right: -22.5rem !important;
        margin-left: -22.5rem !important;
    }

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

    .my-lg-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important;
    }

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

    .my-lg-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important;
    }

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

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

    .my-lg-n12 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important;
    }

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

    .my-lg-n14 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important;
    }

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

    .my-lg-n16 {
        margin-top: -6rem !important;
        margin-bottom: -6rem !important;
    }

    .my-lg-n17 {
        margin-top: -7rem !important;
        margin-bottom: -7rem !important;
    }

    .my-lg-n18 {
        margin-top: -8rem !important;
        margin-bottom: -8rem !important;
    }

    .my-lg-n19 {
        margin-top: -9rem !important;
        margin-bottom: -9rem !important;
    }

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

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

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

    .my-lg-n23 {
        margin-top: -17.5rem !important;
        margin-bottom: -17.5rem !important;
    }

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

    .my-lg-n25 {
        margin-top: -22.5rem !important;
        margin-bottom: -22.5rem !important;
    }

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

    .mt-lg-n7 {
        margin-top: -1.75rem !important;
    }

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

    .mt-lg-n9 {
        margin-top: -2.25rem !important;
    }

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

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

    .mt-lg-n12 {
        margin-top: -3.5rem !important;
    }

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

    .mt-lg-n14 {
        margin-top: -4.5rem !important;
    }

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

    .mt-lg-n16 {
        margin-top: -6rem !important;
    }

    .mt-lg-n17 {
        margin-top: -7rem !important;
    }

    .mt-lg-n18 {
        margin-top: -8rem !important;
    }

    .mt-lg-n19 {
        margin-top: -9rem !important;
    }

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

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

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

    .mt-lg-n23 {
        margin-top: -17.5rem !important;
    }

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

    .mt-lg-n25 {
        margin-top: -22.5rem !important;
    }

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

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

    .me-lg-n3 {
        margin-right: -0.75rem !important;
    }

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

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

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

    .me-lg-n7 {
        margin-right: -1.75rem !important;
    }

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

    .me-lg-n9 {
        margin-right: -2.25rem !important;
    }

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

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

    .me-lg-n12 {
        margin-right: -3.5rem !important;
    }

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

    .me-lg-n14 {
        margin-right: -4.5rem !important;
    }

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

    .me-lg-n16 {
        margin-right: -6rem !important;
    }

    .me-lg-n17 {
        margin-right: -7rem !important;
    }

    .me-lg-n18 {
        margin-right: -8rem !important;
    }

    .me-lg-n19 {
        margin-right: -9rem !important;
    }

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

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

    .me-lg-n22 {
        margin-right: -15rem !important;
    }

    .me-lg-n23 {
        margin-right: -17.5rem !important;
    }

    .me-lg-n24 {
        margin-right: -20rem !important;
    }

    .me-lg-n25 {
        margin-right: -22.5rem !important;
    }

    .mb-lg-n6 {
        margin-bottom: -1.5rem !important;
    }

    .mb-lg-n7 {
        margin-bottom: -1.75rem !important;
    }

    .mb-lg-n8 {
        margin-bottom: -2rem !important;
    }

    .mb-lg-n9 {
        margin-bottom: -2.25rem !important;
    }

    .mb-lg-n10 {
        margin-bottom: -2.5rem !important;
    }

    .mb-lg-n11 {
        margin-bottom: -3rem !important;
    }

    .mb-lg-n12 {
        margin-bottom: -3.5rem !important;
    }

    .mb-lg-n13 {
        margin-bottom: -4rem !important;
    }

    .mb-lg-n14 {
        margin-bottom: -4.5rem !important;
    }

    .mb-lg-n15 {
        margin-bottom: -5rem !important;
    }

    .mb-lg-n16 {
        margin-bottom: -6rem !important;
    }

    .mb-lg-n17 {
        margin-bottom: -7rem !important;
    }

    .mb-lg-n18 {
        margin-bottom: -8rem !important;
    }

    .mb-lg-n19 {
        margin-bottom: -9rem !important;
    }

    .mb-lg-n20 {
        margin-bottom: -10rem !important;
    }

    .mb-lg-n21 {
        margin-bottom: -12.5rem !important;
    }

    .mb-lg-n22 {
        margin-bottom: -15rem !important;
    }

    .mb-lg-n23 {
        margin-bottom: -17.5rem !important;
    }

    .mb-lg-n24 {
        margin-bottom: -20rem !important;
    }

    .mb-lg-n25 {
        margin-bottom: -22.5rem !important;
    }

    .ms-lg-n6 {
        margin-left: -1.5rem !important;
    }

    .ms-lg-n7 {
        margin-left: -1.75rem !important;
    }

    .ms-lg-n8 {
        margin-left: -2rem !important;
    }

    .ms-lg-n9 {
        margin-left: -2.25rem !important;
    }

    .ms-lg-n10 {
        margin-left: -2.5rem !important;
    }

    .ms-lg-n11 {
        margin-left: -3rem !important;
    }

    .ms-lg-n12 {
        margin-left: -3.5rem !important;
    }

    .ms-lg-n13 {
        margin-left: -4rem !important;
    }

    .ms-lg-n14 {
        margin-left: -4.5rem !important;
    }

    .ms-lg-n15 {
        margin-left: -5rem !important;
    }

    .ms-lg-n16 {
        margin-left: -6rem !important;
    }

    .ms-lg-n17 {
        margin-left: -7rem !important;
    }

    .ms-lg-n18 {
        margin-left: -8rem !important;
    }

    .ms-lg-n19 {
        margin-left: -9rem !important;
    }

    .ms-lg-n20 {
        margin-left: -10rem !important;
    }

    .ms-lg-n21 {
        margin-left: -12.5rem !important;
    }

    .ms-lg-n22 {
        margin-left: -15rem !important;
    }

    .ms-lg-n23 {
        margin-left: -17.5rem !important;
    }

    .ms-lg-n24 {
        margin-left: -20rem !important;
    }

    .ms-lg-n25 {
        margin-left: -22.5rem !important;
    }

    /* Padding */
    .p-lg-6 {
        padding: 1.5rem !important;
    }

    .p-lg-7 {
        padding: 1.75rem !important;
    }

    .p-lg-8 {
        padding: 2rem !important;
    }

    .p-lg-9 {
        padding: 2.25rem !important;
    }

    .p-lg-10 {
        padding: 2.5rem !important;
    }

    .p-lg-11 {
        padding: 3rem !important;
    }

    .p-lg-12 {
        padding: 3.5rem !important;
    }

    .p-lg-13 {
        padding: 4rem !important;
    }

    .p-lg-14 {
        padding: 4.5rem !important;
    }

    .p-lg-15 {
        padding: 5rem !important;
    }

    .p-lg-16 {
        padding: 6rem !important;
    }

    .p-lg-17 {
        padding: 7rem !important;
    }

    .p-lg-18 {
        padding: 8rem !important;
    }

    .p-lg-19 {
        padding: 9rem !important;
    }

    .p-lg-20 {
        padding: 10rem !important;
    }

    .p-lg-21 {
        padding: 12.5rem !important;
    }

    .p-lg-22 {
        padding: 15rem !important;
    }

    .p-lg-23 {
        padding: 17.5rem !important;
    }

    .p-lg-24 {
        padding: 20rem !important;
    }

    .p-lg-25 {
        padding: 22.5rem !important;
    }

    .px-lg-6 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-lg-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important;
    }

    .px-lg-8 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .px-lg-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important;
    }

    .px-lg-10 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

    .px-lg-11 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-lg-12 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .px-lg-13 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .px-lg-14 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important;
    }

    .px-lg-15 {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }

    .px-lg-16 {
        padding-right: 6rem !important;
        padding-left: 6rem !important;
    }

    .px-lg-17 {
        padding-right: 7rem !important;
        padding-left: 7rem !important;
    }

    .px-lg-18 {
        padding-right: 8rem !important;
        padding-left: 8rem !important;
    }

    .px-lg-19 {
        padding-right: 9rem !important;
        padding-left: 9rem !important;
    }

    .px-lg-20 {
        padding-right: 10rem !important;
        padding-left: 10rem !important;
    }

    .px-lg-21 {
        padding-right: 12.5rem !important;
        padding-left: 12.5rem !important;
    }

    .px-lg-22 {
        padding-right: 15rem !important;
        padding-left: 15rem !important;
    }

    .px-lg-23 {
        padding-right: 17.5rem !important;
        padding-left: 17.5rem !important;
    }

    .px-lg-24 {
        padding-right: 20rem !important;
        padding-left: 20rem !important;
    }

    .px-lg-25 {
        padding-right: 22.5rem !important;
        padding-left: 22.5rem !important;
    }

    .py-lg-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-lg-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    .py-lg-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-lg-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }

    .py-lg-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-lg-11 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-lg-12 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-lg-13 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-lg-14 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

    .py-lg-15 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .py-lg-16 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .py-lg-17 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }

    .py-lg-18 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }

    .py-lg-19 {
        padding-top: 9rem !important;
        padding-bottom: 9rem !important;
    }

    .py-lg-20 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }

    .py-lg-21 {
        padding-top: 12.5rem !important;
        padding-bottom: 12.5rem !important;
    }

    .py-lg-22 {
        padding-top: 15rem !important;
        padding-bottom: 15rem !important;
    }

    .py-lg-23 {
        padding-top: 17.5rem !important;
        padding-bottom: 17.5rem !important;
    }

    .py-lg-24 {
        padding-top: 20rem !important;
        padding-bottom: 20rem !important;
    }

    .py-lg-25 {
        padding-top: 22.5rem !important;
        padding-bottom: 22.5rem !important;
    }

    .pt-lg-6 {
        padding-top: 1.5rem !important;
    }

    .pt-lg-7 {
        padding-top: 1.75rem !important;
    }

    .pt-lg-8 {
        padding-top: 2rem !important;
    }

    .pt-lg-9 {
        padding-top: 2.25rem !important;
    }

    .pt-lg-10 {
        padding-top: 2.5rem !important;
    }

    .pt-lg-11 {
        padding-top: 3rem !important;
    }

    .pt-lg-12 {
        padding-top: 3.5rem !important;
    }

    .pt-lg-13 {
        padding-top: 4rem !important;
    }

    .pt-lg-14 {
        padding-top: 4.5rem !important;
    }

    .pt-lg-15 {
        padding-top: 5rem !important;
    }

    .pt-lg-16 {
        padding-top: 6rem !important;
    }

    .pt-lg-17 {
        padding-top: 7rem !important;
    }

    .pt-lg-18 {
        padding-top: 8rem !important;
    }

    .pt-lg-19 {
        padding-top: 9rem !important;
    }

    .pt-lg-20 {
        padding-top: 10rem !important;
    }

    .pt-lg-21 {
        padding-top: 12.5rem !important;
    }

    .pt-lg-22 {
        padding-top: 15rem !important;
    }

    .pt-lg-23 {
        padding-top: 17.5rem !important;
    }

    .pt-lg-24 {
        padding-top: 20rem !important;
    }

    .pt-lg-25 {
        padding-top: 22.5rem !important;
    }

    .pe-lg-6 {
        padding-right: 1.5rem !important;
    }

    .pe-lg-7 {
        padding-right: 1.75rem !important;
    }

    .pe-lg-8 {
        padding-right: 2rem !important;
    }

    .pe-lg-9 {
        padding-right: 2.25rem !important;
    }

    .pe-lg-10 {
        padding-right: 2.5rem !important;
    }

    .pe-lg-11 {
        padding-right: 3rem !important;
    }

    .pe-lg-12 {
        padding-right: 3.5rem !important;
    }

    .pe-lg-13 {
        padding-right: 4rem !important;
    }

    .pe-lg-14 {
        padding-right: 4.5rem !important;
    }

    .pe-lg-15 {
        padding-right: 5rem !important;
    }

    .pe-lg-16 {
        padding-right: 6rem !important;
    }

    .pe-lg-17 {
        padding-right: 7rem !important;
    }

    .pe-lg-18 {
        padding-right: 8rem !important;
    }

    .pe-lg-19 {
        padding-right: 9rem !important;
    }

    .pe-lg-20 {
        padding-right: 10rem !important;
    }

    .pe-lg-21 {
        padding-right: 12.5rem !important;
    }

    .pe-lg-22 {
        padding-right: 15rem !important;
    }

    .pe-lg-23 {
        padding-right: 17.5rem !important;
    }

    .pe-lg-24 {
        padding-right: 20rem !important;
    }

    .pe-lg-25 {
        padding-right: 22.5rem !important;
    }


    .pb-lg-6 {
        padding-bottom: 1.5rem !important;
    }

    .pb-lg-7 {
        padding-bottom: 1.75rem !important;
    }

    .pb-lg-8 {
        padding-bottom: 2rem !important;
    }

    .pb-lg-9 {
        padding-bottom: 2.25rem !important;
    }

    .pb-lg-10 {
        padding-bottom: 2.5rem !important;
    }

    .pb-lg-11 {
        padding-bottom: 3rem !important;
    }

    .pb-lg-12 {
        padding-bottom: 3.5rem !important;
    }

    .pb-lg-13 {
        padding-bottom: 4rem !important;
    }

    .pb-lg-14 {
        padding-bottom: 4.5rem !important;
    }

    .pb-lg-15 {
        padding-bottom: 5rem !important;
    }

    .pb-lg-16 {
        padding-bottom: 6rem !important;
    }

    .pb-lg-17 {
        padding-bottom: 7rem !important;
    }

    .pb-lg-18 {
        padding-bottom: 8rem !important;
    }

    .pb-lg-19 {
        padding-bottom: 9rem !important;
    }

    .pb-lg-20 {
        padding-bottom: 10rem !important;
    }

    .pb-lg-21 {
        padding-bottom: 12.5rem !important;
    }

    .pb-lg-22 {
        padding-bottom: 15rem !important;
    }

    .pb-lg-23 {
        padding-bottom: 17.5rem !important;
    }

    .pb-lg-24 {
        padding-bottom: 20rem !important;
    }

    .pb-lg-25 {
        padding-bottom: 22.5rem !important;
    }

    .ps-lg-6 {
        padding-left: 1.5rem !important;
    }

    .ps-lg-7 {
        padding-left: 1.75rem !important;
    }

    .ps-lg-8 {
        padding-left: 2rem !important;
    }

    .ps-lg-9 {
        padding-left: 2.25rem !important;
    }

    .ps-lg-10 {
        padding-left: 2.5rem !important;
    }

    .ps-lg-11 {
        padding-left: 3rem !important;
    }

    .ps-lg-12 {
        padding-left: 3.5rem !important;
    }

    .ps-lg-13 {
        padding-left: 4rem !important;
    }

    .ps-lg-14 {
        padding-left: 4.5rem !important;
    }

    .ps-lg-15 {
        padding-left: 5rem !important;
    }

    .ps-lg-16 {
        padding-left: 6rem !important;
    }

    .ps-lg-17 {
        padding-left: 7rem !important;
    }

    .ps-lg-18 {
        padding-left: 8rem !important;
    }

    .ps-lg-19 {
        padding-left: 9rem !important;
    }

    .ps-lg-20 {
        padding-left: 10rem !important;
    }

    .ps-lg-21 {
        padding-left: 12.5rem !important;
    }

    .ps-lg-22 {
        padding-left: 15rem !important;
    }

    .ps-lg-23 {
        padding-left: 17.5rem !important;
    }

    .ps-lg-24 {
        padding-left: 20rem !important;
    }

    .ps-lg-25 {
        padding-left: 22.5rem !important;
    }
}

@media (min-width: 768px) {
    /* Gap */
    .gap-md-6 {
        gap: 1.5rem !important;
    }

    .gap-md-7 {
        gap: 1.75rem !important;
    }

    .gap-md-8 {
        gap: 2rem !important;
    }

    .gap-md-9 {
        gap: 2.25rem !important;
    }

    .gap-md-10 {
        gap: 2.5rem !important;
    }

    .gap-md-11 {
        gap: 3rem !important;
    }

    .gap-md-12 {
        gap: 3.5rem !important;
    }

    .gap-md-13 {
        gap: 4rem !important;
    }

    .gap-md-14 {
        gap: 4.5rem !important;
    }

    .gap-md-15 {
        gap: 5rem !important;
    }

    .gap-md-16 {
        gap: 6rem !important;
    }

    .gap-md-17 {
        gap: 7rem !important;
    }

    .gap-md-18 {
        gap: 8rem !important;
    }

    .gap-md-19 {
        gap: 9rem !important;
    }

    .gap-md-20 {
        gap: 10rem !important;
    }

    .gap-md-21 {
        gap: 12.5rem !important;
    }

    .gap-md-22 {
        gap: 15rem !important;
    }

    .gap-md-23 {
        gap: 17.5rem !important;
    }

    .gap-md-24 {
        gap: 20rem !important;
    }

    .gap-md-25 {
        gap: 22.5rem !important;
    }

    /* Margin */
    .m-md-6 {
        margin: 1.5rem !important;
    }

    .m-md-7 {
        margin: 1.75rem !important;
    }

    .m-md-8 {
        margin: 2rem !important;
    }

    .m-md-9 {
        margin: 2.25rem !important;
    }

    .m-md-10 {
        margin: 2.5rem !important;
    }

    .m-md-11 {
        margin: 3rem !important;
    }

    .m-md-12 {
        margin: 3.5rem !important;
    }

    .m-md-13 {
        margin: 4rem !important;
    }

    .m-md-14 {
        margin: 4.5rem !important;
    }

    .m-md-15 {
        margin: 5rem !important;
    }

    .m-md-16 {
        margin: 6rem !important;
    }

    .m-md-17 {
        margin: 7rem !important;
    }

    .m-md-18 {
        margin: 8rem !important;
    }

    .m-md-19 {
        margin: 9rem !important;
    }

    .m-md-20 {
        margin: 10rem !important;
    }

    .m-md-21 {
        margin: 12.5rem !important;
    }

    .m-md-22 {
        margin: 15rem !important;
    }

    .m-md-23 {
        margin: 17.5rem !important;
    }

    .m-md-24 {
        margin: 20rem !important;
    }

    .m-md-25 {
        margin: 22.5rem !important;
    }

    .mx-md-6 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-md-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important;
    }

    .mx-md-8 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-md-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important;
    }

    .mx-md-10 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-md-11 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-md-12 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-md-13 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-md-14 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important;
    }

    .mx-md-15 {
        margin-right: 5rem !important;
        margin-left: 5rem !important;
    }

    .mx-md-16 {
        margin-right: 6rem !important;
        margin-left: 6rem !important;
    }

    .mx-md-17 {
        margin-right: 7rem !important;
        margin-left: 7rem !important;
    }

    .mx-md-18 {
        margin-right: 8rem !important;
        margin-left: 8rem !important;
    }

    .mx-md-19 {
        margin-right: 9rem !important;
        margin-left: 9rem !important;
    }

    .mx-md-20 {
        margin-right: 10rem !important;
        margin-left: 10rem !important;
    }

    .mx-md-21 {
        margin-right: 12.5rem !important;
        margin-left: 12.5rem !important;
    }

    .mx-md-22 {
        margin-right: 15rem !important;
        margin-left: 15rem !important;
    }

    .mx-md-23 {
        margin-right: 17.5rem !important;
        margin-left: 17.5rem !important;
    }

    .mx-md-24 {
        margin-right: 20rem !important;
        margin-left: 20rem !important;
    }

    .mx-md-25 {
        margin-right: 22.5rem !important;
        margin-left: 22.5rem !important;
    }

    .mx-md-auto {
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .my-md-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-md-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important;
    }

    .my-md-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-md-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important;
    }

    .my-md-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-md-11 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-md-12 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-md-13 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-md-14 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important;
    }

    .my-md-15 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    .my-md-16 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important;
    }

    .my-md-17 {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important;
    }

    .my-md-18 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }

    .my-md-19 {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }

    .my-md-20 {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important;
    }

    .my-md-21 {
        margin-top: 12.5rem !important;
        margin-bottom: 12.5rem !important;
    }

    .my-md-22 {
        margin-top: 15rem !important;
        margin-bottom: 15rem !important;
    }

    .my-md-23 {
        margin-top: 17.5rem !important;
        margin-bottom: 17.5rem !important;
    }

    .my-md-24 {
        margin-top: 20rem !important;
        margin-bottom: 20rem !important;
    }

    .my-md-25 {
        margin-top: 22.5rem !important;
        margin-bottom: 22.5rem !important;
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-md-6 {
        margin-top: 1.5rem !important;
    }

    .mt-md-7 {
        margin-top: 1.75rem !important;
    }

    .mt-md-8 {
        margin-top: 2rem !important;
    }

    .mt-md-9 {
        margin-top: 2.25rem !important;
    }

    .mt-md-10 {
        margin-top: 2.5rem !important;
    }

    .mt-md-11 {
        margin-top: 3rem !important;
    }

    .mt-md-12 {
        margin-top: 3.5rem !important;
    }

    .mt-md-13 {
        margin-top: 4rem !important;
    }

    .mt-md-14 {
        margin-top: 4.5rem !important;
    }

    .mt-md-15 {
        margin-top: 5rem !important;
    }

    .mt-md-16 {
        margin-top: 6rem !important;
    }

    .mt-md-17 {
        margin-top: 7rem !important;
    }

    .mt-md-18 {
        margin-top: 8rem !important;
    }

    .mt-md-19 {
        margin-top: 9rem !important;
    }

    .mt-md-20 {
        margin-top: 10rem !important;
    }

    .mt-md-21 {
        margin-top: 12.5rem !important;
    }

    .mt-md-22 {
        margin-top: 15rem !important;
    }

    .mt-md-23 {
        margin-top: 17.5rem !important;
    }

    .mt-md-24 {
        margin-top: 20rem !important;
    }

    .mt-md-25 {
        margin-top: 22.5rem !important;
    }

    .mt-md-auto {
        margin-top: auto !important;
    }

    .me-md-6 {
        margin-right: 1.5rem !important;
    }

    .me-md-7 {
        margin-right: 1.75rem !important;
    }

    .me-md-8 {
        margin-right: 2rem !important;
    }

    .me-md-9 {
        margin-right: 2.25rem !important;
    }

    .me-md-10 {
        margin-right: 2.5rem !important;
    }

    .me-md-11 {
        margin-right: 3rem !important;
    }

    .me-md-12 {
        margin-right: 3.5rem !important;
    }

    .me-md-13 {
        margin-right: 4rem !important;
    }

    .me-md-14 {
        margin-right: 4.5rem !important;
    }

    .me-md-15 {
        margin-right: 5rem !important;
    }

    .me-md-16 {
        margin-right: 6rem !important;
    }

    .me-md-17 {
        margin-right: 7rem !important;
    }

    .me-md-18 {
        margin-right: 8rem !important;
    }

    .me-md-19 {
        margin-right: 9rem !important;
    }

    .me-md-20 {
        margin-right: 10rem !important;
    }

    .me-md-21 {
        margin-right: 12.5rem !important;
    }

    .me-md-22 {
        margin-right: 15rem !important;
    }

    .me-md-23 {
        margin-right: 17.5rem !important;
    }

    .me-md-24 {
        margin-right: 20rem !important;
    }

    .me-md-25 {
        margin-right: 22.5rem !important;
    }

    .me-md-auto {
        margin-right: auto !important;
    }


    .mb-md-6 {
        margin-bottom: 1.5rem !important;
    }

    .mb-md-7 {
        margin-bottom: 1.75rem !important;
    }

    .mb-md-8 {
        margin-bottom: 2rem !important;
    }

    .mb-md-9 {
        margin-bottom: 2.25rem !important;
    }

    .mb-md-10 {
        margin-bottom: 2.5rem !important;
    }

    .mb-md-11 {
        margin-bottom: 3rem !important;
    }

    .mb-md-12 {
        margin-bottom: 3.5rem !important;
    }

    .mb-md-13 {
        margin-bottom: 4rem !important;
    }

    .mb-md-14 {
        margin-bottom: 4.5rem !important;
    }

    .mb-md-15 {
        margin-bottom: 5rem !important;
    }

    .mb-md-16 {
        margin-bottom: 6rem !important;
    }

    .mb-md-17 {
        margin-bottom: 7rem !important;
    }

    .mb-md-18 {
        margin-bottom: 8rem !important;
    }

    .mb-md-19 {
        margin-bottom: 9rem !important;
    }

    .mb-md-20 {
        margin-bottom: 10rem !important;
    }

    .mb-md-21 {
        margin-bottom: 12.5rem !important;
    }

    .mb-md-22 {
        margin-bottom: 15rem !important;
    }

    .mb-md-23 {
        margin-bottom: 17.5rem !important;
    }

    .mb-md-24 {
        margin-bottom: 20rem !important;
    }

    .mb-md-25 {
        margin-bottom: 22.5rem !important;
    }

    .mb-md-auto {
        margin-bottom: auto !important;
    }

    .ms-md-6 {
        margin-left: 1.5rem !important;
    }

    .ms-md-7 {
        margin-left: 1.75rem !important;
    }

    .ms-md-8 {
        margin-left: 2rem !important;
    }

    .ms-md-9 {
        margin-left: 2.25rem !important;
    }

    .ms-md-10 {
        margin-left: 2.5rem !important;
    }

    .ms-md-11 {
        margin-left: 3rem !important;
    }

    .ms-md-12 {
        margin-left: 3.5rem !important;
    }

    .ms-md-13 {
        margin-left: 4rem !important;
    }

    .ms-md-14 {
        margin-left: 4.5rem !important;
    }

    .ms-md-15 {
        margin-left: 5rem !important;
    }

    .ms-md-16 {
        margin-left: 6rem !important;
    }

    .ms-md-17 {
        margin-left: 7rem !important;
    }

    .ms-md-18 {
        margin-left: 8rem !important;
    }

    .ms-md-19 {
        margin-left: 9rem !important;
    }

    .ms-md-20 {
        margin-left: 10rem !important;
    }

    .ms-md-21 {
        margin-left: 12.5rem !important;
    }

    .ms-md-22 {
        margin-left: 15rem !important;
    }

    .ms-md-23 {
        margin-left: 17.5rem !important;
    }

    .ms-md-24 {
        margin-left: 20rem !important;
    }

    .ms-md-25 {
        margin-left: 22.5rem !important;
    }


    .m-md-n6 {
        margin: -1.5rem !important;
    }

    .m-md-n7 {
        margin: -1.75rem !important;
    }

    .m-md-n8 {
        margin: -2rem !important;
    }

    .m-md-n9 {
        margin: -2.25rem !important;
    }

    .m-md-n10 {
        margin: -2.5rem !important;
    }

    .m-md-n11 {
        margin: -3rem !important;
    }

    .m-md-n12 {
        margin: -3.5rem !important;
    }

    .m-md-n13 {
        margin: -4rem !important;
    }

    .m-md-n14 {
        margin: -4.5rem !important;
    }

    .m-md-n15 {
        margin: -5rem !important;
    }

    .m-md-n16 {
        margin: -6rem !important;
    }

    .m-md-n17 {
        margin: -7rem !important;
    }

    .m-md-n18 {
        margin: -8rem !important;
    }

    .m-md-n19 {
        margin: -9rem !important;
    }

    .m-md-n20 {
        margin: -10rem !important;
    }

    .m-md-n21 {
        margin: -12.5rem !important;
    }

    .m-md-n22 {
        margin: -15rem !important;
    }

    .m-md-n23 {
        margin: -17.5rem !important;
    }

    .m-md-n24 {
        margin: -20rem !important;
    }

    .m-md-n25 {
        margin: -22.5rem !important;
    }

    .mx-md-n6 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important;
    }

    .mx-md-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important;
    }

    .mx-md-n8 {
        margin-right: -2rem !important;
        margin-left: -2rem !important;
    }

    .mx-md-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important;
    }

    .mx-md-n10 {
        margin-right: -2.5rem !important;
        margin-left: -2.5rem !important;
    }

    .mx-md-n11 {
        margin-right: -3rem !important;
        margin-left: -3rem !important;
    }

    .mx-md-n12 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important;
    }

    .mx-md-n13 {
        margin-right: -4rem !important;
        margin-left: -4rem !important;
    }

    .mx-md-n14 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important;
    }

    .mx-md-n15 {
        margin-right: -5rem !important;
        margin-left: -5rem !important;
    }

    .mx-md-n16 {
        margin-right: -6rem !important;
        margin-left: -6rem !important;
    }

    .mx-md-n17 {
        margin-right: -7rem !important;
        margin-left: -7rem !important;
    }

    .mx-md-n18 {
        margin-right: -8rem !important;
        margin-left: -8rem !important;
    }

    .mx-md-n19 {
        margin-right: -9rem !important;
        margin-left: -9rem !important;
    }

    .mx-md-n20 {
        margin-right: -10rem !important;
        margin-left: -10rem !important;
    }

    .mx-md-n21 {
        margin-right: -12.5rem !important;
        margin-left: -12.5rem !important;
    }

    .mx-md-n22 {
        margin-right: -15rem !important;
        margin-left: -15rem !important;
    }

    .mx-md-n23 {
        margin-right: -17.5rem !important;
        margin-left: -17.5rem !important;
    }

    .mx-md-n24 {
        margin-right: -20rem !important;
        margin-left: -20rem !important;
    }

    .mx-md-n25 {
        margin-right: -22.5rem !important;
        margin-left: -22.5rem !important;
    }

    .my-md-n1 {
        margin-top: -0.25rem !important;
        margin-bottom: -0.25rem !important;
    }

    .my-md-n2 {
        margin-top: -0.5rem !important;
        margin-bottom: -0.5rem !important;
    }

    .my-md-n3 {
        margin-top: -0.75rem !important;
        margin-bottom: -0.75rem !important;
    }

    .my-md-n4 {
        margin-top: -1rem !important;
        margin-bottom: -1rem !important;
    }

    .my-md-n5 {
        margin-top: -1.25rem !important;
        margin-bottom: -1.25rem !important;
    }

    .my-md-n6 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important;
    }

    .my-md-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important;
    }

    .my-md-n8 {
        margin-top: -2rem !important;
        margin-bottom: -2rem !important;
    }

    .my-md-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important;
    }

    .my-md-n10 {
        margin-top: -2.5rem !important;
        margin-bottom: -2.5rem !important;
    }

    .my-md-n11 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important;
    }

    .my-md-n12 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important;
    }

    .my-md-n13 {
        margin-top: -4rem !important;
        margin-bottom: -4rem !important;
    }

    .my-md-n14 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important;
    }

    .my-md-n15 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important;
    }

    .my-md-n16 {
        margin-top: -6rem !important;
        margin-bottom: -6rem !important;
    }

    .my-md-n17 {
        margin-top: -7rem !important;
        margin-bottom: -7rem !important;
    }

    .my-md-n18 {
        margin-top: -8rem !important;
        margin-bottom: -8rem !important;
    }

    .my-md-n19 {
        margin-top: -9rem !important;
        margin-bottom: -9rem !important;
    }

    .my-md-n20 {
        margin-top: -10rem !important;
        margin-bottom: -10rem !important;
    }

    .my-md-n21 {
        margin-top: -12.5rem !important;
        margin-bottom: -12.5rem !important;
    }

    .my-md-n22 {
        margin-top: -15rem !important;
        margin-bottom: -15rem !important;
    }

    .my-md-n23 {
        margin-top: -17.5rem !important;
        margin-bottom: -17.5rem !important;
    }

    .my-md-n24 {
        margin-top: -20rem !important;
        margin-bottom: -20rem !important;
    }

    .my-md-n25 {
        margin-top: -22.5rem !important;
        margin-bottom: -22.5rem !important;
    }


    .mt-md-n6 {
        margin-top: -1.5rem !important;
    }

    .mt-md-n7 {
        margin-top: -1.75rem !important;
    }

    .mt-md-n8 {
        margin-top: -2rem !important;
    }

    .mt-md-n9 {
        margin-top: -2.25rem !important;
    }

    .mt-md-n10 {
        margin-top: -2.5rem !important;
    }

    .mt-md-n11 {
        margin-top: -3rem !important;
    }

    .mt-md-n12 {
        margin-top: -3.5rem !important;
    }

    .mt-md-n13 {
        margin-top: -4rem !important;
    }

    .mt-md-n14 {
        margin-top: -4.5rem !important;
    }

    .mt-md-n15 {
        margin-top: -5rem !important;
    }

    .mt-md-n16 {
        margin-top: -6rem !important;
    }

    .mt-md-n17 {
        margin-top: -7rem !important;
    }

    .mt-md-n18 {
        margin-top: -8rem !important;
    }

    .mt-md-n19 {
        margin-top: -9rem !important;
    }

    .mt-md-n20 {
        margin-top: -10rem !important;
    }

    .mt-md-n21 {
        margin-top: -12.5rem !important;
    }

    .mt-md-n22 {
        margin-top: -15rem !important;
    }

    .mt-md-n23 {
        margin-top: -17.5rem !important;
    }

    .mt-md-n24 {
        margin-top: -20rem !important;
    }

    .mt-md-n25 {
        margin-top: -22.5rem !important;
    }


    .me-md-n6 {
        margin-right: -1.5rem !important;
    }

    .me-md-n7 {
        margin-right: -1.75rem !important;
    }

    .me-md-n8 {
        margin-right: -2rem !important;
    }

    .me-md-n9 {
        margin-right: -2.25rem !important;
    }

    .me-md-n10 {
        margin-right: -2.5rem !important;
    }

    .me-md-n11 {
        margin-right: -3rem !important;
    }

    .me-md-n12 {
        margin-right: -3.5rem !important;
    }

    .me-md-n13 {
        margin-right: -4rem !important;
    }

    .me-md-n14 {
        margin-right: -4.5rem !important;
    }

    .me-md-n15 {
        margin-right: -5rem !important;
    }

    .me-md-n16 {
        margin-right: -6rem !important;
    }

    .me-md-n17 {
        margin-right: -7rem !important;
    }

    .me-md-n18 {
        margin-right: -8rem !important;
    }

    .me-md-n19 {
        margin-right: -9rem !important;
    }

    .me-md-n20 {
        margin-right: -10rem !important;
    }

    .me-md-n21 {
        margin-right: -12.5rem !important;
    }

    .me-md-n22 {
        margin-right: -15rem !important;
    }

    .me-md-n23 {
        margin-right: -17.5rem !important;
    }

    .me-md-n24 {
        margin-right: -20rem !important;
    }

    .me-md-n25 {
        margin-right: -22.5rem !important;
    }


    .mb-md-n6 {
        margin-bottom: -1.5rem !important;
    }

    .mb-md-n7 {
        margin-bottom: -1.75rem !important;
    }

    .mb-md-n8 {
        margin-bottom: -2rem !important;
    }

    .mb-md-n9 {
        margin-bottom: -2.25rem !important;
    }

    .mb-md-n10 {
        margin-bottom: -2.5rem !important;
    }

    .mb-md-n11 {
        margin-bottom: -3rem !important;
    }

    .mb-md-n12 {
        margin-bottom: -3.5rem !important;
    }

    .mb-md-n13 {
        margin-bottom: -4rem !important;
    }

    .mb-md-n14 {
        margin-bottom: -4.5rem !important;
    }

    .mb-md-n15 {
        margin-bottom: -5rem !important;
    }

    .mb-md-n16 {
        margin-bottom: -6rem !important;
    }

    .mb-md-n17 {
        margin-bottom: -7rem !important;
    }

    .mb-md-n18 {
        margin-bottom: -8rem !important;
    }

    .mb-md-n19 {
        margin-bottom: -9rem !important;
    }

    .mb-md-n20 {
        margin-bottom: -10rem !important;
    }

    .mb-md-n21 {
        margin-bottom: -12.5rem !important;
    }

    .mb-md-n22 {
        margin-bottom: -15rem !important;
    }

    .mb-md-n23 {
        margin-bottom: -17.5rem !important;
    }

    .mb-md-n24 {
        margin-bottom: -20rem !important;
    }

    .mb-md-n25 {
        margin-bottom: -22.5rem !important;
    }

    .ms-md-n6 {
        margin-left: -1.5rem !important;
    }

    .ms-md-n7 {
        margin-left: -1.75rem !important;
    }

    .ms-md-n8 {
        margin-left: -2rem !important;
    }

    .ms-md-n9 {
        margin-left: -2.25rem !important;
    }

    .ms-md-n10 {
        margin-left: -2.5rem !important;
    }

    .ms-md-n11 {
        margin-left: -3rem !important;
    }

    .ms-md-n12 {
        margin-left: -3.5rem !important;
    }

    .ms-md-n13 {
        margin-left: -4rem !important;
    }

    .ms-md-n14 {
        margin-left: -4.5rem !important;
    }

    .ms-md-n15 {
        margin-left: -5rem !important;
    }

    .ms-md-n16 {
        margin-left: -6rem !important;
    }

    .ms-md-n17 {
        margin-left: -7rem !important;
    }

    .ms-md-n18 {
        margin-left: -8rem !important;
    }

    .ms-md-n19 {
        margin-left: -9rem !important;
    }

    .ms-md-n20 {
        margin-left: -10rem !important;
    }

    .ms-md-n21 {
        margin-left: -12.5rem !important;
    }

    .ms-md-n22 {
        margin-left: -15rem !important;
    }

    .ms-md-n23 {
        margin-left: -17.5rem !important;
    }

    .ms-md-n24 {
        margin-left: -20rem !important;
    }

    .ms-md-n25 {
        margin-left: -22.5rem !important;
    }

    /* Padding */
    .p-md-6 {
        padding: 1.5rem !important;
    }

    .p-md-7 {
        padding: 1.75rem !important;
    }

    .p-md-8 {
        padding: 2rem !important;
    }

    .p-md-9 {
        padding: 2.25rem !important;
    }

    .p-md-10 {
        padding: 2.5rem !important;
    }

    .p-md-11 {
        padding: 3rem !important;
    }

    .p-md-12 {
        padding: 3.5rem !important;
    }

    .p-md-13 {
        padding: 4rem !important;
    }

    .p-md-14 {
        padding: 4.5rem !important;
    }

    .p-md-15 {
        padding: 5rem !important;
    }

    .p-md-16 {
        padding: 6rem !important;
    }

    .p-md-17 {
        padding: 7rem !important;
    }

    .p-md-18 {
        padding: 8rem !important;
    }

    .p-md-19 {
        padding: 9rem !important;
    }

    .p-md-20 {
        padding: 10rem !important;
    }

    .p-md-21 {
        padding: 12.5rem !important;
    }

    .p-md-22 {
        padding: 15rem !important;
    }

    .p-md-23 {
        padding: 17.5rem !important;
    }

    .p-md-24 {
        padding: 20rem !important;
    }

    .p-md-25 {
        padding: 22.5rem !important;
    }


    .px-md-6 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-md-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important;
    }

    .px-md-8 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .px-md-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important;
    }

    .px-md-10 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

    .px-md-11 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-md-12 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .px-md-13 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .px-md-14 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important;
    }

    .px-md-15 {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }

    .px-md-16 {
        padding-right: 6rem !important;
        padding-left: 6rem !important;
    }

    .px-md-17 {
        padding-right: 7rem !important;
        padding-left: 7rem !important;
    }

    .px-md-18 {
        padding-right: 8rem !important;
        padding-left: 8rem !important;
    }

    .px-md-19 {
        padding-right: 9rem !important;
        padding-left: 9rem !important;
    }

    .px-md-20 {
        padding-right: 10rem !important;
        padding-left: 10rem !important;
    }

    .px-md-21 {
        padding-right: 12.5rem !important;
        padding-left: 12.5rem !important;
    }

    .px-md-22 {
        padding-right: 15rem !important;
        padding-left: 15rem !important;
    }

    .px-md-23 {
        padding-right: 17.5rem !important;
        padding-left: 17.5rem !important;
    }

    .px-md-24 {
        padding-right: 20rem !important;
        padding-left: 20rem !important;
    }

    .px-md-25 {
        padding-right: 22.5rem !important;
        padding-left: 22.5rem !important;
    }


    .py-md-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-md-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    .py-md-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-md-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }

    .py-md-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-md-11 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-md-12 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-md-13 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-md-14 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

    .py-md-15 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .py-md-16 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .py-md-17 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }

    .py-md-18 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }

    .py-md-19 {
        padding-top: 9rem !important;
        padding-bottom: 9rem !important;
    }

    .py-md-20 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }

    .py-md-21 {
        padding-top: 12.5rem !important;
        padding-bottom: 12.5rem !important;
    }

    .py-md-22 {
        padding-top: 15rem !important;
        padding-bottom: 15rem !important;
    }

    .py-md-23 {
        padding-top: 17.5rem !important;
        padding-bottom: 17.5rem !important;
    }

    .py-md-24 {
        padding-top: 20rem !important;
        padding-bottom: 20rem !important;
    }

    .py-md-25 {
        padding-top: 22.5rem !important;
        padding-bottom: 22.5rem !important;
    }

    .pt-md-6 {
        padding-top: 1.5rem !important;
    }

    .pt-md-7 {
        padding-top: 1.75rem !important;
    }

    .pt-md-8 {
        padding-top: 2rem !important;
    }

    .pt-md-9 {
        padding-top: 2.25rem !important;
    }

    .pt-md-10 {
        padding-top: 2.5rem !important;
    }

    .pt-md-11 {
        padding-top: 3rem !important;
    }

    .pt-md-12 {
        padding-top: 3.5rem !important;
    }

    .pt-md-13 {
        padding-top: 4rem !important;
    }

    .pt-md-14 {
        padding-top: 4.5rem !important;
    }

    .pt-md-15 {
        padding-top: 5rem !important;
    }

    .pt-md-16 {
        padding-top: 6rem !important;
    }

    .pt-md-17 {
        padding-top: 7rem !important;
    }

    .pt-md-18 {
        padding-top: 8rem !important;
    }

    .pt-md-19 {
        padding-top: 9rem !important;
    }

    .pt-md-20 {
        padding-top: 10rem !important;
    }

    .pt-md-21 {
        padding-top: 12.5rem !important;
    }

    .pt-md-22 {
        padding-top: 15rem !important;
    }

    .pt-md-23 {
        padding-top: 17.5rem !important;
    }

    .pt-md-24 {
        padding-top: 20rem !important;
    }

    .pt-md-25 {
        padding-top: 22.5rem !important;
    }

    .pe-md-6 {
        padding-right: 1.5rem !important;
    }

    .pe-md-7 {
        padding-right: 1.75rem !important;
    }

    .pe-md-8 {
        padding-right: 2rem !important;
    }

    .pe-md-9 {
        padding-right: 2.25rem !important;
    }

    .pe-md-10 {
        padding-right: 2.5rem !important;
    }

    .pe-md-11 {
        padding-right: 3rem !important;
    }

    .pe-md-12 {
        padding-right: 3.5rem !important;
    }

    .pe-md-13 {
        padding-right: 4rem !important;
    }

    .pe-md-14 {
        padding-right: 4.5rem !important;
    }

    .pe-md-15 {
        padding-right: 5rem !important;
    }

    .pe-md-16 {
        padding-right: 6rem !important;
    }

    .pe-md-17 {
        padding-right: 7rem !important;
    }

    .pe-md-18 {
        padding-right: 8rem !important;
    }

    .pe-md-19 {
        padding-right: 9rem !important;
    }

    .pe-md-20 {
        padding-right: 10rem !important;
    }

    .pe-md-21 {
        padding-right: 12.5rem !important;
    }

    .pe-md-22 {
        padding-right: 15rem !important;
    }

    .pe-md-23 {
        padding-right: 17.5rem !important;
    }

    .pe-md-24 {
        padding-right: 20rem !important;
    }

    .pe-md-25 {
        padding-right: 22.5rem !important;
    }


    .pb-md-6 {
        padding-bottom: 1.5rem !important;
    }

    .pb-md-7 {
        padding-bottom: 1.75rem !important;
    }

    .pb-md-8 {
        padding-bottom: 2rem !important;
    }

    .pb-md-9 {
        padding-bottom: 2.25rem !important;
    }

    .pb-md-10 {
        padding-bottom: 2.5rem !important;
    }

    .pb-md-11 {
        padding-bottom: 3rem !important;
    }

    .pb-md-12 {
        padding-bottom: 3.5rem !important;
    }

    .pb-md-13 {
        padding-bottom: 4rem !important;
    }

    .pb-md-14 {
        padding-bottom: 4.5rem !important;
    }

    .pb-md-15 {
        padding-bottom: 5rem !important;
    }

    .pb-md-16 {
        padding-bottom: 6rem !important;
    }

    .pb-md-17 {
        padding-bottom: 7rem !important;
    }

    .pb-md-18 {
        padding-bottom: 8rem !important;
    }

    .pb-md-19 {
        padding-bottom: 9rem !important;
    }

    .pb-md-20 {
        padding-bottom: 10rem !important;
    }

    .pb-md-21 {
        padding-bottom: 12.5rem !important;
    }

    .pb-md-22 {
        padding-bottom: 15rem !important;
    }

    .pb-md-23 {
        padding-bottom: 17.5rem !important;
    }

    .pb-md-24 {
        padding-bottom: 20rem !important;
    }

    .pb-md-25 {
        padding-bottom: 22.5rem !important;
    }

    .ps-md-6 {
        padding-left: 1.5rem !important;
    }

    .ps-md-7 {
        padding-left: 1.75rem !important;
    }

    .ps-md-8 {
        padding-left: 2rem !important;
    }

    .ps-md-9 {
        padding-left: 2.25rem !important;
    }

    .ps-md-10 {
        padding-left: 2.5rem !important;
    }

    .ps-md-11 {
        padding-left: 3rem !important;
    }

    .ps-md-12 {
        padding-left: 3.5rem !important;
    }

    .ps-md-13 {
        padding-left: 4rem !important;
    }

    .ps-md-14 {
        padding-left: 4.5rem !important;
    }

    .ps-md-15 {
        padding-left: 5rem !important;
    }

    .ps-md-16 {
        padding-left: 6rem !important;
    }

    .ps-md-17 {
        padding-left: 7rem !important;
    }

    .ps-md-18 {
        padding-left: 8rem !important;
    }

    .ps-md-19 {
        padding-left: 9rem !important;
    }

    .ps-md-20 {
        padding-left: 10rem !important;
    }

    .ps-md-21 {
        padding-left: 12.5rem !important;
    }

    .ps-md-22 {
        padding-left: 15rem !important;
    }

    .ps-md-23 {
        padding-left: 17.5rem !important;
    }

    .ps-md-24 {
        padding-left: 20rem !important;
    }

    .ps-md-25 {
        padding-left: 22.5rem !important;
    }
}

@media (min-width: 576px) {
    /* Gap custome */
    .gap-sm-6 {
        gap: 1.5rem !important;
    }

    .gap-sm-7 {
        gap: 1.75rem !important;
    }

    .gap-sm-8 {
        gap: 2rem !important;
    }

    .gap-sm-9 {
        gap: 2.25rem !important;
    }

    .gap-sm-10 {
        gap: 2.5rem !important;
    }

    .gap-sm-11 {
        gap: 3rem !important;
    }

    .gap-sm-12 {
        gap: 3.5rem !important;
    }

    .gap-sm-13 {
        gap: 4rem !important;
    }

    .gap-sm-14 {
        gap: 4.5rem !important;
    }

    .gap-sm-15 {
        gap: 5rem !important;
    }

    .gap-sm-16 {
        gap: 6rem !important;
    }

    .gap-sm-17 {
        gap: 7rem !important;
    }

    .gap-sm-18 {
        gap: 8rem !important;
    }

    .gap-sm-19 {
        gap: 9rem !important;
    }

    .gap-sm-20 {
        gap: 10rem !important;
    }

    .gap-sm-21 {
        gap: 12.5rem !important;
    }

    .gap-sm-22 {
        gap: 15rem !important;
    }

    .gap-sm-23 {
        gap: 17.5rem !important;
    }

    .gap-sm-24 {
        gap: 20rem !important;
    }

    .gap-sm-25 {
        gap: 22.5rem !important;
    }
    /* Margin */
    .m-sm-6 {
        margin: 1.5rem !important;
    }

    .m-sm-7 {
        margin: 1.75rem !important;
    }

    .m-sm-8 {
        margin: 2rem !important;
    }

    .m-sm-9 {
        margin: 2.25rem !important;
    }

    .m-sm-10 {
        margin: 2.5rem !important;
    }

    .m-sm-11 {
        margin: 3rem !important;
    }

    .m-sm-12 {
        margin: 3.5rem !important;
    }

    .m-sm-13 {
        margin: 4rem !important;
    }

    .m-sm-14 {
        margin: 4.5rem !important;
    }

    .m-sm-15 {
        margin: 5rem !important;
    }

    .m-sm-16 {
        margin: 6rem !important;
    }

    .m-sm-17 {
        margin: 7rem !important;
    }

    .m-sm-18 {
        margin: 8rem !important;
    }

    .m-sm-19 {
        margin: 9rem !important;
    }

    .m-sm-20 {
        margin: 10rem !important;
    }

    .m-sm-21 {
        margin: 12.5rem !important;
    }

    .m-sm-22 {
        margin: 15rem !important;
    }

    .m-sm-23 {
        margin: 17.5rem !important;
    }

    .m-sm-24 {
        margin: 20rem !important;
    }

    .m-sm-25 {
        margin: 22.5rem !important;
    }

    .mx-sm-6 {
        margin-right: 1.5rem !important;
        margin-left: 1.5rem !important;
    }

    .mx-sm-7 {
        margin-right: 1.75rem !important;
        margin-left: 1.75rem !important;
    }

    .mx-sm-8 {
        margin-right: 2rem !important;
        margin-left: 2rem !important;
    }

    .mx-sm-9 {
        margin-right: 2.25rem !important;
        margin-left: 2.25rem !important;
    }

    .mx-sm-10 {
        margin-right: 2.5rem !important;
        margin-left: 2.5rem !important;
    }

    .mx-sm-11 {
        margin-right: 3rem !important;
        margin-left: 3rem !important;
    }

    .mx-sm-12 {
        margin-right: 3.5rem !important;
        margin-left: 3.5rem !important;
    }

    .mx-sm-13 {
        margin-right: 4rem !important;
        margin-left: 4rem !important;
    }

    .mx-sm-14 {
        margin-right: 4.5rem !important;
        margin-left: 4.5rem !important;
    }

    .mx-sm-15 {
        margin-right: 5rem !important;
        margin-left: 5rem !important;
    }

    .mx-sm-16 {
        margin-right: 6rem !important;
        margin-left: 6rem !important;
    }

    .mx-sm-17 {
        margin-right: 7rem !important;
        margin-left: 7rem !important;
    }

    .mx-sm-18 {
        margin-right: 8rem !important;
        margin-left: 8rem !important;
    }

    .mx-sm-19 {
        margin-right: 9rem !important;
        margin-left: 9rem !important;
    }

    .mx-sm-20 {
        margin-right: 10rem !important;
        margin-left: 10rem !important;
    }

    .mx-sm-21 {
        margin-right: 12.5rem !important;
        margin-left: 12.5rem !important;
    }

    .mx-sm-22 {
        margin-right: 15rem !important;
        margin-left: 15rem !important;
    }

    .mx-sm-23 {
        margin-right: 17.5rem !important;
        margin-left: 17.5rem !important;
    }

    .mx-sm-24 {
        margin-right: 20rem !important;
        margin-left: 20rem !important;
    }

    .mx-sm-25 {
        margin-right: 22.5rem !important;
        margin-left: 22.5rem !important;
    }

    .my-sm-6 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .my-sm-7 {
        margin-top: 1.75rem !important;
        margin-bottom: 1.75rem !important;
    }

    .my-sm-8 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .my-sm-9 {
        margin-top: 2.25rem !important;
        margin-bottom: 2.25rem !important;
    }

    .my-sm-10 {
        margin-top: 2.5rem !important;
        margin-bottom: 2.5rem !important;
    }

    .my-sm-11 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .my-sm-12 {
        margin-top: 3.5rem !important;
        margin-bottom: 3.5rem !important;
    }

    .my-sm-13 {
        margin-top: 4rem !important;
        margin-bottom: 4rem !important;
    }

    .my-sm-14 {
        margin-top: 4.5rem !important;
        margin-bottom: 4.5rem !important;
    }

    .my-sm-15 {
        margin-top: 5rem !important;
        margin-bottom: 5rem !important;
    }

    .my-sm-16 {
        margin-top: 6rem !important;
        margin-bottom: 6rem !important;
    }

    .my-sm-17 {
        margin-top: 7rem !important;
        margin-bottom: 7rem !important;
    }

    .my-sm-18 {
        margin-top: 8rem !important;
        margin-bottom: 8rem !important;
    }

    .my-sm-19 {
        margin-top: 9rem !important;
        margin-bottom: 9rem !important;
    }

    .my-sm-20 {
        margin-top: 10rem !important;
        margin-bottom: 10rem !important;
    }

    .my-sm-21 {
        margin-top: 12.5rem !important;
        margin-bottom: 12.5rem !important;
    }

    .my-sm-22 {
        margin-top: 15rem !important;
        margin-bottom: 15rem !important;
    }

    .my-sm-23 {
        margin-top: 17.5rem !important;
        margin-bottom: 17.5rem !important;
    }

    .my-sm-24 {
        margin-top: 20rem !important;
        margin-bottom: 20rem !important;
    }

    .my-sm-25 {
        margin-top: 22.5rem !important;
        margin-bottom: 22.5rem !important;
    }

    .mt-sm-6 {
        margin-top: 1.5rem !important;
    }

    .mt-sm-7 {
        margin-top: 1.75rem !important;
    }

    .mt-sm-8 {
        margin-top: 2rem !important;
    }

    .mt-sm-9 {
        margin-top: 2.25rem !important;
    }

    .mt-sm-10 {
        margin-top: 2.5rem !important;
    }

    .mt-sm-11 {
        margin-top: 3rem !important;
    }

    .mt-sm-12 {
        margin-top: 3.5rem !important;
    }

    .mt-sm-13 {
        margin-top: 4rem !important;
    }

    .mt-sm-14 {
        margin-top: 4.5rem !important;
    }

    .mt-sm-15 {
        margin-top: 5rem !important;
    }

    .mt-sm-16 {
        margin-top: 6rem !important;
    }

    .mt-sm-17 {
        margin-top: 7rem !important;
    }

    .mt-sm-18 {
        margin-top: 8rem !important;
    }

    .mt-sm-19 {
        margin-top: 9rem !important;
    }

    .mt-sm-20 {
        margin-top: 10rem !important;
    }

    .mt-sm-21 {
        margin-top: 12.5rem !important;
    }

    .mt-sm-22 {
        margin-top: 15rem !important;
    }

    .mt-sm-23 {
        margin-top: 17.5rem !important;
    }

    .mt-sm-24 {
        margin-top: 20rem !important;
    }

    .mt-sm-25 {
        margin-top: 22.5rem !important;
    }

    .me-sm-6 {
        margin-right: 1.5rem !important;
    }

    .me-sm-7 {
        margin-right: 1.75rem !important;
    }

    .me-sm-8 {
        margin-right: 2rem !important;
    }

    .me-sm-9 {
        margin-right: 2.25rem !important;
    }

    .me-sm-10 {
        margin-right: 2.5rem !important;
    }

    .me-sm-11 {
        margin-right: 3rem !important;
    }

    .me-sm-12 {
        margin-right: 3.5rem !important;
    }

    .me-sm-13 {
        margin-right: 4rem !important;
    }

    .me-sm-14 {
        margin-right: 4.5rem !important;
    }

    .me-sm-15 {
        margin-right: 5rem !important;
    }

    .me-sm-16 {
        margin-right: 6rem !important;
    }

    .me-sm-17 {
        margin-right: 7rem !important;
    }

    .me-sm-18 {
        margin-right: 8rem !important;
    }

    .me-sm-19 {
        margin-right: 9rem !important;
    }

    .me-sm-20 {
        margin-right: 10rem !important;
    }

    .me-sm-21 {
        margin-right: 12.5rem !important;
    }

    .me-sm-22 {
        margin-right: 15rem !important;
    }

    .me-sm-23 {
        margin-right: 17.5rem !important;
    }

    .me-sm-24 {
        margin-right: 20rem !important;
    }

    .me-sm-25 {
        margin-right: 22.5rem !important;
    }

    .mb-sm-6 {
        margin-bottom: 1.5rem !important;
    }

    .mb-sm-7 {
        margin-bottom: 1.75rem !important;
    }

    .mb-sm-8 {
        margin-bottom: 2rem !important;
    }

    .mb-sm-9 {
        margin-bottom: 2.25rem !important;
    }

    .mb-sm-10 {
        margin-bottom: 2.5rem !important;
    }

    .mb-sm-11 {
        margin-bottom: 3rem !important;
    }

    .mb-sm-12 {
        margin-bottom: 3.5rem !important;
    }

    .mb-sm-13 {
        margin-bottom: 4rem !important;
    }

    .mb-sm-14 {
        margin-bottom: 4.5rem !important;
    }

    .mb-sm-15 {
        margin-bottom: 5rem !important;
    }

    .mb-sm-16 {
        margin-bottom: 6rem !important;
    }

    .mb-sm-17 {
        margin-bottom: 7rem !important;
    }

    .mb-sm-18 {
        margin-bottom: 8rem !important;
    }

    .mb-sm-19 {
        margin-bottom: 9rem !important;
    }

    .mb-sm-20 {
        margin-bottom: 10rem !important;
    }

    .mb-sm-21 {
        margin-bottom: 12.5rem !important;
    }

    .mb-sm-22 {
        margin-bottom: 15rem !important;
    }

    .mb-sm-23 {
        margin-bottom: 17.5rem !important;
    }

    .mb-sm-24 {
        margin-bottom: 20rem !important;
    }

    .mb-sm-25 {
        margin-bottom: 22.5rem !important;
    }

    .ms-sm-6 {
        margin-left: 1.5rem !important;
    }

    .ms-sm-7 {
        margin-left: 1.75rem !important;
    }

    .ms-sm-8 {
        margin-left: 2rem !important;
    }

    .ms-sm-9 {
        margin-left: 2.25rem !important;
    }

    .ms-sm-10 {
        margin-left: 2.5rem !important;
    }

    .ms-sm-11 {
        margin-left: 3rem !important;
    }

    .ms-sm-12 {
        margin-left: 3.5rem !important;
    }

    .ms-sm-13 {
        margin-left: 4rem !important;
    }

    .ms-sm-14 {
        margin-left: 4.5rem !important;
    }

    .ms-sm-15 {
        margin-left: 5rem !important;
    }

    .ms-sm-16 {
        margin-left: 6rem !important;
    }

    .ms-sm-17 {
        margin-left: 7rem !important;
    }

    .ms-sm-18 {
        margin-left: 8rem !important;
    }

    .ms-sm-19 {
        margin-left: 9rem !important;
    }

    .ms-sm-20 {
        margin-left: 10rem !important;
    }

    .ms-sm-21 {
        margin-left: 12.5rem !important;
    }

    .ms-sm-22 {
        margin-left: 15rem !important;
    }

    .ms-sm-23 {
        margin-left: 17.5rem !important;
    }

    .ms-sm-24 {
        margin-left: 20rem !important;
    }

    .ms-sm-25 {
        margin-left: 22.5rem !important;
    }

    .m-sm-n6 {
        margin: -1.5rem !important;
    }

    .m-sm-n7 {
        margin: -1.75rem !important;
    }

    .m-sm-n8 {
        margin: -2rem !important;
    }

    .m-sm-n9 {
        margin: -2.25rem !important;
    }

    .m-sm-n10 {
        margin: -2.5rem !important;
    }

    .m-sm-n11 {
        margin: -3rem !important;
    }

    .m-sm-n12 {
        margin: -3.5rem !important;
    }

    .m-sm-n13 {
        margin: -4rem !important;
    }

    .m-sm-n14 {
        margin: -4.5rem !important;
    }

    .m-sm-n15 {
        margin: -5rem !important;
    }

    .m-sm-n16 {
        margin: -6rem !important;
    }

    .m-sm-n17 {
        margin: -7rem !important;
    }

    .m-sm-n18 {
        margin: -8rem !important;
    }

    .m-sm-n19 {
        margin: -9rem !important;
    }

    .m-sm-n20 {
        margin: -10rem !important;
    }

    .m-sm-n21 {
        margin: -12.5rem !important;
    }

    .m-sm-n22 {
        margin: -15rem !important;
    }

    .m-sm-n23 {
        margin: -17.5rem !important;
    }

    .m-sm-n24 {
        margin: -20rem !important;
    }

    .m-sm-n25 {
        margin: -22.5rem !important;
    }

    .mx-sm-n6 {
        margin-right: -1.5rem !important;
        margin-left: -1.5rem !important;
    }

    .mx-sm-n7 {
        margin-right: -1.75rem !important;
        margin-left: -1.75rem !important;
    }

    .mx-sm-n8 {
        margin-right: -2rem !important;
        margin-left: -2rem !important;
    }

    .mx-sm-n9 {
        margin-right: -2.25rem !important;
        margin-left: -2.25rem !important;
    }

    .mx-sm-n10 {
        margin-right: -2.5rem !important;
        margin-left: -2.5rem !important;
    }

    .mx-sm-n11 {
        margin-right: -3rem !important;
        margin-left: -3rem !important;
    }

    .mx-sm-n12 {
        margin-right: -3.5rem !important;
        margin-left: -3.5rem !important;
    }

    .mx-sm-n13 {
        margin-right: -4rem !important;
        margin-left: -4rem !important;
    }

    .mx-sm-n14 {
        margin-right: -4.5rem !important;
        margin-left: -4.5rem !important;
    }

    .mx-sm-n15 {
        margin-right: -5rem !important;
        margin-left: -5rem !important;
    }

    .mx-sm-n16 {
        margin-right: -6rem !important;
        margin-left: -6rem !important;
    }

    .mx-sm-n17 {
        margin-right: -7rem !important;
        margin-left: -7rem !important;
    }

    .mx-sm-n18 {
        margin-right: -8rem !important;
        margin-left: -8rem !important;
    }

    .mx-sm-n19 {
        margin-right: -9rem !important;
        margin-left: -9rem !important;
    }

    .mx-sm-n20 {
        margin-right: -10rem !important;
        margin-left: -10rem !important;
    }

    .mx-sm-n21 {
        margin-right: -12.5rem !important;
        margin-left: -12.5rem !important;
    }

    .mx-sm-n22 {
        margin-right: -15rem !important;
        margin-left: -15rem !important;
    }

    .mx-sm-n23 {
        margin-right: -17.5rem !important;
        margin-left: -17.5rem !important;
    }

    .mx-sm-n24 {
        margin-right: -20rem !important;
        margin-left: -20rem !important;
    }

    .mx-sm-n25 {
        margin-right: -22.5rem !important;
        margin-left: -22.5rem !important;
    }

    .my-sm-n6 {
        margin-top: -1.5rem !important;
        margin-bottom: -1.5rem !important;
    }

    .my-sm-n7 {
        margin-top: -1.75rem !important;
        margin-bottom: -1.75rem !important;
    }

    .my-sm-n8 {
        margin-top: -2rem !important;
        margin-bottom: -2rem !important;
    }

    .my-sm-n9 {
        margin-top: -2.25rem !important;
        margin-bottom: -2.25rem !important;
    }

    .my-sm-n10 {
        margin-top: -2.5rem !important;
        margin-bottom: -2.5rem !important;
    }

    .my-sm-n11 {
        margin-top: -3rem !important;
        margin-bottom: -3rem !important;
    }

    .my-sm-n12 {
        margin-top: -3.5rem !important;
        margin-bottom: -3.5rem !important;
    }

    .my-sm-n13 {
        margin-top: -4rem !important;
        margin-bottom: -4rem !important;
    }

    .my-sm-n14 {
        margin-top: -4.5rem !important;
        margin-bottom: -4.5rem !important;
    }

    .my-sm-n15 {
        margin-top: -5rem !important;
        margin-bottom: -5rem !important;
    }

    .my-sm-n16 {
        margin-top: -6rem !important;
        margin-bottom: -6rem !important;
    }

    .my-sm-n17 {
        margin-top: -7rem !important;
        margin-bottom: -7rem !important;
    }

    .my-sm-n18 {
        margin-top: -8rem !important;
        margin-bottom: -8rem !important;
    }

    .my-sm-n19 {
        margin-top: -9rem !important;
        margin-bottom: -9rem !important;
    }

    .my-sm-n20 {
        margin-top: -10rem !important;
        margin-bottom: -10rem !important;
    }

    .my-sm-n21 {
        margin-top: -12.5rem !important;
        margin-bottom: -12.5rem !important;
    }

    .my-sm-n22 {
        margin-top: -15rem !important;
        margin-bottom: -15rem !important;
    }

    .my-sm-n23 {
        margin-top: -17.5rem !important;
        margin-bottom: -17.5rem !important;
    }

    .my-sm-n24 {
        margin-top: -20rem !important;
        margin-bottom: -20rem !important;
    }

    .my-sm-n25 {
        margin-top: -22.5rem !important;
        margin-bottom: -22.5rem !important;
    }

    .mt-sm-n6 {
        margin-top: -1.5rem !important;
    }

    .mt-sm-n7 {
        margin-top: -1.75rem !important;
    }

    .mt-sm-n8 {
        margin-top: -2rem !important;
    }

    .mt-sm-n9 {
        margin-top: -2.25rem !important;
    }

    .mt-sm-n10 {
        margin-top: -2.5rem !important;
    }

    .mt-sm-n11 {
        margin-top: -3rem !important;
    }

    .mt-sm-n12 {
        margin-top: -3.5rem !important;
    }

    .mt-sm-n13 {
        margin-top: -4rem !important;
    }

    .mt-sm-n14 {
        margin-top: -4.5rem !important;
    }

    .mt-sm-n15 {
        margin-top: -5rem !important;
    }

    .mt-sm-n16 {
        margin-top: -6rem !important;
    }

    .mt-sm-n17 {
        margin-top: -7rem !important;
    }

    .mt-sm-n18 {
        margin-top: -8rem !important;
    }

    .mt-sm-n19 {
        margin-top: -9rem !important;
    }

    .mt-sm-n20 {
        margin-top: -10rem !important;
    }

    .mt-sm-n21 {
        margin-top: -12.5rem !important;
    }

    .mt-sm-n22 {
        margin-top: -15rem !important;
    }

    .mt-sm-n23 {
        margin-top: -17.5rem !important;
    }

    .mt-sm-n24 {
        margin-top: -20rem !important;
    }

    .mt-sm-n25 {
        margin-top: -22.5rem !important;
    }

    .me-sm-n6 {
        margin-right: -1.5rem !important;
    }

    .me-sm-n7 {
        margin-right: -1.75rem !important;
    }

    .me-sm-n8 {
        margin-right: -2rem !important;
    }

    .me-sm-n9 {
        margin-right: -2.25rem !important;
    }

    .me-sm-n10 {
        margin-right: -2.5rem !important;
    }

    .me-sm-n11 {
        margin-right: -3rem !important;
    }

    .me-sm-n12 {
        margin-right: -3.5rem !important;
    }

    .me-sm-n13 {
        margin-right: -4rem !important;
    }

    .me-sm-n14 {
        margin-right: -4.5rem !important;
    }

    .me-sm-n15 {
        margin-right: -5rem !important;
    }

    .me-sm-n16 {
        margin-right: -6rem !important;
    }

    .me-sm-n17 {
        margin-right: -7rem !important;
    }

    .me-sm-n18 {
        margin-right: -8rem !important;
    }

    .me-sm-n19 {
        margin-right: -9rem !important;
    }

    .me-sm-n20 {
        margin-right: -10rem !important;
    }

    .me-sm-n21 {
        margin-right: -12.5rem !important;
    }

    .me-sm-n22 {
        margin-right: -15rem !important;
    }

    .me-sm-n23 {
        margin-right: -17.5rem !important;
    }

    .me-sm-n24 {
        margin-right: -20rem !important;
    }

    .me-sm-n25 {
        margin-right: -22.5rem !important;
    }

    .mb-sm-n6 {
        margin-bottom: -1.5rem !important;
    }

    .mb-sm-n7 {
        margin-bottom: -1.75rem !important;
    }

    .mb-sm-n8 {
        margin-bottom: -2rem !important;
    }

    .mb-sm-n9 {
        margin-bottom: -2.25rem !important;
    }

    .mb-sm-n10 {
        margin-bottom: -2.5rem !important;
    }

    .mb-sm-n11 {
        margin-bottom: -3rem !important;
    }

    .mb-sm-n12 {
        margin-bottom: -3.5rem !important;
    }

    .mb-sm-n13 {
        margin-bottom: -4rem !important;
    }

    .mb-sm-n14 {
        margin-bottom: -4.5rem !important;
    }

    .mb-sm-n15 {
        margin-bottom: -5rem !important;
    }

    .mb-sm-n16 {
        margin-bottom: -6rem !important;
    }

    .mb-sm-n17 {
        margin-bottom: -7rem !important;
    }

    .mb-sm-n18 {
        margin-bottom: -8rem !important;
    }

    .mb-sm-n19 {
        margin-bottom: -9rem !important;
    }

    .mb-sm-n20 {
        margin-bottom: -10rem !important;
    }

    .mb-sm-n21 {
        margin-bottom: -12.5rem !important;
    }

    .mb-sm-n22 {
        margin-bottom: -15rem !important;
    }

    .mb-sm-n23 {
        margin-bottom: -17.5rem !important;
    }

    .mb-sm-n24 {
        margin-bottom: -20rem !important;
    }

    .mb-sm-n25 {
        margin-bottom: -22.5rem !important;
    }

    .ms-sm-n6 {
        margin-left: -1.5rem !important;
    }

    .ms-sm-n7 {
        margin-left: -1.75rem !important;
    }

    .ms-sm-n8 {
        margin-left: -2rem !important;
    }

    .ms-sm-n9 {
        margin-left: -2.25rem !important;
    }

    .ms-sm-n10 {
        margin-left: -2.5rem !important;
    }

    .ms-sm-n11 {
        margin-left: -3rem !important;
    }

    .ms-sm-n12 {
        margin-left: -3.5rem !important;
    }

    .ms-sm-n13 {
        margin-left: -4rem !important;
    }

    .ms-sm-n14 {
        margin-left: -4.5rem !important;
    }

    .ms-sm-n15 {
        margin-left: -5rem !important;
    }

    .ms-sm-n16 {
        margin-left: -6rem !important;
    }

    .ms-sm-n17 {
        margin-left: -7rem !important;
    }

    .ms-sm-n18 {
        margin-left: -8rem !important;
    }

    .ms-sm-n19 {
        margin-left: -9rem !important;
    }

    .ms-sm-n20 {
        margin-left: -10rem !important;
    }

    .ms-sm-n21 {
        margin-left: -12.5rem !important;
    }

    .ms-sm-n22 {
        margin-left: -15rem !important;
    }

    .ms-sm-n23 {
        margin-left: -17.5rem !important;
    }

    .ms-sm-n24 {
        margin-left: -20rem !important;
    }

    .ms-sm-n25 {
        margin-left: -22.5rem !important;
    }

    /* Padding */
    .p-sm-6 {
        padding: 1.5rem !important;
    }

    .p-sm-7 {
        padding: 1.75rem !important;
    }

    .p-sm-8 {
        padding: 2rem !important;
    }

    .p-sm-9 {
        padding: 2.25rem !important;
    }

    .p-sm-10 {
        padding: 2.5rem !important;
    }

    .p-sm-11 {
        padding: 3rem !important;
    }

    .p-sm-12 {
        padding: 3.5rem !important;
    }

    .p-sm-13 {
        padding: 4rem !important;
    }

    .p-sm-14 {
        padding: 4.5rem !important;
    }

    .p-sm-15 {
        padding: 5rem !important;
    }

    .p-sm-16 {
        padding: 6rem !important;
    }

    .p-sm-17 {
        padding: 7rem !important;
    }

    .p-sm-18 {
        padding: 8rem !important;
    }

    .p-sm-19 {
        padding: 9rem !important;
    }

    .p-sm-20 {
        padding: 10rem !important;
    }

    .p-sm-21 {
        padding: 12.5rem !important;
    }

    .p-sm-22 {
        padding: 15rem !important;
    }

    .p-sm-23 {
        padding: 17.5rem !important;
    }

    .p-sm-24 {
        padding: 20rem !important;
    }

    .p-sm-25 {
        padding: 22.5rem !important;
    }


    .px-sm-6 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .px-sm-7 {
        padding-right: 1.75rem !important;
        padding-left: 1.75rem !important;
    }

    .px-sm-8 {
        padding-right: 2rem !important;
        padding-left: 2rem !important;
    }

    .px-sm-9 {
        padding-right: 2.25rem !important;
        padding-left: 2.25rem !important;
    }

    .px-sm-10 {
        padding-right: 2.5rem !important;
        padding-left: 2.5rem !important;
    }

    .px-sm-11 {
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }

    .px-sm-12 {
        padding-right: 3.5rem !important;
        padding-left: 3.5rem !important;
    }

    .px-sm-13 {
        padding-right: 4rem !important;
        padding-left: 4rem !important;
    }

    .px-sm-14 {
        padding-right: 4.5rem !important;
        padding-left: 4.5rem !important;
    }

    .px-sm-15 {
        padding-right: 5rem !important;
        padding-left: 5rem !important;
    }

    .px-sm-16 {
        padding-right: 6rem !important;
        padding-left: 6rem !important;
    }

    .px-sm-17 {
        padding-right: 7rem !important;
        padding-left: 7rem !important;
    }

    .px-sm-18 {
        padding-right: 8rem !important;
        padding-left: 8rem !important;
    }

    .px-sm-19 {
        padding-right: 9rem !important;
        padding-left: 9rem !important;
    }

    .px-sm-20 {
        padding-right: 10rem !important;
        padding-left: 10rem !important;
    }

    .px-sm-21 {
        padding-right: 12.5rem !important;
        padding-left: 12.5rem !important;
    }

    .px-sm-22 {
        padding-right: 15rem !important;
        padding-left: 15rem !important;
    }

    .px-sm-23 {
        padding-right: 17.5rem !important;
        padding-left: 17.5rem !important;
    }

    .px-sm-24 {
        padding-right: 20rem !important;
        padding-left: 20rem !important;
    }

    .px-sm-25 {
        padding-right: 22.5rem !important;
        padding-left: 22.5rem !important;
    }

    .py-sm-6 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .py-sm-7 {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }

    .py-sm-8 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-sm-9 {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }

    .py-sm-10 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-sm-11 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .py-sm-12 {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    .py-sm-13 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    .py-sm-14 {
        padding-top: 4.5rem !important;
        padding-bottom: 4.5rem !important;
    }

    .py-sm-15 {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }

    .py-sm-16 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }

    .py-sm-17 {
        padding-top: 7rem !important;
        padding-bottom: 7rem !important;
    }

    .py-sm-18 {
        padding-top: 8rem !important;
        padding-bottom: 8rem !important;
    }

    .py-sm-19 {
        padding-top: 9rem !important;
        padding-bottom: 9rem !important;
    }

    .py-sm-20 {
        padding-top: 10rem !important;
        padding-bottom: 10rem !important;
    }

    .py-sm-21 {
        padding-top: 12.5rem !important;
        padding-bottom: 12.5rem !important;
    }

    .py-sm-22 {
        padding-top: 15rem !important;
        padding-bottom: 15rem !important;
    }

    .py-sm-23 {
        padding-top: 17.5rem !important;
        padding-bottom: 17.5rem !important;
    }

    .py-sm-24 {
        padding-top: 20rem !important;
        padding-bottom: 20rem !important;
    }

    .py-sm-25 {
        padding-top: 22.5rem !important;
        padding-bottom: 22.5rem !important;
    }

    .pt-sm-6 {
        padding-top: 1.5rem !important;
    }

    .pt-sm-7 {
        padding-top: 1.75rem !important;
    }

    .pt-sm-8 {
        padding-top: 2rem !important;
    }

    .pt-sm-9 {
        padding-top: 2.25rem !important;
    }

    .pt-sm-10 {
        padding-top: 2.5rem !important;
    }

    .pt-sm-11 {
        padding-top: 3rem !important;
    }

    .pt-sm-12 {
        padding-top: 3.5rem !important;
    }

    .pt-sm-13 {
        padding-top: 4rem !important;
    }

    .pt-sm-14 {
        padding-top: 4.5rem !important;
    }

    .pt-sm-15 {
        padding-top: 5rem !important;
    }

    .pt-sm-16 {
        padding-top: 6rem !important;
    }

    .pt-sm-17 {
        padding-top: 7rem !important;
    }

    .pt-sm-18 {
        padding-top: 8rem !important;
    }

    .pt-sm-19 {
        padding-top: 9rem !important;
    }

    .pt-sm-20 {
        padding-top: 10rem !important;
    }

    .pt-sm-21 {
        padding-top: 12.5rem !important;
    }

    .pt-sm-22 {
        padding-top: 15rem !important;
    }

    .pt-sm-23 {
        padding-top: 17.5rem !important;
    }

    .pt-sm-24 {
        padding-top: 20rem !important;
    }

    .pt-sm-25 {
        padding-top: 22.5rem !important;
    }


    .pe-sm-6 {
        padding-right: 1.5rem !important;
    }

    .pe-sm-7 {
        padding-right: 1.75rem !important;
    }

    .pe-sm-8 {
        padding-right: 2rem !important;
    }

    .pe-sm-9 {
        padding-right: 2.25rem !important;
    }

    .pe-sm-10 {
        padding-right: 2.5rem !important;
    }

    .pe-sm-11 {
        padding-right: 3rem !important;
    }

    .pe-sm-12 {
        padding-right: 3.5rem !important;
    }

    .pe-sm-13 {
        padding-right: 4rem !important;
    }

    .pe-sm-14 {
        padding-right: 4.5rem !important;
    }

    .pe-sm-15 {
        padding-right: 5rem !important;
    }

    .pe-sm-16 {
        padding-right: 6rem !important;
    }

    .pe-sm-17 {
        padding-right: 7rem !important;
    }

    .pe-sm-18 {
        padding-right: 8rem !important;
    }

    .pe-sm-19 {
        padding-right: 9rem !important;
    }

    .pe-sm-20 {
        padding-right: 10rem !important;
    }

    .pe-sm-21 {
        padding-right: 12.5rem !important;
    }

    .pe-sm-22 {
        padding-right: 15rem !important;
    }

    .pe-sm-23 {
        padding-right: 17.5rem !important;
    }

    .pe-sm-24 {
        padding-right: 20rem !important;
    }

    .pe-sm-25 {
        padding-right: 22.5rem !important;
    }

    .pb-sm-6 {
        padding-bottom: 1.5rem !important;
    }

    .pb-sm-7 {
        padding-bottom: 1.75rem !important;
    }

    .pb-sm-8 {
        padding-bottom: 2rem !important;
    }

    .pb-sm-9 {
        padding-bottom: 2.25rem !important;
    }

    .pb-sm-10 {
        padding-bottom: 2.5rem !important;
    }

    .pb-sm-11 {
        padding-bottom: 3rem !important;
    }

    .pb-sm-12 {
        padding-bottom: 3.5rem !important;
    }

    .pb-sm-13 {
        padding-bottom: 4rem !important;
    }

    .pb-sm-14 {
        padding-bottom: 4.5rem !important;
    }

    .pb-sm-15 {
        padding-bottom: 5rem !important;
    }

    .pb-sm-16 {
        padding-bottom: 6rem !important;
    }

    .pb-sm-17 {
        padding-bottom: 7rem !important;
    }

    .pb-sm-18 {
        padding-bottom: 8rem !important;
    }

    .pb-sm-19 {
        padding-bottom: 9rem !important;
    }

    .pb-sm-20 {
        padding-bottom: 10rem !important;
    }

    .pb-sm-21 {
        padding-bottom: 12.5rem !important;
    }

    .pb-sm-22 {
        padding-bottom: 15rem !important;
    }

    .pb-sm-23 {
        padding-bottom: 17.5rem !important;
    }

    .pb-sm-24 {
        padding-bottom: 20rem !important;
    }

    .pb-sm-25 {
        padding-bottom: 22.5rem !important;
    }

    .ps-sm-6 {
        padding-left: 1.5rem !important;
    }

    .ps-sm-7 {
        padding-left: 1.75rem !important;
    }

    .ps-sm-8 {
        padding-left: 2rem !important;
    }

    .ps-sm-9 {
        padding-left: 2.25rem !important;
    }

    .ps-sm-10 {
        padding-left: 2.5rem !important;
    }

    .ps-sm-11 {
        padding-left: 3rem !important;
    }

    .ps-sm-12 {
        padding-left: 3.5rem !important;
    }

    .ps-sm-13 {
        padding-left: 4rem !important;
    }

    .ps-sm-14 {
        padding-left: 4.5rem !important;
    }

    .ps-sm-15 {
        padding-left: 5rem !important;
    }

    .ps-sm-16 {
        padding-left: 6rem !important;
    }

    .ps-sm-17 {
        padding-left: 7rem !important;
    }

    .ps-sm-18 {
        padding-left: 8rem !important;
    }

    .ps-sm-19 {
        padding-left: 9rem !important;
    }

    .ps-sm-20 {
        padding-left: 10rem !important;
    }

    .ps-sm-21 {
        padding-left: 12.5rem !important;
    }

    .ps-sm-22 {
        padding-left: 15rem !important;
    }

    .ps-sm-23 {
        padding-left: 17.5rem !important;
    }

    .ps-sm-24 {
        padding-left: 20rem !important;
    }

    .ps-sm-25 {
        padding-left: 22.5rem !important;
    }
}

/* Gutter */

.g-6,
.gx-6 {
    --bs-gutter-x: 1.5rem;
}

.g-6,
.gy-6 {
    --bs-gutter-y: 1.5rem;
}

.g-7,
.gx-7 {
    --bs-gutter-x: 1.75rem;
}

.g-7,
.gy-7 {
    --bs-gutter-y: 1.75rem;
}

.g-8,
.gx-8 {
    --bs-gutter-x: 2rem;
}

.g-8,
.gy-8 {
    --bs-gutter-y: 2rem;
}

.g-9,
.gx-9 {
    --bs-gutter-x: 2.25rem;
}

.g-9,
.gy-9 {
    --bs-gutter-y: 2.25rem;
}

.g-10,
.gx-10 {
    --bs-gutter-x: 2.5rem;
}

.g-10,
.gy-10 {
    --bs-gutter-y: 2.5rem;
}

.g-11,
.gx-11 {
    --bs-gutter-x: 3rem;
}

.g-11,
.gy-11 {
    --bs-gutter-y: 3rem;
}

.g-12,
.gx-12 {
    --bs-gutter-x: 3.5rem;
}

.g-12,
.gy-12 {
    --bs-gutter-y: 3.5rem;
}

.g-13,
.gx-13 {
    --bs-gutter-x: 4rem;
}

.g-13,
.gy-13 {
    --bs-gutter-y: 4rem;
}

.g-14,
.gx-14 {
    --bs-gutter-x: 4.5rem;
}

.g-14,
.gy-14 {
    --bs-gutter-y: 4.5rem;
}

.g-15,
.gx-15 {
    --bs-gutter-x: 5rem;
}

.g-15,
.gy-15 {
    --bs-gutter-y: 5rem;
}

.g-16,
.gx-16 {
    --bs-gutter-x: 6rem;
}

.g-16,
.gy-16 {
    --bs-gutter-y: 6rem;
}

.g-17,
.gx-17 {
    --bs-gutter-x: 7rem;
}

.g-17,
.gy-17 {
    --bs-gutter-y: 7rem;
}

.g-18,
.gx-18 {
    --bs-gutter-x: 8rem;
}

.g-18,
.gy-18 {
    --bs-gutter-y: 8rem;
}

.g-19,
.gx-19 {
    --bs-gutter-x: 9rem;
}

.g-19,
.gy-19 {
    --bs-gutter-y: 9rem;
}

.g-20,
.gx-20 {
    --bs-gutter-x: 10rem;
}

.g-20,
.gy-20 {
    --bs-gutter-y: 10rem;
}

.g-21,
.gx-21 {
    --bs-gutter-x: 12.5rem;
}

.g-21,
.gy-21 {
    --bs-gutter-y: 12.5rem;
}

.g-22,
.gx-22 {
    --bs-gutter-x: 15rem;
}

.g-22,
.gy-22 {
    --bs-gutter-y: 15rem;
}

.g-23,
.gx-23 {
    --bs-gutter-x: 17.5rem;
}

.g-23,
.gy-23 {
    --bs-gutter-y: 17.5rem;
}

.g-24,
.gx-24 {
    --bs-gutter-x: 20rem;
}

.g-24,
.gy-24 {
    --bs-gutter-y: 20rem;
}

.g-25,
.gx-25 {
    --bs-gutter-x: 22.5rem;
}

.g-25,
.gy-25 {
    --bs-gutter-y: 22.5rem;
}

@media (min-width: 576px) {

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 1.25rem;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 1.25rem;
    }

    .g-sm-6,
    .gx-sm-6 {
        --bs-gutter-x: 1.5rem;
    }

    .g-sm-6,
    .gy-sm-6 {
        --bs-gutter-y: 1.5rem;
    }

    .g-sm-7,
    .gx-sm-7 {
        --bs-gutter-x: 1.75rem;
    }

    .g-sm-7,
    .gy-sm-7 {
        --bs-gutter-y: 1.75rem;
    }

    .g-sm-8,
    .gx-sm-8 {
        --bs-gutter-x: 2rem;
    }

    .g-sm-8,
    .gy-sm-8 {
        --bs-gutter-y: 2rem;
    }

    .g-sm-9,
    .gx-sm-9 {
        --bs-gutter-x: 2.25rem;
    }

    .g-sm-9,
    .gy-sm-9 {
        --bs-gutter-y: 2.25rem;
    }

    .g-sm-10,
    .gx-sm-10 {
        --bs-gutter-x: 2.5rem;
    }

    .g-sm-10,
    .gy-sm-10 {
        --bs-gutter-y: 2.5rem;
    }

    .g-sm-11,
    .gx-sm-11 {
        --bs-gutter-x: 3rem;
    }

    .g-sm-11,
    .gy-sm-11 {
        --bs-gutter-y: 3rem;
    }

    .g-sm-12,
    .gx-sm-12 {
        --bs-gutter-x: 3.5rem;
    }

    .g-sm-12,
    .gy-sm-12 {
        --bs-gutter-y: 3.5rem;
    }

    .g-sm-13,
    .gx-sm-13 {
        --bs-gutter-x: 4rem;
    }

    .g-sm-13,
    .gy-sm-13 {
        --bs-gutter-y: 4rem;
    }

    .g-sm-14,
    .gx-sm-14 {
        --bs-gutter-x: 4.5rem;
    }

    .g-sm-14,
    .gy-sm-14 {
        --bs-gutter-y: 4.5rem;
    }

    .g-sm-15,
    .gx-sm-15 {
        --bs-gutter-x: 5rem;
    }

    .g-sm-15,
    .gy-sm-15 {
        --bs-gutter-y: 5rem;
    }

    .g-sm-16,
    .gx-sm-16 {
        --bs-gutter-x: 6rem;
    }

    .g-sm-16,
    .gy-sm-16 {
        --bs-gutter-y: 6rem;
    }

    .g-sm-17,
    .gx-sm-17 {
        --bs-gutter-x: 7rem;
    }

    .g-sm-17,
    .gy-sm-17 {
        --bs-gutter-y: 7rem;
    }

    .g-sm-18,
    .gx-sm-18 {
        --bs-gutter-x: 8rem;
    }

    .g-sm-18,
    .gy-sm-18 {
        --bs-gutter-y: 8rem;
    }

    .g-sm-19,
    .gx-sm-19 {
        --bs-gutter-x: 9rem;
    }

    .g-sm-19,
    .gy-sm-19 {
        --bs-gutter-y: 9rem;
    }

    .g-sm-20,
    .gx-sm-20 {
        --bs-gutter-x: 10rem;
    }

    .g-sm-20,
    .gy-sm-20 {
        --bs-gutter-y: 10rem;
    }

    .g-sm-21,
    .gx-sm-21 {
        --bs-gutter-x: 12.5rem;
    }

    .g-sm-21,
    .gy-sm-21 {
        --bs-gutter-y: 12.5rem;
    }

    .g-sm-22,
    .gx-sm-22 {
        --bs-gutter-x: 15rem;
    }

    .g-sm-22,
    .gy-sm-22 {
        --bs-gutter-y: 15rem;
    }

    .g-sm-23,
    .gx-sm-23 {
        --bs-gutter-x: 17.5rem;
    }

    .g-sm-23,
    .gy-sm-23 {
        --bs-gutter-y: 17.5rem;
    }

    .g-sm-24,
    .gx-sm-24 {
        --bs-gutter-x: 20rem;
    }

    .g-sm-24,
    .gy-sm-24 {
        --bs-gutter-y: 20rem;
    }

    .g-sm-25,
    .gx-sm-25 {
        --bs-gutter-x: 22.5rem;
    }

    .g-sm-25,
    .gy-sm-25 {
        --bs-gutter-y: 22.5rem;
    }
}

@media (min-width: 768px) {

    .g-md-6,
    .gx-md-6 {
        --bs-gutter-x: 1.5rem;
    }

    .g-md-6,
    .gy-md-6 {
        --bs-gutter-y: 1.5rem;
    }

    .g-md-7,
    .gx-md-7 {
        --bs-gutter-x: 1.75rem;
    }

    .g-md-7,
    .gy-md-7 {
        --bs-gutter-y: 1.75rem;
    }

    .g-md-8,
    .gx-md-8 {
        --bs-gutter-x: 2rem;
    }

    .g-md-8,
    .gy-md-8 {
        --bs-gutter-y: 2rem;
    }

    .g-md-9,
    .gx-md-9 {
        --bs-gutter-x: 2.25rem;
    }

    .g-md-9,
    .gy-md-9 {
        --bs-gutter-y: 2.25rem;
    }

    .g-md-10,
    .gx-md-10 {
        --bs-gutter-x: 2.5rem;
    }

    .g-md-10,
    .gy-md-10 {
        --bs-gutter-y: 2.5rem;
    }

    .g-md-11,
    .gx-md-11 {
        --bs-gutter-x: 3rem;
    }

    .g-md-11,
    .gy-md-11 {
        --bs-gutter-y: 3rem;
    }

    .g-md-12,
    .gx-md-12 {
        --bs-gutter-x: 3.5rem;
    }

    .g-md-12,
    .gy-md-12 {
        --bs-gutter-y: 3.5rem;
    }

    .g-md-13,
    .gx-md-13 {
        --bs-gutter-x: 4rem;
    }

    .g-md-13,
    .gy-md-13 {
        --bs-gutter-y: 4rem;
    }

    .g-md-14,
    .gx-md-14 {
        --bs-gutter-x: 4.5rem;
    }

    .g-md-14,
    .gy-md-14 {
        --bs-gutter-y: 4.5rem;
    }

    .g-md-15,
    .gx-md-15 {
        --bs-gutter-x: 5rem;
    }

    .g-md-15,
    .gy-md-15 {
        --bs-gutter-y: 5rem;
    }

    .g-md-16,
    .gx-md-16 {
        --bs-gutter-x: 6rem;
    }

    .g-md-16,
    .gy-md-16 {
        --bs-gutter-y: 6rem;
    }

    .g-md-17,
    .gx-md-17 {
        --bs-gutter-x: 7rem;
    }

    .g-md-17,
    .gy-md-17 {
        --bs-gutter-y: 7rem;
    }

    .g-md-18,
    .gx-md-18 {
        --bs-gutter-x: 8rem;
    }

    .g-md-18,
    .gy-md-18 {
        --bs-gutter-y: 8rem;
    }

    .g-md-19,
    .gx-md-19 {
        --bs-gutter-x: 9rem;
    }

    .g-md-19,
    .gy-md-19 {
        --bs-gutter-y: 9rem;
    }

    .g-md-20,
    .gx-md-20 {
        --bs-gutter-x: 10rem;
    }

    .g-md-20,
    .gy-md-20 {
        --bs-gutter-y: 10rem;
    }

    .g-md-21,
    .gx-md-21 {
        --bs-gutter-x: 12.5rem;
    }

    .g-md-21,
    .gy-md-21 {
        --bs-gutter-y: 12.5rem;
    }

    .g-md-22,
    .gx-md-22 {
        --bs-gutter-x: 15rem;
    }

    .g-md-22,
    .gy-md-22 {
        --bs-gutter-y: 15rem;
    }

    .g-md-23,
    .gx-md-23 {
        --bs-gutter-x: 17.5rem;
    }

    .g-md-23,
    .gy-md-23 {
        --bs-gutter-y: 17.5rem;
    }

    .g-md-24,
    .gx-md-24 {
        --bs-gutter-x: 20rem;
    }

    .g-md-24,
    .gy-md-24 {
        --bs-gutter-y: 20rem;
    }

    .g-md-25,
    .gx-md-25 {
        --bs-gutter-x: 22.5rem;
    }

    .g-md-25,
    .gy-md-25 {
        --bs-gutter-y: 22.5rem;
    }
}

@media (min-width: 992px) {

    .g-lg-6,
    .gx-lg-6 {
        --bs-gutter-x: 1.5rem;
    }

    .g-lg-6,
    .gy-lg-6 {
        --bs-gutter-y: 1.5rem;
    }

    .g-lg-7,
    .gx-lg-7 {
        --bs-gutter-x: 1.75rem;
    }

    .g-lg-7,
    .gy-lg-7 {
        --bs-gutter-y: 1.75rem;
    }

    .g-lg-8,
    .gx-lg-8 {
        --bs-gutter-x: 2rem;
    }

    .g-lg-8,
    .gy-lg-8 {
        --bs-gutter-y: 2rem;
    }

    .g-lg-9,
    .gx-lg-9 {
        --bs-gutter-x: 2.25rem;
    }

    .g-lg-9,
    .gy-lg-9 {
        --bs-gutter-y: 2.25rem;
    }

    .g-lg-10,
    .gx-lg-10 {
        --bs-gutter-x: 2.5rem;
    }

    .g-lg-10,
    .gy-lg-10 {
        --bs-gutter-y: 2.5rem;
    }

    .g-lg-11,
    .gx-lg-11 {
        --bs-gutter-x: 3rem;
    }

    .g-lg-11,
    .gy-lg-11 {
        --bs-gutter-y: 3rem;
    }

    .g-lg-12,
    .gx-lg-12 {
        --bs-gutter-x: 3.5rem;
    }

    .g-lg-12,
    .gy-lg-12 {
        --bs-gutter-y: 3.5rem;
    }

    .g-lg-13,
    .gx-lg-13 {
        --bs-gutter-x: 4rem;
    }

    .g-lg-13,
    .gy-lg-13 {
        --bs-gutter-y: 4rem;
    }

    .g-lg-14,
    .gx-lg-14 {
        --bs-gutter-x: 4.5rem;
    }

    .g-lg-14,
    .gy-lg-14 {
        --bs-gutter-y: 4.5rem;
    }

    .g-lg-15,
    .gx-lg-15 {
        --bs-gutter-x: 5rem;
    }

    .g-lg-15,
    .gy-lg-15 {
        --bs-gutter-y: 5rem;
    }

    .g-lg-16,
    .gx-lg-16 {
        --bs-gutter-x: 6rem;
    }

    .g-lg-16,
    .gy-lg-16 {
        --bs-gutter-y: 6rem;
    }

    .g-lg-17,
    .gx-lg-17 {
        --bs-gutter-x: 7rem;
    }

    .g-lg-17,
    .gy-lg-17 {
        --bs-gutter-y: 7rem;
    }

    .g-lg-18,
    .gx-lg-18 {
        --bs-gutter-x: 8rem;
    }

    .g-lg-18,
    .gy-lg-18 {
        --bs-gutter-y: 8rem;
    }

    .g-lg-19,
    .gx-lg-19 {
        --bs-gutter-x: 9rem;
    }

    .g-lg-19,
    .gy-lg-19 {
        --bs-gutter-y: 9rem;
    }

    .g-lg-20,
    .gx-lg-20 {
        --bs-gutter-x: 10rem;
    }

    .g-lg-20,
    .gy-lg-20 {
        --bs-gutter-y: 10rem;
    }

    .g-lg-21,
    .gx-lg-21 {
        --bs-gutter-x: 12.5rem;
    }

    .g-lg-21,
    .gy-lg-21 {
        --bs-gutter-y: 12.5rem;
    }

    .g-lg-22,
    .gx-lg-22 {
        --bs-gutter-x: 15rem;
    }

    .g-lg-22,
    .gy-lg-22 {
        --bs-gutter-y: 15rem;
    }

    .g-lg-23,
    .gx-lg-23 {
        --bs-gutter-x: 17.5rem;
    }

    .g-lg-23,
    .gy-lg-23 {
        --bs-gutter-y: 17.5rem;
    }

    .g-lg-24,
    .gx-lg-24 {
        --bs-gutter-x: 20rem;
    }

    .g-lg-24,
    .gy-lg-24 {
        --bs-gutter-y: 20rem;
    }

    .g-lg-25,
    .gx-lg-25 {
        --bs-gutter-x: 22.5rem;
    }

    .g-lg-25,
    .gy-lg-25 {
        --bs-gutter-y: 22.5rem;
    }
}

@media (min-width: 1200px) {

    .g-xl-6,
    .gx-xl-6 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xl-6,
    .gy-xl-6 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xl-7,
    .gx-xl-7 {
        --bs-gutter-x: 1.75rem;
    }

    .g-xl-7,
    .gy-xl-7 {
        --bs-gutter-y: 1.75rem;
    }

    .g-xl-8,
    .gx-xl-8 {
        --bs-gutter-x: 2rem;
    }

    .g-xl-8,
    .gy-xl-8 {
        --bs-gutter-y: 2rem;
    }

    .g-xl-9,
    .gx-xl-9 {
        --bs-gutter-x: 2.25rem;
    }

    .g-xl-9,
    .gy-xl-9 {
        --bs-gutter-y: 2.25rem;
    }

    .g-xl-10,
    .gx-xl-10 {
        --bs-gutter-x: 2.5rem;
    }

    .g-xl-10,
    .gy-xl-10 {
        --bs-gutter-y: 2.5rem;
    }

    .g-xl-11,
    .gx-xl-11 {
        --bs-gutter-x: 3rem;
    }

    .g-xl-11,
    .gy-xl-11 {
        --bs-gutter-y: 3rem;
    }

    .g-xl-12,
    .gx-xl-12 {
        --bs-gutter-x: 3.5rem;
    }

    .g-xl-12,
    .gy-xl-12 {
        --bs-gutter-y: 3.5rem;
    }

    .g-xl-13,
    .gx-xl-13 {
        --bs-gutter-x: 4rem;
    }

    .g-xl-13,
    .gy-xl-13 {
        --bs-gutter-y: 4rem;
    }

    .g-xl-14,
    .gx-xl-14 {
        --bs-gutter-x: 4.5rem;
    }

    .g-xl-14,
    .gy-xl-14 {
        --bs-gutter-y: 4.5rem;
    }

    .g-xl-15,
    .gx-xl-15 {
        --bs-gutter-x: 5rem;
    }

    .g-xl-15,
    .gy-xl-15 {
        --bs-gutter-y: 5rem;
    }

    .g-xl-16,
    .gx-xl-16 {
        --bs-gutter-x: 6rem;
    }

    .g-xl-16,
    .gy-xl-16 {
        --bs-gutter-y: 6rem;
    }

    .g-xl-17,
    .gx-xl-17 {
        --bs-gutter-x: 7rem;
    }

    .g-xl-17,
    .gy-xl-17 {
        --bs-gutter-y: 7rem;
    }

    .g-xl-18,
    .gx-xl-18 {
        --bs-gutter-x: 8rem;
    }

    .g-xl-18,
    .gy-xl-18 {
        --bs-gutter-y: 8rem;
    }

    .g-xl-19,
    .gx-xl-19 {
        --bs-gutter-x: 9rem;
    }

    .g-xl-19,
    .gy-xl-19 {
        --bs-gutter-y: 9rem;
    }

    .g-xl-20,
    .gx-xl-20 {
        --bs-gutter-x: 10rem;
    }

    .g-xl-20,
    .gy-xl-20 {
        --bs-gutter-y: 10rem;
    }

    .g-xl-21,
    .gx-xl-21 {
        --bs-gutter-x: 12.5rem;
    }

    .g-xl-21,
    .gy-xl-21 {
        --bs-gutter-y: 12.5rem;
    }

    .g-xl-22,
    .gx-xl-22 {
        --bs-gutter-x: 15rem;
    }

    .g-xl-22,
    .gy-xl-22 {
        --bs-gutter-y: 15rem;
    }

    .g-xl-23,
    .gx-xl-23 {
        --bs-gutter-x: 17.5rem;
    }

    .g-xl-23,
    .gy-xl-23 {
        --bs-gutter-y: 17.5rem;
    }

    .g-xl-24,
    .gx-xl-24 {
        --bs-gutter-x: 20rem;
    }

    .g-xl-24,
    .gy-xl-24 {
        --bs-gutter-y: 20rem;
    }

    .g-xl-25,
    .gx-xl-25 {
        --bs-gutter-x: 22.5rem;
    }

    .g-xl-25,
    .gy-xl-25 {
        --bs-gutter-y: 22.5rem;
    }
}

@media (min-width: 1400px) {

    .g-xxl-6,
    .gx-xxl-6 {
        --bs-gutter-x: 1.5rem;
    }

    .g-xxl-6,
    .gy-xxl-6 {
        --bs-gutter-y: 1.5rem;
    }

    .g-xxl-7,
    .gx-xxl-7 {
        --bs-gutter-x: 1.75rem;
    }

    .g-xxl-7,
    .gy-xxl-7 {
        --bs-gutter-y: 1.75rem;
    }

    .g-xxl-8,
    .gx-xxl-8 {
        --bs-gutter-x: 2rem;
    }

    .g-xxl-8,
    .gy-xxl-8 {
        --bs-gutter-y: 2rem;
    }

    .g-xxl-9,
    .gx-xxl-9 {
        --bs-gutter-x: 2.25rem;
    }

    .g-xxl-9,
    .gy-xxl-9 {
        --bs-gutter-y: 2.25rem;
    }

    .g-xxl-10,
    .gx-xxl-10 {
        --bs-gutter-x: 2.5rem;
    }

    .g-xxl-10,
    .gy-xxl-10 {
        --bs-gutter-y: 2.5rem;
    }

    .g-xxl-11,
    .gx-xxl-11 {
        --bs-gutter-x: 3rem;
    }

    .g-xxl-11,
    .gy-xxl-11 {
        --bs-gutter-y: 3rem;
    }

    .g-xxl-12,
    .gx-xxl-12 {
        --bs-gutter-x: 3.5rem;
    }

    .g-xxl-12,
    .gy-xxl-12 {
        --bs-gutter-y: 3.5rem;
    }

    .g-xxl-13,
    .gx-xxl-13 {
        --bs-gutter-x: 4rem;
    }

    .g-xxl-13,
    .gy-xxl-13 {
        --bs-gutter-y: 4rem;
    }

    .g-xxl-14,
    .gx-xxl-14 {
        --bs-gutter-x: 4.5rem;
    }

    .g-xxl-14,
    .gy-xxl-14 {
        --bs-gutter-y: 4.5rem;
    }

    .g-xxl-15,
    .gx-xxl-15 {
        --bs-gutter-x: 5rem;
    }

    .g-xxl-15,
    .gy-xxl-15 {
        --bs-gutter-y: 5rem;
    }

    .g-xxl-16,
    .gx-xxl-16 {
        --bs-gutter-x: 6rem;
    }

    .g-xxl-16,
    .gy-xxl-16 {
        --bs-gutter-y: 6rem;
    }

    .g-xxl-17,
    .gx-xxl-17 {
        --bs-gutter-x: 7rem;
    }

    .g-xxl-17,
    .gy-xxl-17 {
        --bs-gutter-y: 7rem;
    }

    .g-xxl-18,
    .gx-xxl-18 {
        --bs-gutter-x: 8rem;
    }

    .g-xxl-18,
    .gy-xxl-18 {
        --bs-gutter-y: 8rem;
    }

    .g-xxl-19,
    .gx-xxl-19 {
        --bs-gutter-x: 9rem;
    }

    .g-xxl-19,
    .gy-xxl-19 {
        --bs-gutter-y: 9rem;
    }

    .g-xxl-20,
    .gx-xxl-20 {
        --bs-gutter-x: 10rem;
    }

    .g-xxl-20,
    .gy-xxl-20 {
        --bs-gutter-y: 10rem;
    }

    .g-xxl-21,
    .gx-xxl-21 {
        --bs-gutter-x: 12.5rem;
    }

    .g-xxl-21,
    .gy-xxl-21 {
        --bs-gutter-y: 12.5rem;
    }

    .g-xxl-22,
    .gx-xxl-22 {
        --bs-gutter-x: 15rem;
    }

    .g-xxl-22,
    .gy-xxl-22 {
        --bs-gutter-y: 15rem;
    }

    .g-xxl-23,
    .gx-xxl-23 {
        --bs-gutter-x: 17.5rem;
    }

    .g-xxl-23,
    .gy-xxl-23 {
        --bs-gutter-y: 17.5rem;
    }

    .g-xxl-24,
    .gx-xxl-24 {
        --bs-gutter-x: 20rem;
    }

    .g-xxl-24,
    .gy-xxl-24 {
        --bs-gutter-y: 20rem;
    }

    .g-xxl-25,
    .gx-xxl-25 {
        --bs-gutter-x: 22.5rem;
    }

    .g-xxl-25,
    .gy-xxl-25 {
        --bs-gutter-y: 22.5rem;
    }
}
/*--------------------------------------------------------------
# SPACE
--------------------------------------------------------------*/

