@charset "UTF-8";

/* 01. Helpers */
@-webkit-keyframes animate-icon-up {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes animate-icon-up {
    49% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    51% {
        opacity: 1;
    }
}

@-webkit-keyframes animate-icon-down {
    49% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes animate-icon-down {
    49% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    51% {
        opacity: 1;
    }
}

@-webkit-keyframes animate-icon-right {
    49% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes animate-icon-right {
    49% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    51% {
        opacity: 1;
    }
}

@-webkit-keyframes animate-icon-left {
    49% {
        opacity: 0;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    51% {
        opacity: 1;
    }
}

@keyframes animate-icon-left {
    49% {
        opacity: 0;
        -webkit-transform: translateX(50%);
        transform: translateX(50%);
    }

    50% {
        opacity: 0;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    51% {
        opacity: 1;
    }
}

@-webkit-keyframes pagination-custom-active {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes pagination-custom-active {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}

@keyframes animate {

    0%,
    100% {
        transform: translateY(-40px);
    }

    50% {
        transform: translateY(40px);
    }
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}

@keyframes progress-bar-stripes {
    0% {
        background-position-x: 1rem;
    }
}

@-webkit-keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes spinner-grow {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    50% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes placeholder-glow {
    50% {
        opacity: 0.2;
    }
}

@keyframes placeholder-glow {
    50% {
        opacity: 0.2;
    }
}

@-webkit-keyframes placeholder-wave {
    100% {
        -webkit-mask-position: -200% 0%;
        mask-position: -200% 0%;
    }
}

@keyframes placeholder-wave {
    100% {
        -webkit-mask-position: -200% 0%;
        mask-position: -200% 0%;
    }
}

@keyframes f {
    0% {
        transform: translate3d(90px, 0, 0)
    }

    to {
        transform: translate3d(-85px, 0, 0)
    }
}

@keyframes arrowRight {
    0% {
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }

    50% {
        -webkit-transform: translate(-10px, -50%);
        transform: translate(-10px, -50%);
    }

    100% {
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

@-webkit-keyframes animation-pulse {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(10, 10);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(20, 20);
    }
}

@-moz-keyframes animation-pulse {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        -moz-transform: scale(10, 10);
    }

    100% {
        opacity: 0;
        -moz-transform: scale(20, 20);
    }
}

@keyframes animation-pulse {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        transform: scale(10, 10);
    }

    100% {
        opacity: 0;
        transform: scale(20, 20);
    }
}

@keyframes blink {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 118, 210, 0.4);
    }

    100% {
        box-shadow: 0 0 0 16px rgba(187, 222, 251, 0.3);
    }
}

@-moz-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@-o-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        -moz-transform: scale(0.1, 0.1);
        -o-transform: scale(0.1, 0.1);
        -ms-transform: scale(0.1, 0.1);
        transform: scale(0.1, 0.1);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }

    50% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
    }

    100% {
        -webkit-transform: scale(1.2, 1.2);
        -moz-transform: scale(1.2, 1.2);
        -o-transform: scale(1.2, 1.2);
        -ms-transform: scale(1.2, 1.2);
        transform: scale(1.2, 1.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
    }
}

@-moz-keyframes bounce {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-2000px) rotate(-45deg);
        -moz-transform: translateY(-2000px) rotate(-45deg);
        -o-transform: translateY(-2000px) rotate(-45deg);
        -ms-transform: translateY(-2000px) rotate(-45deg);
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translateY(30px) rotate(-45deg);
        -moz-transform: translateY(30px) rotate(-45deg);
        -o-transform: translateY(30px) rotate(-45deg);
        -ms-transform: translateY(30px) rotate(-45deg);
        transform: translateY(30px) rotate(-45deg);
    }

    80% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -moz-transform: translateY(-10px) rotate(-45deg);
        -o-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        -webkit-transform: translateY(0) rotate(-45deg);
        -moz-transform: translateY(0) rotate(-45deg);
        -o-transform: translateY(0) rotate(-45deg);
        -ms-transform: translateY(0) rotate(-45deg);
        transform: translateY(0) rotate(-45deg);
    }
}

@-webkit-keyframes bounce {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-2000px) rotate(-45deg);
        -moz-transform: translateY(-2000px) rotate(-45deg);
        -o-transform: translateY(-2000px) rotate(-45deg);
        -ms-transform: translateY(-2000px) rotate(-45deg);
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translateY(30px) rotate(-45deg);
        -moz-transform: translateY(30px) rotate(-45deg);
        -o-transform: translateY(30px) rotate(-45deg);
        -ms-transform: translateY(30px) rotate(-45deg);
        transform: translateY(30px) rotate(-45deg);
    }

    80% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -moz-transform: translateY(-10px) rotate(-45deg);
        -o-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        -webkit-transform: translateY(0) rotate(-45deg);
        -moz-transform: translateY(0) rotate(-45deg);
        -o-transform: translateY(0) rotate(-45deg);
        -ms-transform: translateY(0) rotate(-45deg);
        transform: translateY(0) rotate(-45deg);
    }
}

@-o-keyframes bounce {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-2000px) rotate(-45deg);
        -moz-transform: translateY(-2000px) rotate(-45deg);
        -o-transform: translateY(-2000px) rotate(-45deg);
        -ms-transform: translateY(-2000px) rotate(-45deg);
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translateY(30px) rotate(-45deg);
        -moz-transform: translateY(30px) rotate(-45deg);
        -o-transform: translateY(30px) rotate(-45deg);
        -ms-transform: translateY(30px) rotate(-45deg);
        transform: translateY(30px) rotate(-45deg);
    }

    80% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -moz-transform: translateY(-10px) rotate(-45deg);
        -o-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        -webkit-transform: translateY(0) rotate(-45deg);
        -moz-transform: translateY(0) rotate(-45deg);
        -o-transform: translateY(0) rotate(-45deg);
        -ms-transform: translateY(0) rotate(-45deg);
        transform: translateY(0) rotate(-45deg);
    }
}

@keyframes bounce {
    0% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-2000px) rotate(-45deg);
        -moz-transform: translateY(-2000px) rotate(-45deg);
        -o-transform: translateY(-2000px) rotate(-45deg);
        -ms-transform: translateY(-2000px) rotate(-45deg);
        transform: translateY(-2000px) rotate(-45deg);
    }

    60% {
        opacity: 1;
        -ms-filter: none;
        filter: none;
        -webkit-transform: translateY(30px) rotate(-45deg);
        -moz-transform: translateY(30px) rotate(-45deg);
        -o-transform: translateY(30px) rotate(-45deg);
        -ms-transform: translateY(30px) rotate(-45deg);
        transform: translateY(30px) rotate(-45deg);
    }

    80% {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -moz-transform: translateY(-10px) rotate(-45deg);
        -o-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
    }

    100% {
        -webkit-transform: translateY(0) rotate(-45deg);
        -moz-transform: translateY(0) rotate(-45deg);
        -o-transform: translateY(0) rotate(-45deg);
        -ms-transform: translateY(0) rotate(-45deg);
        transform: translateY(0) rotate(-45deg);
    }
}

@font-face {
    font-family: 'Vazirmatn';
    font-style: normal;
    font-weight: normal;
    src: url('../fonts/VAZIRmatn/ttf/Vazirmatn-Black.ttf');
    src: url('../fonts/VAZIRmatn/ttf/Vazirmatn-Black.ttf') format('embedded-opentype'),
    url('../fonts/VAZIRmatn/woff2/Vazirmatn-Regular.woff2') format('woff2'),
    url('../fonts/VAZIRmatn/ttf/Vazirmatn-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Vazirmatn';
    font-style: normal;
    font-weight: bold;
    src: url('../fonts/VAZIRmatn/ttf/Vazirmatn-Black.ttf');
    src: url('../fonts/VAZIRmatn/ttf/Vazirmatn-Black.ttf') format('embedded-opentype'),
    url('../fonts/VAZIRmatn/woff2/Vazirmatn-Bold.woff2') format('woff2'),
    url('../fonts/VAZIRmatn/ttf/Vazirmatn-Regular.ttf') format('truetype');
}

@font-face {
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/fontawesome-pro-5.2.0/webfonts/fa-solid-900.eot');
    src: url('../fonts/fontawesome-pro-5.2.0/webfonts/fa-solid-900d41d.eot?#iefix') format("embedded-opentype"),
    url('../fonts/fontawesome-pro-5.2.0/webfonts/fa-solid-900.woff2') format("woff2"),
    url('../fonts/fontawesome-pro-5.2.0/webfonts/fa-solid-900.woff') format("woff"),
    url('../fonts/fontawesome-pro-5.2.0/webfonts/fa-solid-900.ttf') format("truetype"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-olid-900.html#fontawesome") format("svg");
}

@font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-regular-400.eot");
    src: url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-regular-400d41d.eot?#iefix") format("embedded-opentype"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-regular-400.woff2") format("woff2"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-regular-400.woff") format("woff"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-regular-400.ttf") format("truetype"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-regular-400.svg#fontawesome") format("svg");
}

@font-face {
    font-family: 'Font Awesome 5 Pro';
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-light-300.eot");
    src: url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-light-300d41d.eot?#iefix") format("embedded-opentype"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-light-300.woff2") format("woff2"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-light-300.woff") format("woff"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-light-300.ttf") format("truetype"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-light-300.svg#fontawesome") format("svg");
}

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: normal;
    src: url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-brands-400.eot");
    src: url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-brands-400d41d.eot?#iefix") format("embedded-opentype"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-brands-400.woff2") format("woff2"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-brands-400.woff") format("woff"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-brands-400.ttf") format("truetype"),
    url("../fonts/fontawesome-pro-5.2.0/webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fab {
    font-family: 'Font Awesome 5 Brands';
}

.fal {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
}

.far {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
}

.fa,
.fas {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900
}

body,
body * {
    font-family: 'Vazirmatn';
}

.float-l {
    float: left;
}

.page-navigation .page-navigation-prev:hover svg,
.swiper-button-prev:hover svg {
    -webkit-animation: animate-icon-left 225ms linear forwards;
    animation: animate-icon-left 225ms linear forwards;
}

.page-navigation .page-navigation-next:hover svg,
.service-case:hover .service-case-arrow svg,
.service-card:hover .service-card-arrow svg,
.service-line:hover .service-line-arrow svg,
.service-box:hover .service-box-arrow svg,
.swiper-button-next:hover svg {
    -webkit-animation: animate-icon-right 225ms linear forwards;
    animation: animate-icon-right 225ms linear forwards;
}

.down-arrow:hover svg {
    -webkit-animation: animate-icon-down 225ms linear forwards;
    animation: animate-icon-down 225ms linear forwards;
}

.member:hover .member-image img,
.gallery-item:hover img,
.service-case:hover .service-case-image img,
.service-card:hover .service-card-image img,
.industry:hover img,
.card-portfolio.card-hover-appearance:hover .card-img img,
.card-portfolio.card-hover-appearance:focus .card-img img,
.card-hover-zoom:hover img,
.card-hover-zoom:focus img,
.card-hover-zoom .card-img:hover img,
.card-hover-zoom .card-img:focus img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

/* 02. Plugins */
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #858589;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #B1B1B4;
    --bs-gray-600: #858589;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #858589;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #F5F5F7;
    --bs-dark: #17161A;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 133, 133, 137;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 245, 245, 247;
    --bs-dark-rgb: 23, 22, 26;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 23, 22, 26;
    --bs-body-color-rgb: 23, 22, 26;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: Vazirmatn sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #17161A;
    --bs-body-bg: #fff;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(23, 22, 26, 0);
}

hr {
    margin: 3.33333rem 0;
    color: inherit;
    background-color: currentColor;
    border: 0;
    opacity: 0.25;
}

hr:not([size]) {
    height: 1px;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    margin-bottom: 1.666665rem;
    /* font-family: "Inter", sans-serif; */
    font-weight: bold;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: calc(1.375rem + 1.5vw);
}

h2,
.h2 {
    font-size: calc(1.325rem + 0.9vw);
}

h3,
.h3 {
    font-size: calc(1.3rem + 0.6vw);
}


h4,
.h4 {
    font-size: calc(1.275rem + 0.3vw);
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
    -webkit-text-decoration: underline dotted;
    -moz-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul {
    padding-right: 2rem;
    list-style: none;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-right: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small,
.small {
    font-size: 0.875em;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

sub,
sup {
    position: relative;
    font-size: 0.75em;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: #0d6efd;
    text-decoration: underline;
}

a:hover {
    color: #0a58ca;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    /* font-family: var(--bs-font-monospace); */
    font-size: 1em;
    direction: ltr;
    unicode-bidi: bidi-override;
}

pre {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
    font-size: 0.875em;
}

pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal;
}

code {
    font-size: 0.875em;
    color: #d63384;
    word-wrap: break-word;
}

a > code {
    color: inherit;
}

kbd {
    padding: 0.2rem 0.4rem;
    font-size: 0.875em;
    color: #fff;
    background-color: #212529;
    border-radius: 10px;
}

kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    caption-side: bottom;
    border-collapse: collapse;
}

caption {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    color: #858589;
    text-align: right;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
select {
    text-transform: none;
}

[role=button] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
    display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}

::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

textarea {
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    float: right;
    width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
}

legend + * {
    clear: right;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: textfield;
}

[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
    direction: ltr;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::-webkit-file-upload-button {
    font: inherit;
}

::file-selector-button {
    font: inherit;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    display: list-item;
    cursor: pointer;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

.lead {
    font-size: 1.25em;
    font-weight: 300;
}

.display-1 {
    font-size: calc(1.625rem + 4.5vw);
    font-weight: 700;
    line-height: 1.2;
}

.display-2 {
    font-size: calc(1.575rem + 3.9vw);
    font-weight: 700;
    line-height: 1.2;
}

.display-3 {
    font-size: calc(1.525rem + 3.3vw);
    font-weight: 700;
    line-height: 1.2;
}

.display-4 {
    font-size: calc(1.475rem + 2.7vw);
    font-weight: 700;
    line-height: 1.2;
}


.display-5 {
    font-size: calc(1.425rem + 2.1vw);
    font-weight: 700;
    line-height: 1.2;
}

.display-6 {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.list-unstyled {
    padding-right: 0;
    list-style: none;
}

.list-inline {
    padding-right: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-left: 0.5rem;
}

.initialism {
    font-size: 0.875em;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 3.33333rem;
    font-size: 1.25rem;
}

.blockquote > :last-child {
    margin-bottom: 0;
}

.blockquote-footer {
    margin-top: -3.33333rem;
    margin-bottom: 3.33333rem;
    font-size: 0.875em;
    color: #858589;
}

.blockquote-footer::before {
    content: "— ";
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-thumbnail {
    padding: 0.25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 14px;
    max-width: 100%;
    height: auto;
}

.figure {
    display: inline-block;
}

.figure-img {
    margin-bottom: 1.666665rem;
    line-height: 1;
}

.figure-caption {
    font-size: 0.875em;
    color: #858589;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-left: var(--bs-gutter-x, 15px);
    padding-right: var(--bs-gutter-x, 15px);
    margin-left: auto;
    margin-right: auto;
    max-width: 1350px;
}

.row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.row-cols-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}

.row-cols-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.row-cols-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.row-cols-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
}

.row-cols-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}

.row-cols-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
}

.row-cols-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
}

.row-cols-7 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 14.2857142857%;
}

.col-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
}

.col-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
}

.offset-1 {
    margin-right: 8.33333333%;
}

.offset-2 {
    margin-right: 16.66666667%;
}

.offset-3 {
    margin-right: 25%;
}

.offset-4 {
    margin-right: 33.33333333%;
}

.offset-5 {
    margin-right: 41.66666667%;
}

.offset-6 {
    margin-right: 50%;
}

.offset-7 {
    margin-right: 58.33333333%;
}

.offset-8 {
    margin-right: 66.66666667%;
}

.offset-9 {
    margin-right: 75%;
}

.offset-10 {
    margin-right: 83.33333333%;
}

.offset-11 {
    margin-right: 91.66666667%;
}

.g-0,
.gx-0 {
    --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
    --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
    --bs-gutter-x: 1px;
}

.g-1,
.gy-1 {
    --bs-gutter-y: 1px;
}

.g-2,
.gx-2 {
    --bs-gutter-x: 2px;
}

.g-2,
.gy-2 {
    --bs-gutter-y: 2px;
}

.g-3,
.gx-3 {
    --bs-gutter-x: 3px;
}

.g-3,
.gy-3 {
    --bs-gutter-y: 3px;
}

.g-4,
.gx-4 {
    --bs-gutter-x: 4px;
}

.g-4,
.gy-4 {
    --bs-gutter-y: 4px;
}

.g-5,
.gx-5 {
    --bs-gutter-x: 5px;
}

.g-5,
.gy-5 {
    --bs-gutter-y: 5px;
}

.g-6,
.gx-6 {
    --bs-gutter-x: 6px;
}

.g-6,
.gy-6 {
    --bs-gutter-y: 6px;
}

.g-7,
.gx-7 {
    --bs-gutter-x: 7px;
}

.g-7,
.gy-7 {
    --bs-gutter-y: 7px;
}

.g-8,
.gx-8 {
    --bs-gutter-x: 8px;
}

.g-8,
.gy-8 {
    --bs-gutter-y: 8px;
}

.g-9,
.gx-9 {
    --bs-gutter-x: 9px;
}

.g-9,
.gy-9 {
    --bs-gutter-y: 9px;
}

.g-10,
.gx-10 {
    --bs-gutter-x: 10px;
}

.g-10,
.gy-10 {
    --bs-gutter-y: 10px;
}

.g-11,
.gx-11 {
    --bs-gutter-x: 11px;
}

.g-11,
.gy-11 {
    --bs-gutter-y: 11px;
}

.g-12,
.gx-12 {
    --bs-gutter-x: 12px;
}

.g-12,
.gy-12 {
    --bs-gutter-y: 12px;
}

.g-13,
.gx-13 {
    --bs-gutter-x: 13px;
}

.g-13,
.gy-13 {
    --bs-gutter-y: 13px;
}

.g-15,
.gx-15 {
    --bs-gutter-x: 15px;
}

.g-15,
.gy-15 {
    --bs-gutter-y: 15px;
}

.g-17,
.gx-17 {
    --bs-gutter-x: 17px;
}

.g-17,
.gy-17 {
    --bs-gutter-y: 17px;
}

.g-18,
.gx-18 {
    --bs-gutter-x: 18px;
}

.g-18,
.gy-18 {
    --bs-gutter-y: 18px;
}

.g-20,
.gx-20 {
    --bs-gutter-x: 20px;
}

.g-20,
.gy-20 {
    --bs-gutter-y: 20px;
}

.g-25,
.gx-25 {
    --bs-gutter-x: 25px;
}

.g-25,
.gy-25 {
    --bs-gutter-y: 25px;
}

.g-30,
.gx-30 {
    --bs-gutter-x: 30px;
}

.g-30,
.gy-30 {
    --bs-gutter-y: 30px;
}

.g-35,
.gx-35 {
    --bs-gutter-x: 35px;
}

.g-35,
.gy-35 {
    --bs-gutter-y: 35px;
}

.g-40,
.gx-40 {
    --bs-gutter-x: 40px;
}

.g-40,
.gy-40 {
    --bs-gutter-y: 40px;
}

.g-45,
.gx-45 {
    --bs-gutter-x: 45px;
}

.g-45,
.gy-45 {
    --bs-gutter-y: 45px;
}

.g-50,
.gx-50 {
    --bs-gutter-x: 50px;
}

.g-50,
.gy-50 {
    --bs-gutter-y: 50px;
}

.g-55,
.gx-55 {
    --bs-gutter-x: 55px;
}

.g-55,
.gy-55 {
    --bs-gutter-y: 55px;
}

.g-60,
.gx-60 {
    --bs-gutter-x: 60px;
}

.g-60,
.gy-60 {
    --bs-gutter-y: 60px;
}

.g-65,
.gx-65 {
    --bs-gutter-x: 65px;
}

.g-65,
.gy-65 {
    --bs-gutter-y: 65px;
}

.g-70,
.gx-70 {
    --bs-gutter-x: 70px;
}

.g-70,
.gy-70 {
    --bs-gutter-y: 70px;
}

.g-75,
.gx-75 {
    --bs-gutter-x: 75px;
}

.g-75,
.gy-75 {
    --bs-gutter-y: 75px;
}

.g-80,
.gx-80 {
    --bs-gutter-x: 80px;
}

.g-80,
.gy-80 {
    --bs-gutter-y: 80px;
}

.g-90,
.gx-90 {
    --bs-gutter-x: 90px;
}

.g-90,
.gy-90 {
    --bs-gutter-y: 90px;
}

.g-95,
.gx-95 {
    --bs-gutter-x: 95px;
}

.g-95,
.gy-95 {
    --bs-gutter-y: 95px;
}

.g-100,
.gx-100 {
    --bs-gutter-x: 100px;
}

.g-100,
.gy-100 {
    --bs-gutter-y: 100px;
}

.g-110,
.gx-110 {
    --bs-gutter-x: 110px;
}

.g-110,
.gy-110 {
    --bs-gutter-y: 110px;
}

.g-115,
.gx-115 {
    --bs-gutter-x: 115px;
}

.g-115,
.gy-115 {
    --bs-gutter-y: 115px;
}

.g-120,
.gx-120 {
    --bs-gutter-x: 120px;
}

.g-120,
.gy-120 {
    --bs-gutter-y: 120px;
}

.g-130,
.gx-130 {
    --bs-gutter-x: 130px;
}

.g-130,
.gy-130 {
    --bs-gutter-y: 130px;
}

.g-150,
.gx-150 {
    --bs-gutter-x: 150px;
}

.g-150,
.gy-150 {
    --bs-gutter-y: 150px;
}

.g-160,
.gx-160 {
    --bs-gutter-x: 160px;
}

.g-160,
.gy-160 {
    --bs-gutter-y: 160px;
}

.g-180,
.gx-180 {
    --bs-gutter-x: 180px;
}

.g-180,
.gy-180 {
    --bs-gutter-y: 180px;
}

.g-190,
.gx-190 {
    --bs-gutter-x: 190px;
}

.g-190,
.gy-190 {
    --bs-gutter-y: 190px;
}

.g-200,
.gx-200 {
    --bs-gutter-x: 200px;
}

.g-200,
.gy-200 {
    --bs-gutter-y: 200px;
}

.g-210,
.gx-210 {
    --bs-gutter-x: 210px;
}

.g-210,
.gy-210 {
    --bs-gutter-y: 210px;
}

.g-235,
.gx-235 {
    --bs-gutter-x: 235px;
}

.g-235,
.gy-235 {
    --bs-gutter-y: 235px;
}

.g-240,
.gx-240 {
    --bs-gutter-x: 240px;
}

.g-240,
.gy-240 {
    --bs-gutter-y: 240px;
}

.g-270,
.gx-270 {
    --bs-gutter-x: 270px;
}

.g-270,
.gy-270 {
    --bs-gutter-y: 270px;
}

.g-290,
.gx-290 {
    --bs-gutter-x: 290px;
}

.g-290,
.gy-290 {
    --bs-gutter-y: 290px;
}

.g-300,
.gx-300 {
    --bs-gutter-x: 300px;
}

.g-300,
.gy-300 {
    --bs-gutter-y: 300px;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #17161A;
    --bs-table-striped-bg: rgba(23, 22, 26, 0.05);
    --bs-table-active-color: #17161A;
    --bs-table-active-bg: rgba(23, 22, 26, 0.1);
    --bs-table-hover-color: #17161A;
    --bs-table-hover-bg: rgba(23, 22, 26, 0.075);
    width: 100%;
    margin-bottom: 3.33333rem;
    color: #17161A;
    vertical-align: top;
    border-color: #dee2e6;
}

.table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table > tbody {
    vertical-align: inherit;
}

.table > thead {
    vertical-align: bottom;
}

.table > :not(:first-child) {
    border-top: 2px solid currentColor;
}

.caption-top {
    caption-side: top;
}

.table-sm > :not(caption) > * > * {
    padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
    border-width: 1px 0;
}

.table-bordered > :not(caption) > * > * {
    border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
    border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: var(--bs-table-striped-bg);
    color: var(--bs-table-striped-color);
}

.table-active {
    --bs-table-accent-bg: var(--bs-table-active-bg);
    color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: var(--bs-table-hover-bg);
    color: var(--bs-table-hover-color);
}

.table-primary {
    --bs-table-bg: #cfe2ff;
    --bs-table-striped-bg: #c6d8f4;
    --bs-table-striped-color: #17161A;
    --bs-table-active-bg: #bdcee8;
    --bs-table-active-color: #17161A;
    --bs-table-hover-bg: #c1d3ee;
    --bs-table-hover-color: #17161A;
    color: #17161A;
    border-color: #bdcee8;
}

.table-secondary {
    --bs-table-bg: #e7e7e7;
    --bs-table-striped-bg: #dddddd;
    --bs-table-striped-color: #17161A;
    --bs-table-active-bg: #d2d2d3;
    --bs-table-active-color: #17161A;
    --bs-table-hover-bg: #d7d7d8;
    --bs-table-hover-color: #17161A;
    color: #17161A;
    border-color: #d2d2d3;
}

.table-success {
    --bs-table-bg: #d1e7dd;
    --bs-table-striped-bg: #c8ddd3;
    --bs-table-striped-color: #17161A;
    --bs-table-active-bg: #bed2ca;
    --bs-table-active-color: #17161A;
    --bs-table-hover-bg: #c3d7ce;
    --bs-table-hover-color: #17161A;
    color: #17161A;
    border-color: #bed2ca;
}

.table-info {
    --bs-table-bg: #cff4fc;
    --bs-table-striped-bg: #c6e9f1;
    --bs-table-striped-color: #17161A;
    --bs-table-active-bg: #bddee5;
    --bs-table-active-color: #17161A;
    --bs-table-hover-bg: #c1e3eb;
    --bs-table-hover-color: #17161A;
    color: #17161A;
    border-color: #bddee5;
}

.table-warning {
    --bs-table-bg: #fff3cd;
    --bs-table-striped-bg: #f3e8c4;
    --bs-table-striped-color: #17161A;
    --bs-table-active-bg: #e8ddbb;
    --bs-table-active-color: #17161A;
    --bs-table-hover-bg: #eee2c0;
    --bs-table-hover-color: #17161A;
    color: #17161A;
    border-color: #e8ddbb;
}

.table-danger {
    --bs-table-bg: #f8d7da;
    --bs-table-striped-bg: #edcdd0;
    --bs-table-striped-color: #17161A;
    --bs-table-active-bg: #e2c4c7;
    --bs-table-active-color: #17161A;
    --bs-table-hover-bg: #e7c9cc;
    --bs-table-hover-color: #17161A;
    color: #17161A;
    border-color: #e2c4c7;
}

.table-light {
    --bs-table-bg: #F5F5F7;
    --bs-table-striped-bg: #eaeaec;
    --bs-table-striped-color: #17161A;
    --bs-table-active-bg: #dfdfe1;
    --bs-table-active-color: #17161A;
    --bs-table-hover-bg: #e4e4e6;
    --bs-table-hover-color: #17161A;
    color: #17161A;
    border-color: #dfdfe1;
}

.table-dark {
    --bs-table-bg: #17161A;
    --bs-table-striped-bg: #232225;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #2e2d31;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #28272b;
    --bs-table-hover-color: #fff;
    color: #fff;
    border-color: #2e2d31;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.form-label {
    margin-bottom: 0.5rem;
}

.col-form-label {
    padding-top: 1px;
    padding-bottom: 1px;
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
}

.col-form-label-lg {
    padding-top: 1px;
    padding-bottom: 1px;
    font-size: 1.25rem;
}

.col-form-label-sm {
    padding-top: calc(0.25rem + 1px);
    padding-bottom: calc(0.25rem + 1px);
    font-size: 0.875rem;
}

.form-text {
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #858589;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0 0;
    /* font-family: "Inter", sans-serif; */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #17161A;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid rgba(177, 177, 180, 0.7);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-control {
        -webkit-transition: none;
        transition: none;
    }
}

.form-control[type=file] {
    overflow: hidden;
}

.form-control[type=file]:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.form-control:focus {
    color: #17161A;
    background-color: transparent;
    border-color: #17161A;
    outline: 0;
    -webkit-box-shadow: 0;
    box-shadow: 0;
}

.form-control::-webkit-date-and-time-value {
    height: 1.5em;
}

.form-control::-webkit-input-placeholder {
    color: #17161A;
    opacity: 1;
}

.form-control::-moz-placeholder {
    color: #17161A;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #17161A;
    opacity: 1;
}

.form-control::-ms-input-placeholder {
    color: #17161A;
    opacity: 1;
}

.form-control::placeholder {
    color: #17161A;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.form-control::-webkit-file-upload-button {
    padding: 0 0;
    margin: 0 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    color: #17161A;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

.form-control::file-selector-button {
    padding: 0 0;
    margin: 0 0;
    -webkit-margin-end: 0;
    -moz-margin-end: 0;
    margin-inline-end: 0;
    color: #17161A;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

@media (prefers-reduced-motion: reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none;
    }

    .form-control::file-selector-button {
        -webkit-transition: none;
        transition: none;
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
    padding: 0 0;
    margin: 0 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    color: #17161A;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

@media (prefers-reduced-motion: reduce) {
    .form-control::-webkit-file-upload-button {
        -webkit-transition: none;
        transition: none;
    }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3;
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding: 0 0;
    margin-bottom: 0;
    line-height: 1.5;
    color: #17161A;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0;
}

.form-control-plaintext.form-control-sm,
.form-control-plaintext.form-control-lg {
    padding-left: 0;
    padding-right: 0;
}

.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 10px;
}

.form-control-sm::-webkit-file-upload-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    -webkit-margin-end: 0.5rem;
    margin-inline-end: 0.5rem;
}

.form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    -webkit-margin-end: 0.5rem;
    -moz-margin-end: 0.5rem;
    margin-inline-end: 0.5rem;
}

.form-control-sm::-webkit-file-upload-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    -webkit-margin-end: 0.5rem;
    margin-inline-end: 0.5rem;
}

.form-control-lg {
    min-height: auto;
    padding: 0 0;
    font-size: 1.25rem;
    border-radius: 0;
}

.form-control-lg::-webkit-file-upload-button {
    padding: 0 0;
    margin: 0 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
}

.form-control-lg::file-selector-button {
    padding: 0 0;
    margin: 0 0;
    -webkit-margin-end: 0;
    -moz-margin-end: 0;
    margin-inline-end: 0;
}

.form-control-lg::-webkit-file-upload-button {
    padding: 0 0;
    margin: 0 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
}

textarea.form-control {
    min-height: auto;
}

textarea.form-control-sm {
    min-height: calc(1.5em + 0.5rem + 2px);
}

textarea.form-control-lg {
    min-height: auto;
}

.form-control-color {
    width: 3rem;
    height: auto;
    padding: 0;
}

.form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer;
}

.form-control-color::-moz-color-swatch {
    height: 1.5em;
    border-radius: 0;
}

.form-control-color::-webkit-color-swatch {
    height: 1.5em;
    border-radius: 0;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0 0 0 0;
    -moz-padding-start: -3px;
    /* font-family: "Inter", sans-serif; */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #17161A;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 0 center;
    background-size: 16px 12px;
    border: 1px solid rgba(177, 177, 180, 0.7);
    border-radius: 0;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .form-select {
        -webkit-transition: none;
        transition: none;
    }
}

.form-select:focus {
    border-color: #17161A;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
    padding-left: 0;
    background-image: none;
}

.form-select:disabled {
    background-color: #e9ecef;
}

.form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #17161A;
}

.form-select-sm {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-right: 0.5rem;
    font-size: 0.875rem;
    border-radius: 10px;
}

.form-select-lg {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    font-size: 1.25rem;
    border-radius: 0;
}

.form-check {
    display: block;
    min-height: 1.5rem;
    padding-right: 1.5em;
    margin-bottom: 0.125rem;
}

.form-check .form-check-input {
    float: right;
    margin-right: -1.5em;
}

.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: 0.25em;
    vertical-align: top;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(23, 22, 26, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.form-check-input[type=checkbox] {
    border-radius: 0.25em;
}

.form-check-input[type=radio] {
    border-radius: 50%;
}

.form-check-input:active {
    -webkit-filter: brightness(90%);
    filter: brightness(90%);
}

.form-check-input:focus {
    border-color: #17161A;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-input:checked[type=checkbox] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type=radio] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type=checkbox]:indeterminate {
    background-color: #0d6efd;
    border-color: #0d6efd;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
    pointer-events: none;
    -webkit-filter: none;
    filter: none;
    opacity: 0.5;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
    opacity: 0.5;
}

.form-switch {
    padding-right: 2.5em;
}

.form-switch .form-check-input {
    width: 2em;
    margin-right: -2.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%2823, 22, 26, 0.25%29'/%3e%3c/svg%3e");
    background-position: right center;
    border-radius: 2em;
    -webkit-transition: background-position 0.15s ease-in-out;
    transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-switch .form-check-input {
        -webkit-transition: none;
        transition: none;
    }
}

.form-switch .form-check-input:focus {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2317161A'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
    background-position: left center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
    display: inline-block;
    margin-left: 1rem;
}

.btn-check {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.btn-check[disabled] + .btn,
.btn-check:disabled + .btn {
    pointer-events: none;
    -webkit-filter: none;
    filter: none;
    opacity: 0.65;
}

.form-range {
    width: 100%;
    height: 1rem;
    padding: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-range:focus {
    outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
    -webkit-box-shadow: 0 0 0 1px #fff, 0;
    box-shadow: 0 0 0 1px #fff, 0;
}

.form-range:focus::-moz-range-thumb {
    box-shadow: 0 0 0 1px #fff, 0;
}

.form-range::-moz-focus-outer {
    border: 0;
}

.form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .form-range::-webkit-slider-thumb {
        -webkit-transition: none;
        transition: none;
    }
}

.form-range::-webkit-slider-thumb:active {
    background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #0d6efd;
    border: 0;
    border-radius: 1rem;
    -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -moz-appearance: none;
    appearance: none;
}

@media (prefers-reduced-motion: reduce) {
    .form-range::-moz-range-thumb {
        -moz-transition: none;
        transition: none;
    }
}

.form-range::-moz-range-thumb:active {
    background-color: #b6d4fe;
}

.form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem;
}

.form-range:disabled {
    pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
    background-color: #B1B1B4;
}

.form-range:disabled::-moz-range-thumb {
    background-color: #B1B1B4;
}

.form-floating {
    position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.form-floating > label {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 1rem 0;
    pointer-events: none;
    border: 1px solid transparent;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .form-floating > label {
        -webkit-transition: none;
        transition: none;
    }
}

.form-floating > .form-control {
    padding: 1rem 0;
}

.form-floating > .form-control::-webkit-input-placeholder {
    color: transparent;
}

.form-floating > .form-control::-moz-placeholder {
    color: transparent;
}

.form-floating > .form-control:-ms-input-placeholder {
    color: transparent;
}

.form-floating > .form-control::-ms-input-placeholder {
    color: transparent;
}

.form-floating > .form-control::placeholder {
    color: transparent;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-ms-input-placeholder) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-control:-webkit-autofill {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
}

.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
    opacity: 0.65;
    -ms-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
    transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    opacity: 0.65;
    -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
    -ms-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
    transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
}

.form-floating > .form-control:-webkit-autofill ~ label {
    opacity: 0.65;
    -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
    transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
}

.input-group {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group > .form-control,
.input-group > .form-select {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group > .form-control:focus,
.input-group > .form-select:focus {
    z-index: 3;
}

.input-group .btn {
    position: relative;
    z-index: 2;
}

.input-group .btn:focus {
    z-index: 3;
}

.input-group-text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #17161A;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid rgba(177, 177, 180, 0.7);
    border-radius: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
    padding: 0 0;
    font-size: 1.25rem;
    border-radius: 0;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    border-radius: 10px;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
    padding-left: 0;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-right: -1px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #198754;
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.8333325rem 1.666665rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: rgba(25, 135, 84, 0.9);
    border-radius: 14px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
    display: block;
}

.was-validated .form-control:valid,
.form-control.is-valid {
    border-color: #198754;
    padding-left: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 0.375em center;
    background-size: 0.75em 0.75em;
}

.was-validated .form-control:valid:focus,
.form-control.is-valid:focus {
    border-color: #198754;
    -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
    padding-left: 1.5em;
    background-position: top 0.375em left 0.375em;
}

.was-validated .form-select:valid,
.form-select.is-valid {
    border-color: #198754;
}

.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"],
.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"] {
    padding-left: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-position: left 0 center, center left 0;
    background-size: 16px 12px, 0.75em 0.75em;
}

.was-validated .form-select:valid:focus,
.form-select.is-valid:focus {
    border-color: #198754;
    -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid,
.form-check-input.is-valid {
    border-color: #198754;
}

.was-validated .form-check-input:valid:checked,
.form-check-input.is-valid:checked {
    background-color: #198754;
}

.was-validated .form-check-input:valid:focus,
.form-check-input.is-valid:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label,
.form-check-input.is-valid ~ .form-check-label {
    color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
    margin-right: 0.5em;
}

.was-validated .input-group .form-control:valid,
.input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
    z-index: 1;
}

.was-validated .input-group .form-control:valid:focus,
.input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
    z-index: 3;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 0.8333325rem 1.666665rem;
    margin-top: 0.1rem;
    font-size: 0.875rem;
    color: #fff;
    background-color: rgba(220, 53, 69, 0.9);
    border-radius: 14px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
    display: block;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: #dc3545;
    padding-left: 1.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 0.375em center;
    background-size: 0.75em 0.75em;
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
    padding-left: 1.5em;
    background-position: top 0.375em left 0.375em;
}

.was-validated .form-select:invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
    padding-left: 0;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-position: left 0 center, center left 0;
    background-size: 16px 12px, 0.75em 0.75em;
}

.was-validated .form-select:invalid:focus,
.form-select.is-invalid:focus {
    border-color: #dc3545;
    -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid,
.form-check-input.is-invalid {
    border-color: #dc3545;
}

.was-validated .form-check-input:invalid:checked,
.form-check-input.is-invalid:checked {
    background-color: #dc3545;
}

.was-validated .form-check-input:invalid:focus,
.form-check-input.is-invalid:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label,
.form-check-input.is-invalid ~ .form-check-label {
    color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
    margin-right: 0.5em;
}

.was-validated .input-group .form-control:invalid,
.input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
    z-index: 2;
}

.was-validated .input-group .form-control:invalid:focus,
.input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
    z-index: 3;
}

.btn {
    display: inline-block;
    /* font-family: "Inter", sans-serif; */
    font-weight: 700;
    line-height: 1.5;
    color: #17161A;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 0 solid transparent;
    padding: 15px 40px;
    font-size: 1rem;
    border-radius: 50rem;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

@media (prefers-reduced-motion: reduce) {
    .btn {
        -webkit-transition: none;
        transition: none;
    }
}

.btn:hover {
    color: #17161A;
}

.btn-check:focus + .btn,
.btn:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn:disabled,
.btn.disabled,
fieldset:disabled .btn {
    pointer-events: none;
    opacity: 0.65;
}

.btn-primary {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
    -webkit-box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
    box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
}

.btn-check:checked + .btn-primary,
.btn-check:active + .btn-primary,
.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a53be;
}

.btn-check:checked + .btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
    box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
}

.btn-primary:disabled,
.btn-primary.disabled {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-secondary {
    color: #17161A;
    background-color: #858589;
    border-color: #858589;
}

.btn-secondary:hover {
    color: #17161A;
    background-color: #97979b;
    border-color: #919195;
}

.btn-check:focus + .btn-secondary,
.btn-secondary:focus {
    color: #17161A;
    background-color: #97979b;
    border-color: #919195;
    -webkit-box-shadow: 0 0 0 0 rgba(117, 116, 120, 0.5);
    box-shadow: 0 0 0 0 rgba(117, 116, 120, 0.5);
}

.btn-check:checked + .btn-secondary,
.btn-check:active + .btn-secondary,
.btn-secondary:active,
.btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
    color: #17161A;
    background-color: #9d9da1;
    border-color: #919195;
}

.btn-check:checked + .btn-secondary:focus,
.btn-check:active + .btn-secondary:focus,
.btn-secondary:active:focus,
.btn-secondary.active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(117, 116, 120, 0.5);
    box-shadow: 0 0 0 0 rgba(117, 116, 120, 0.5);
}

.btn-secondary:disabled,
.btn-secondary.disabled {
    color: #17161A;
    background-color: #858589;
    border-color: #858589;
}

.btn-success {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
}

.btn-check:focus + .btn-success,
.btn-success:focus {
    color: #fff;
    background-color: #157347;
    border-color: #146c43;
    -webkit-box-shadow: 0 0 0 0 rgba(60, 153, 110, 0.5);
    box-shadow: 0 0 0 0 rgba(60, 153, 110, 0.5);
}

.btn-check:checked + .btn-success,
.btn-check:active + .btn-success,
.btn-success:active,
.btn-success.active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #146c43;
    border-color: #13653f;
}

.btn-check:checked + .btn-success:focus,
.btn-check:active + .btn-success:focus,
.btn-success:active:focus,
.btn-success.active:focus,
.show > .btn-success.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(60, 153, 110, 0.5);
    box-shadow: 0 0 0 0 rgba(60, 153, 110, 0.5);
}

.btn-success:disabled,
.btn-success.disabled {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.btn-info {
    color: #17161A;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-info:hover {
    color: #17161A;
    background-color: #31d2f2;
    border-color: #25cff2;
}

.btn-check:focus + .btn-info,
.btn-info:focus {
    color: #17161A;
    background-color: #31d2f2;
    border-color: #25cff2;
    -webkit-box-shadow: 0 0 0 0 rgba(15, 175, 208, 0.5);
    box-shadow: 0 0 0 0 rgba(15, 175, 208, 0.5);
}

.btn-check:checked + .btn-info,
.btn-check:active + .btn-info,
.btn-info:active,
.btn-info.active,
.show > .btn-info.dropdown-toggle {
    color: #17161A;
    background-color: #3dd5f3;
    border-color: #25cff2;
}

.btn-check:checked + .btn-info:focus,
.btn-check:active + .btn-info:focus,
.btn-info:active:focus,
.btn-info.active:focus,
.show > .btn-info.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(15, 175, 208, 0.5);
    box-shadow: 0 0 0 0 rgba(15, 175, 208, 0.5);
}

.btn-info:disabled,
.btn-info.disabled {
    color: #17161A;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-warning {
    color: #17161A;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #17161A;
    background-color: #ffca2c;
    border-color: #ffc720;
}

.btn-check:focus + .btn-warning,
.btn-warning:focus {
    color: #17161A;
    background-color: #ffca2c;
    border-color: #ffc720;
    -webkit-box-shadow: 0 0 0 0 rgba(220, 167, 10, 0.5);
    box-shadow: 0 0 0 0 rgba(220, 167, 10, 0.5);
}

.btn-check:checked + .btn-warning,
.btn-check:active + .btn-warning,
.btn-warning:active,
.btn-warning.active,
.show > .btn-warning.dropdown-toggle {
    color: #17161A;
    background-color: #ffcd39;
    border-color: #ffc720;
}

.btn-check:checked + .btn-warning:focus,
.btn-check:active + .btn-warning:focus,
.btn-warning:active:focus,
.btn-warning.active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(220, 167, 10, 0.5);
    box-shadow: 0 0 0 0 rgba(220, 167, 10, 0.5);
}

.btn-warning:disabled,
.btn-warning.disabled {
    color: #17161A;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
}

.btn-check:focus + .btn-danger,
.btn-danger:focus {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
    -webkit-box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
    box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
}

.btn-check:checked + .btn-danger,
.btn-check:active + .btn-danger,
.btn-danger:active,
.btn-danger.active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #b02a37;
    border-color: #a52834;
}

.btn-check:checked + .btn-danger:focus,
.btn-check:active + .btn-danger:focus,
.btn-danger:active:focus,
.btn-danger.active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
    box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
}

.btn-danger:disabled,
.btn-danger.disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-light {
    color: #17161A;
    background-color: #F5F5F7;
    border-color: #F5F5F7;
}

.btn-light:hover {
    color: #17161A;
    background-color: #f7f7f8;
    border-color: #f6f6f8;
}

.btn-check:focus + .btn-light,
.btn-light:focus {
    color: #17161A;
    background-color: #f7f7f8;
    border-color: #f6f6f8;
    -webkit-box-shadow: 0 0 0 0 rgba(212, 212, 214, 0.5);
    box-shadow: 0 0 0 0 rgba(212, 212, 214, 0.5);
}

.btn-check:checked + .btn-light,
.btn-check:active + .btn-light,
.btn-light:active,
.btn-light.active,
.show > .btn-light.dropdown-toggle {
    color: #17161A;
    background-color: #f7f7f9;
    border-color: #f6f6f8;
}

.btn-check:checked + .btn-light:focus,
.btn-check:active + .btn-light:focus,
.btn-light:active:focus,
.btn-light.active:focus,
.show > .btn-light.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(212, 212, 214, 0.5);
    box-shadow: 0 0 0 0 rgba(212, 212, 214, 0.5);
}

.btn-light:disabled,
.btn-light.disabled {
    color: #17161A;
    background-color: #F5F5F7;
    border-color: #F5F5F7;
}

.btn-dark {
    color: #fff;
    background-color: #17161A;
    border-color: #17161A;
}

.btn-dark:hover {
    color: #fff;
    background-color: #141316;
    border-color: #121215;
}

.btn-check:focus + .btn-dark,
.btn-dark:focus {
    color: #fff;
    background-color: #141316;
    border-color: #121215;
    -webkit-box-shadow: 0 0 0 0 rgba(58, 57, 60, 0.5);
    box-shadow: 0 0 0 0 rgba(58, 57, 60, 0.5);
}

.btn-check:checked + .btn-dark,
.btn-check:active + .btn-dark,
.btn-dark:active,
.btn-dark.active,
.show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #121215;
    border-color: #111114;
}

.btn-check:checked + .btn-dark:focus,
.btn-check:active + .btn-dark:focus,
.btn-dark:active:focus,
.btn-dark.active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(58, 57, 60, 0.5);
    box-shadow: 0 0 0 0 rgba(58, 57, 60, 0.5);
}

.btn-dark:disabled,
.btn-dark.disabled {
    color: #fff;
    background-color: #17161A;
    border-color: #17161A;
}

.btn-outline-primary {
    color: #0d6efd;
    border-color: #0d6efd;
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-check:focus + .btn-outline-primary,
.btn-outline-primary:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
}

.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: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.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 {
    -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
}

.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
    color: #0d6efd;
    background-color: transparent;
}

.btn-outline-secondary {
    color: #858589;
    border-color: #858589;
}

.btn-outline-secondary:hover {
    color: #17161A;
    background-color: #858589;
    border-color: #858589;
}

.btn-check:focus + .btn-outline-secondary,
.btn-outline-secondary:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(133, 133, 137, 0.5);
    box-shadow: 0 0 0 0 rgba(133, 133, 137, 0.5);
}

.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 {
    color: #17161A;
    background-color: #858589;
    border-color: #858589;
}

.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 {
    -webkit-box-shadow: 0 0 0 0 rgba(133, 133, 137, 0.5);
    box-shadow: 0 0 0 0 rgba(133, 133, 137, 0.5);
}

.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
    color: #858589;
    background-color: transparent;
}

.btn-outline-success {
    color: #198754;
    border-color: #198754;
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #198754;
    border-color: #198754;
}

.btn-check:focus + .btn-outline-success,
.btn-outline-success:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5);
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5);
}

.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: #fff;
    background-color: #198754;
    border-color: #198754;
}

.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 {
    -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5);
    box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5);
}

.btn-outline-success:disabled,
.btn-outline-success.disabled {
    color: #198754;
    background-color: transparent;
}

.btn-outline-info {
    color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-outline-info:hover {
    color: #17161A;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.btn-check:focus + .btn-outline-info,
.btn-outline-info:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
    box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
}

.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: #17161A;
    background-color: #0dcaf0;
    border-color: #0dcaf0;
}

.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 {
    -webkit-box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
    box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
}

.btn-outline-info:disabled,
.btn-outline-info.disabled {
    color: #0dcaf0;
    background-color: transparent;
}

.btn-outline-warning {
    color: #ffc107;
    border-color: #ffc107;
}

.btn-outline-warning:hover {
    color: #17161A;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-check:focus + .btn-outline-warning,
.btn-outline-warning:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.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: #17161A;
    background-color: #ffc107;
    border-color: #ffc107;
}

.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 {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-warning:disabled,
.btn-outline-warning.disabled {
    color: #ffc107;
    background-color: transparent;
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-check:focus + .btn-outline-danger,
.btn-outline-danger:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

.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: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.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 {
    -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
    box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}

.btn-outline-danger:disabled,
.btn-outline-danger.disabled {
    color: #dc3545;
    background-color: transparent;
}

.btn-outline-light {
    color: #F5F5F7;
    border-color: #F5F5F7;
}

.btn-outline-light:hover {
    color: #17161A;
    background-color: #F5F5F7;
    border-color: #F5F5F7;
}

.btn-check:focus + .btn-outline-light,
.btn-outline-light:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(245, 245, 247, 0.5);
    box-shadow: 0 0 0 0 rgba(245, 245, 247, 0.5);
}

.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: #17161A;
    background-color: #F5F5F7;
    border-color: #F5F5F7;
}

.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 {
    -webkit-box-shadow: 0 0 0 0 rgba(245, 245, 247, 0.5);
    box-shadow: 0 0 0 0 rgba(245, 245, 247, 0.5);
}

.btn-outline-light:disabled,
.btn-outline-light.disabled {
    color: #F5F5F7;
    background-color: transparent;
}

.btn-outline-dark {
    color: #17161A;
    border-color: #17161A;
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #17161A;
    border-color: #17161A;
}

.btn-check:focus + .btn-outline-dark,
.btn-outline-dark:focus {
    -webkit-box-shadow: 0 0 0 0 rgba(23, 22, 26, 0.5);
    box-shadow: 0 0 0 0 rgba(23, 22, 26, 0.5);
}

.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: #fff;
    background-color: #17161A;
    border-color: #17161A;
}

.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 {
    -webkit-box-shadow: 0 0 0 0 rgba(23, 22, 26, 0.5);
    box-shadow: 0 0 0 0 rgba(23, 22, 26, 0.5);
}

.btn-outline-dark:disabled,
.btn-outline-dark.disabled {
    color: #17161A;
    background-color: transparent;
}

.btn-link {
    font-weight: 400;
    color: #0d6efd;
    text-decoration: underline;
}

.btn-link:hover {
    color: #0a58ca;
}

.btn-link:disabled,
.btn-link.disabled {
    color: #858589;
}

.btn-lg,
.btn-group-lg > .btn {
    padding: 20px 50px;
    font-size: 1rem;
    border-radius: 50rem;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 10px 15px;
    font-size: 0.875rem;
    border-radius: 50rem;
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
    .fade {
        -webkit-transition: none;
        transition: none;
    }
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        -webkit-transition: none;
        transition: none;
    }
}

.collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    -webkit-transition: width 0.35s ease;
    transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing.collapse-horizontal {
        -webkit-transition: none;
        transition: none;
    }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-left: 0.3em solid transparent;
    border-bottom: 0;
    border-right: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 240px;
    padding: 20px 0;
    margin: 0;
    font-size: 1rem;
    color: #17161A;
    text-align: right;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 0 solid rgba(23, 22, 26, 0.15);
    border-radius: 14px;
}

.dropdown-menu[data-bs-popper] {
    top: 100%;
    right: 0;
    margin-top: 0.125rem;
}

.dropdown-menu-start {
    --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
    left: auto;
    right: 0;
}

.dropdown-menu-end {
    --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
    left: 0;
    right: auto;
}

@media (min-width: 620px) {
    .dropdown-menu-sm-start {
        --bs-position: start;
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .dropdown-menu-sm-end {
        --bs-position: end;
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}

@media (min-width: 828px) {
    .dropdown-menu-md-start {
        --bs-position: start;
    }

    .dropdown-menu-md-start[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .dropdown-menu-md-end {
        --bs-position: end;
    }

    .dropdown-menu-md-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}

@media (min-width: 1024px) {
    .dropdown-menu-lg-start {
        --bs-position: start;
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .dropdown-menu-lg-end {
        --bs-position: end;
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}

@media (min-width: 1200px) {
    .dropdown-menu-xl-start {
        --bs-position: start;
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .dropdown-menu-xl-end {
        --bs-position: end;
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}

@media (min-width: 1400px) {
    .dropdown-menu-xxl-start {
        --bs-position: start;
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .dropdown-menu-xxl-end {
        --bs-position: end;
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        left: 0;
        right: auto;
    }
}

.dropup .dropdown-menu[data-bs-popper] {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0;
    border-left: 0.3em solid transparent;
    border-bottom: 0.3em solid;
    border-right: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
    top: 0;
    left: auto;
    right: 100%;
    margin-top: 0;
    margin-right: 0.125rem;
}

.dropend .dropdown-toggle::after {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-left: 0;
    border-bottom: 0.3em solid transparent;
    border-right: 0.3em solid;
}

.dropend .dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropend .dropdown-toggle::after {
    vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
    top: 0;
    left: 100%;
    right: auto;
    margin-top: 0;
    margin-left: 0.125rem;
}

.dropstart .dropdown-toggle::after {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0.255em;
    content: "";
}

.dropstart .dropdown-toggle::after {
    display: none;
}

.dropstart .dropdown-toggle::before {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid transparent;
    border-left: 0.3em solid;
    border-bottom: 0.3em solid transparent;
}

.dropstart .dropdown-toggle:empty::after {
    margin-right: 0;
}

.dropstart .dropdown-toggle::before {
    vertical-align: 0;
}

.dropdown-divider {
    height: 0;
    margin: 1.666665rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(23, 22, 26, 0.15);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.8333325rem 3.33333rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #0d6efd;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    color: #B1B1B4;
    pointer-events: none;
    background-color: transparent;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    display: block;
    padding: 20px 3.33333rem;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #858589;
    white-space: nowrap;
}

.dropdown-item-text {
    display: block;
    padding: 0.8333325rem 3.33333rem;
    color: #212529;
}

.dropdown-menu-dark {
    color: #dee2e6;
    background-color: #343a40;
    border-color: rgba(23, 22, 26, 0.15);
}

.dropdown-menu-dark .dropdown-item {
    color: #dee2e6;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.15);
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    color: #fff;
    background-color: #0d6efd;
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
    color: #B1B1B4;
}

.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(23, 22, 26, 0.15);
}

.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6;
}

.dropdown-menu-dark .dropdown-header {
    color: #B1B1B4;
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
    z-index: 1;
}

.btn-toolbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.btn-toolbar .input-group {
    width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
    margin-right: 0;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.dropdown-toggle-split {
    padding-left: 30px;
    padding-right: 30px;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after {
    margin-right: 0;
}

.dropstart .dropdown-toggle-split::before {
    margin-left: 0;
}

.btn-sm + .dropdown-toggle-split,
.btn-group-sm > .btn + .dropdown-toggle-split {
    padding-left: 11.25px;
    padding-right: 11.25px;
}

.btn-lg + .dropdown-toggle-split,
.btn-group-lg > .btn + .dropdown-toggle-split {
    padding-left: 37.5px;
    padding-right: 37.5px;
}

.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
    width: 100%;
}

.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: 0;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 0 0;
    color: #0d6efd;
    text-decoration: none;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link {
        -webkit-transition: none;
        transition: none;
    }
}

.nav-link:hover,
.nav-link:focus {
    color: #0a58ca;
}

.nav-link.disabled {
    color: #858589;
    pointer-events: none;
    cursor: default;
}

.nav-tabs {
    border-bottom: 0 solid #dee2e6;
}

.nav-tabs .nav-link {
    margin-bottom: 0;
    background: none;
    border: 0 solid transparent;
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
    border-color: #e9ecef #e9ecef #dee2e6;
    isolation: isolate;
}

.nav-tabs .nav-link.disabled {
    color: #858589;
    background-color: transparent;
    border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
    color: inherit;
    background-color: transparent;
    border-color: #dee2e6 #dee2e6 transparent;
}

.nav-tabs .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.nav-pills .nav-link {
    background: none;
    border: 0;
    border-radius: 14px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    color: #fff;
    background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
    width: 100%;
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.navbar {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: right;
    -ms-flex-pack: justify;
    justify-content: right;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 0;
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: inherit;
    -ms-flex-wrap: inherit;
    flex-wrap: inherit;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: right;
    -ms-flex-pack: justify;
    justify-content: right;
}

.navbar-brand {
    padding-top: -0.1875rem;
    padding-bottom: -0.1875rem;
    margin-left: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    list-style: none;
}

.navbar-nav .nav-link {
    padding-left: 0;
    padding-right: 0;
}

.navbar-nav .dropdown-menu {
    position: static;
}

.navbar-text {
    padding-top: 0;
    padding-bottom: 0;
}

/* .navbar-collapse {
	-webkit-flex-basis: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
} */

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 50rem;
    -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
    transition: -webkit-box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out;
    transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
        -webkit-transition: none;
        transition: none;
    }
}

.navbar-toggler:hover {
    text-decoration: none;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-nav-scroll {
    max-height: var(--bs-scroll-height, 75vh);
    overflow-y: auto;
}

@media (min-width: 620px) {
    .navbar-expand-sm {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-sm .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .navbar-expand-sm .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-sm .navbar-collapse {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-sm .navbar-toggler {
        display: none;
    }

    .navbar-expand-sm .offcanvas-header {
        display: none;
    }

    .navbar-expand-sm .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-left: 0;
        border-right: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .navbar-expand-sm .offcanvas-top,
    .navbar-expand-sm .offcanvas-bottom {
        height: auto;
        border-top: 0;
        border-bottom: 0;
    }

    .navbar-expand-sm .offcanvas-body {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 828px) {
    .navbar-expand-md {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .navbar-expand-md .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-md .navbar-collapse {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-md .navbar-toggler {
        display: none;
    }

    .navbar-expand-md .offcanvas-header {
        display: none;
    }

    .navbar-expand-md .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-left: 0;
        border-right: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .navbar-expand-md .offcanvas-top,
    .navbar-expand-md .offcanvas-bottom {
        height: auto;
        border-top: 0;
        border-bottom: 0;
    }

    .navbar-expand-md .offcanvas-body {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 1024px) {
    .navbar-expand-lg {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .navbar-expand-lg .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none;
    }

    .navbar-expand-lg .offcanvas-header {
        display: none;
    }

    .navbar-expand-lg .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-left: 0;
        border-right: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .navbar-expand-lg .offcanvas-top,
    .navbar-expand-lg .offcanvas-bottom {
        height: auto;
        border-top: 0;
        border-bottom: 0;
    }

    .navbar-expand-lg .offcanvas-body {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .navbar-expand-xl .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-xl .navbar-toggler {
        display: none;
    }

    .navbar-expand-xl .offcanvas-header {
        display: none;
    }

    .navbar-expand-xl .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-left: 0;
        border-right: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .navbar-expand-xl .offcanvas-top,
    .navbar-expand-xl .offcanvas-bottom {
        height: auto;
        border-top: 0;
        border-bottom: 0;
    }

    .navbar-expand-xl .offcanvas-body {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

@media (min-width: 1400px) {
    .navbar-expand-xxl {
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .navbar-expand-xxl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute;
    }

    .navbar-expand-xxl .navbar-nav .nav-link {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .navbar-expand-xxl .navbar-nav-scroll {
        overflow: visible;
    }

    .navbar-expand-xxl .navbar-collapse {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }

    .navbar-expand-xxl .navbar-toggler {
        display: none;
    }

    .navbar-expand-xxl .offcanvas-header {
        display: none;
    }

    .navbar-expand-xxl .offcanvas {
        position: inherit;
        bottom: 0;
        z-index: 1000;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        visibility: visible !important;
        background-color: transparent;
        border-left: 0;
        border-right: 0;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }

    .navbar-expand-xxl .offcanvas-top,
    .navbar-expand-xxl .offcanvas-bottom {
        height: auto;
        border-top: 0;
        border-bottom: 0;
    }

    .navbar-expand-xxl .offcanvas-body {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        padding: 0;
        overflow-y: visible;
    }
}

.navbar-expand {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.navbar-expand .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.navbar-expand .navbar-nav-scroll {
    overflow: visible;
}

.navbar-expand .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
}

.navbar-expand .navbar-toggler {
    display: none;
}

.navbar-expand .offcanvas-header {
    display: none;
}

.navbar-expand .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-left: 0;
    border-right: 0;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
}

.navbar-expand .offcanvas-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
}

.navbar-light .navbar-brand {
    color: rgba(23, 22, 26, 0.9);
}

.navbar-light .navbar-brand:hover,
.navbar-light .navbar-brand:focus {
    color: rgba(23, 22, 26, 0.9);
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(23, 22, 26, 0.55);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(23, 22, 26, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(23, 22, 26, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
    color: rgba(23, 22, 26, 0.9);
}

.navbar-light .navbar-toggler {
    color: rgba(23, 22, 26, 0.55);
    border-color: rgba(23, 22, 26, 0.1);
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2823, 22, 26, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
    color: rgba(23, 22, 26, 0.55);
}

.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
    color: rgba(23, 22, 26, 0.9);
}

.navbar-dark .navbar-brand {
    color: #fff;
}

.navbar-dark .navbar-brand:hover,
.navbar-dark .navbar-brand:focus {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.55);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark.navbar-topbar .navbar-nav .nav-item:hover > .nav-link,
.navbar-dark .navbar-nav.nav-contacts .nav-item:hover > .nav-link {
    color: #fff;
    background: rgba(0, 0, 0, 0.22);
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, 0.55);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, 0.55);
}

.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
    color: #fff;
}

.card {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: transparent;
    background-clip: border-box;
    border: 0 solid rgba(23, 22, 26, 0.125);
    border-radius: 14px;
}

.card > hr {
    margin-left: 0;
    margin-right: 0;
}

.card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
}

.card > .list-group:first-child {
    border-top-width: 0;
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
}

.card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
    border-top: 0;
}

.card-body {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 3.33333rem 3.33333rem;
}

.card-title {
    margin-bottom: 12px;
}

.card-subtitle {
    margin-top: -6px;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link + .card-link {
    margin-right: 3.33333rem;
}

.card-header {
    padding: 1.666665rem 3.33333rem;
    margin-bottom: 0;
    background-color: rgba(23, 22, 26, 0.03);
    border-bottom: 0 solid rgba(23, 22, 26, 0.125);
}

.card-header:first-child {
    border-radius: 14px 14px 0 0;
}

.card-footer {
    padding: 1.666665rem 3.33333rem;
    background-color: rgba(23, 22, 26, 0.03);
    border-top: 0 solid rgba(23, 22, 26, 0.125);
}

.card-footer:last-child {
    border-radius: 0 0 14px 14px;
}

.card-header-tabs {
    margin-left: -1.666665rem;
    margin-bottom: -1.666665rem;
    margin-right: -1.666665rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-left: -1.666665rem;
    margin-right: -1.666665rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 3.33333rem;
    border-radius: 14px;
}

.card-img,
.card-img-top,
.card-img-bottom {
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
}

.card-img,
.card-img-bottom {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 620px) {
    .card-group {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

    .card-group > .card {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0;
    }

    .card-group > .card + .card {
        margin-right: 0;
        border-right: 0;
    }

    .card-group > .card:not(:last-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-top,
    .card-group > .card:not(:last-child) .card-header {
        border-top-left-radius: 0;
    }

    .card-group > .card:not(:last-child) .card-img-bottom,
    .card-group > .card:not(:last-child) .card-footer {
        border-bottom-left-radius: 0;
    }

    .card-group > .card:not(:first-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-top,
    .card-group > .card:not(:first-child) .card-header {
        border-top-right-radius: 0;
    }

    .card-group > .card:not(:first-child) .card-img-bottom,
    .card-group > .card:not(:first-child) .card-footer {
        border-bottom-right-radius: 0;
    }
}

.accordion-button {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 35px 70px;
    font-size: 1rem;
    color: #17161A;
    text-align: right;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    -webkit-transition: all 150ms linear, border-radius 0.15s ease;
    transition: all 150ms linear, border-radius 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        -webkit-transition: none;
        transition: none;
    }
}

.accordion-button:not(.collapsed) {
    color: #0c63e4;
    background-color: transparent;
    -webkit-box-shadow: inset 0 -1px 0 rgba(177, 177, 180, 0.3);
    box-shadow: inset 0 -1px 0 rgba(177, 177, 180, 0.3);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 10'%3e%3cpath fill='%23B1B1B4' d='m8 8-.707.707.707.707.707-.707L8 8ZM.293 1.707l7 7 1.414-1.414-7-7L.293 1.707Zm8.414 7 7-7L14.293.293l-7 7 1.414 1.414Z'/%3e%3c/svg%3e");
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion-button::after {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 10'%3e%3cpath fill='%2317161A' d='m8 8-.707.707.707.707.707-.707L8 8ZM.293 1.707l7 7 1.414-1.414-7-7L.293 1.707Zm8.414 7 7-7L14.293.293l-7 7 1.414 1.414Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        -webkit-transition: none;
        transition: none;
    }
}

.accordion-button:hover {
    z-index: 2;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #17161A;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(177, 177, 180, 0.3);
}

.accordion-item:first-of-type {
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
}

.accordion-item:first-of-type .accordion-button {
    border-top-right-radius: 13px;
    border-top-left-radius: 13px;
}

.accordion-item:not(:first-of-type) {
    border-top: 0;
}

.accordion-item:last-of-type {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;
}

.accordion-item:last-of-type .accordion-collapse {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.accordion-body {
    padding: 40px 70px;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}

.accordion-flush .accordion-item {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
    border-top: 0;
}

.accordion-flush .accordion-item:last-child {
    border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
}

.breadcrumb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
    padding-right: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    float: right;
    padding-left: 0.5rem;
    color: #858589;
    content: var(--bs-breadcrumb-divider, "../../../../index.html");
}

.breadcrumb-item.active {
    color: #858589;
}

.pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
    list-style: none;
}

.page-link {
    position: relative;
    display: block;
    color: #0d6efd;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #dee2e6;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .page-link {
        -webkit-transition: none;
        transition: none;
    }
}

.page-link:hover {
    z-index: 2;
    color: #0a58ca;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.page-link:focus {
    z-index: 3;
    color: #0a58ca;
    background-color: #e9ecef;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.page-item:not(:first-child) .page-link {
    margin-right: -1px;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.page-item.disabled .page-link {
    color: #858589;
    pointer-events: none;
    background-color: #fff;
    border-color: #dee2e6;
}

.page-link {
    padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

.page-item:last-child .page-link {
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
}

.pagination-lg .page-link {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
}

.pagination-lg .page-item:first-child .page-link {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.pagination-lg .page-item:last-child .page-link {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.pagination-sm .page-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pagination-sm .page-item:last-child .page-link {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.badge {
    display: inline-block;
    padding: 6px 9px;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 6px;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-left: 9.99999rem;
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 4.1666625rem 3.33333rem;
}

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

.alert-primary .alert-link {
    color: #06357a;
}

.alert-secondary {
    color: #505052;
    background-color: #e7e7e7;
    border-color: #dadadc;
}

.alert-secondary .alert-link {
    color: #404042;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-success .alert-link {
    color: #0c4128;
}

.alert-info {
    color: #135e70;
    background-color: #cff4fc;
    border-color: #b6effb;
}

.alert-info .alert-link {
    color: #0f4b5a;
}

.alert-warning {
    color: #745a12;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.alert-warning .alert-link {
    color: #5d480e;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

.alert-danger .alert-link {
    color: #6a1a21;
}

.alert-light {
    color: #706f72;
    background-color: #fdfdfd;
    border-color: #fcfcfd;
}

.alert-light .alert-link {
    color: #5a595b;
}

.alert-dark {
    color: #0e0d10;
    background-color: #d1d0d1;
    border-color: #b9b9ba;
}

.alert-dark .alert-link {
    color: #0b0a0d;
}

.progress {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 14px;
}

.progress-bar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #0d6efd;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar {
        -webkit-transition: none;
        transition: none;
    }
}

.progress-bar-striped {
    background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: 1s linear infinite progress-bar-stripes;
    animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
        -webkit-animation: none;
        animation: none;
    }
}

.list-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 0;
    border-radius: 14px;
}

.list-group-numbered {
    list-style-type: none;
    counter-reset: section;
}

.list-group-numbered > li::before {
    content: counters(section, ".") ". ";
    counter-increment: section;
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit;
}

.list-group-item-action:hover,
.list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa;
}

.list-group-item-action:active {
    color: #17161A;
    background-color: #e9ecef;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 0 0;
    color: #212529;
    text-decoration: none;
    background-color: transparent;
    border: 1px solid rgba(23, 22, 26, 0.125);
}

.list-group-item:first-child {
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
}

.list-group-item:last-child {
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

.list-group-item.disabled,
.list-group-item:disabled {
    color: #858589;
    pointer-events: none;
    background-color: transparent;
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.list-group-item + .list-group-item {
    border-top-width: 0;
}

.list-group-item + .list-group-item.active {
    margin-top: -1px;
    border-top-width: 1px;
}

.list-group-horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
    border-bottom-right-radius: 14px;
    border-top-left-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
    border-top-left-radius: 14px;
    border-bottom-right-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
    margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-right-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
    margin-right: -1px;
    border-right-width: 1px;
}

@media (min-width: 620px) {
    .list-group-horizontal-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .list-group-horizontal-sm > .list-group-item:first-child {
        border-bottom-right-radius: 14px;
        border-top-left-radius: 0;
    }

    .list-group-horizontal-sm > .list-group-item:last-child {
        border-top-left-radius: 14px;
        border-bottom-right-radius: 0;
    }

    .list-group-horizontal-sm > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-sm > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-right-width: 0;
    }

    .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
        margin-right: -1px;
        border-right-width: 1px;
    }
}

@media (min-width: 828px) {
    .list-group-horizontal-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .list-group-horizontal-md > .list-group-item:first-child {
        border-bottom-right-radius: 14px;
        border-top-left-radius: 0;
    }

    .list-group-horizontal-md > .list-group-item:last-child {
        border-top-left-radius: 14px;
        border-bottom-right-radius: 0;
    }

    .list-group-horizontal-md > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-md > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-right-width: 0;
    }

    .list-group-horizontal-md > .list-group-item + .list-group-item.active {
        margin-right: -1px;
        border-right-width: 1px;
    }
}

@media (min-width: 1024px) {
    .list-group-horizontal-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .list-group-horizontal-lg > .list-group-item:first-child {
        border-bottom-right-radius: 14px;
        border-top-left-radius: 0;
    }

    .list-group-horizontal-lg > .list-group-item:last-child {
        border-top-left-radius: 14px;
        border-bottom-right-radius: 0;
    }

    .list-group-horizontal-lg > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-lg > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-right-width: 0;
    }

    .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
        margin-right: -1px;
        border-right-width: 1px;
    }
}

@media (min-width: 1200px) {
    .list-group-horizontal-xl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .list-group-horizontal-xl > .list-group-item:first-child {
        border-bottom-right-radius: 14px;
        border-top-left-radius: 0;
    }

    .list-group-horizontal-xl > .list-group-item:last-child {
        border-top-left-radius: 14px;
        border-bottom-right-radius: 0;
    }

    .list-group-horizontal-xl > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-xl > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-right-width: 0;
    }

    .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
        margin-right: -1px;
        border-right-width: 1px;
    }
}

@media (min-width: 1400px) {
    .list-group-horizontal-xxl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .list-group-horizontal-xxl > .list-group-item:first-child {
        border-bottom-right-radius: 14px;
        border-top-left-radius: 0;
    }

    .list-group-horizontal-xxl > .list-group-item:last-child {
        border-top-left-radius: 14px;
        border-bottom-right-radius: 0;
    }

    .list-group-horizontal-xxl > .list-group-item.active {
        margin-top: 0;
    }

    .list-group-horizontal-xxl > .list-group-item + .list-group-item {
        border-top-width: 1px;
        border-right-width: 0;
    }

    .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
        margin-right: -1px;
        border-right-width: 1px;
    }
}

.list-group-flush {
    border-radius: 0;
}

.list-group-flush > .list-group-item {
    border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
    border-bottom-width: 0;
}

.list-group-item-primary {
    color: #084298;
    background-color: #cfe2ff;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
    color: #084298;
    background-color: #bacbe6;
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #084298;
    border-color: #084298;
}

.list-group-item-secondary {
    color: #505052;
    background-color: #e7e7e7;
}

.list-group-item-secondary.list-group-item-action:hover,
.list-group-item-secondary.list-group-item-action:focus {
    color: #505052;
    background-color: #d0d0d0;
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #505052;
    border-color: #505052;
}

.list-group-item-success {
    color: #0f5132;
    background-color: #d1e7dd;
}

.list-group-item-success.list-group-item-action:hover,
.list-group-item-success.list-group-item-action:focus {
    color: #0f5132;
    background-color: #bcd0c7;
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #0f5132;
    border-color: #0f5132;
}

.list-group-item-info {
    color: #135e70;
    background-color: #cff4fc;
}

.list-group-item-info.list-group-item-action:hover,
.list-group-item-info.list-group-item-action:focus {
    color: #135e70;
    background-color: #badce3;
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #135e70;
    border-color: #135e70;
}

.list-group-item-warning {
    color: #745a12;
    background-color: #fff3cd;
}

.list-group-item-warning.list-group-item-action:hover,
.list-group-item-warning.list-group-item-action:focus {
    color: #745a12;
    background-color: #e6dbb9;
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #745a12;
    border-color: #745a12;
}

.list-group-item-danger {
    color: #842029;
    background-color: #f8d7da;
}

.list-group-item-danger.list-group-item-action:hover,
.list-group-item-danger.list-group-item-action:focus {
    color: #842029;
    background-color: #dfc2c4;
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #842029;
    border-color: #842029;
}

.list-group-item-light {
    color: #706f72;
    background-color: #fdfdfd;
}

.list-group-item-light.list-group-item-action:hover,
.list-group-item-light.list-group-item-action:focus {
    color: #706f72;
    background-color: #e4e4e4;
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #706f72;
    border-color: #706f72;
}

.list-group-item-dark {
    color: #0e0d10;
    background-color: #d1d0d1;
}

.list-group-item-dark.list-group-item-action:hover,
.list-group-item-dark.list-group-item-action:focus {
    color: #0e0d10;
    background-color: #bcbbbc;
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #0e0d10;
    border-color: #0e0d10;
}

.btn-close {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #17161A;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317161A'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 14px;
    opacity: 0.5;
}

.btn-close:hover {
    color: #17161A;
    text-decoration: none;
    opacity: 0.75;
}

.btn-close:focus {
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
}

.btn-close:disabled,
.btn-close.disabled {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0.25;
}

.btn-close-white {
    -webkit-filter: invert(1) grayscale(100%) brightness(200%);
    filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
    width: 350px;
    max-width: 100%;
    font-size: 0.875rem;
    pointer-events: auto;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(23, 22, 26, 0.1);
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
    border-radius: 14px;
}

.toast.showing {
    opacity: 0;
}

.toast:not(.show) {
    display: none;
}

.toast-container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    pointer-events: none;
}

.toast-container > :not(:last-child) {
    margin-bottom: 15px;
}

.toast-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.5rem 0.75rem;
    color: #858589;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(23, 22, 26, 0.05);
    border-top-right-radius: 13px;
    border-top-left-radius: 13px;
}

.toast-header .btn-close {
    margin-left: -0.375rem;
    margin-right: 0.75rem;
}

.toast-body {
    padding: 0.75rem;
    word-wrap: break-word;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none;
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(23, 22, 26, 0.2);
    border-radius: 20px;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #17161A;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3.33333rem 3.33333rem;
    border-bottom: 1px solid #dee2e6;
    border-top-right-radius: 19px;
    border-top-left-radius: 19px;
}

.modal-header .btn-close {
    padding: 1.666665rem 1.666665rem;
    margin: -1.666665rem auto -1.666665rem -1.666665rem;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 3.33333rem;
}

.modal-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 3.08333rem;
    border-top: 1px solid #dee2e6;
    border-bottom-left-radius: 19px;
    border-bottom-right-radius: 19px;
}

.modal-footer > * {
    margin: 0.25rem;
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
}

.modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
}

.modal-fullscreen .modal-header {
    border-radius: 0;
}

.modal-fullscreen .modal-body {
    overflow-y: auto;
}

.modal-fullscreen .modal-footer {
    border-radius: 0;
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    /* font-family: "Inter", sans-serif; */
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0;
}

.tooltip.show {
    opacity: 0.9;
}

.tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem;
}

.tooltip .tooltip-arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-tooltip-top,
.bs-tooltip-auto[data-popper-placement^=top] {
    padding: 0.4rem 0;
}

.bs-tooltip-top .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
    bottom: 0;
}

.bs-tooltip-top .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
    top: -1px;
    border-width: 0.4rem 0.4rem 0;
    border-top-color: #17161A;
}

.bs-tooltip-end,
.bs-tooltip-auto[data-popper-placement^=right] {
    padding: 0 0.4rem;
}

.bs-tooltip-end .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-end .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
    left: -1px;
    border-width: 0.4rem 0 0.4rem 0.4rem;
    border-left-color: #17161A;
}

.bs-tooltip-bottom,
.bs-tooltip-auto[data-popper-placement^=bottom] {
    padding: 0.4rem 0;
}

.bs-tooltip-bottom .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
    top: 0;
}

.bs-tooltip-bottom .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
    bottom: -1px;
    border-width: 0 0.4rem 0.4rem;
    border-bottom-color: #17161A;
}

.bs-tooltip-start,
.bs-tooltip-auto[data-popper-placement^=left] {
    padding: 0 0.4rem;
}

.bs-tooltip-start .tooltip-arrow,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem;
}

.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
    right: -1px;
    border-width: 0.4rem 0.4rem 0.4rem 0;
    border-right-color: #17161A;
}

.tooltip-inner {
    max-width: 200px;
    padding: 0.8333325rem 1.666665rem;
    color: #fff;
    text-align: center;
    background-color: #17161A;
    border-radius: 14px;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1070;
    display: block;
    max-width: 276px;
    /* font-family: "Inter", sans-serif; */
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: right;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(23, 22, 26, 0.2);
    border-radius: 20px;
}

.popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
}

.popover .popover-arrow::before,
.popover .popover-arrow::after {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid;
}

.bs-popover-top > .popover-arrow,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
    bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
    bottom: 0;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: rgba(23, 22, 26, 0.25);
}

.bs-popover-top > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
    bottom: 1px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #fff;
}

.bs-popover-end > .popover-arrow,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
    right: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
}

.bs-popover-end > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
    right: 0;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: rgba(23, 22, 26, 0.25);
}

.bs-popover-end > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #fff;
}

.bs-popover-bottom > .popover-arrow,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
    top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
    top: 0;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: rgba(23, 22, 26, 0.25);
}

.bs-popover-bottom > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
    top: 1px;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before,
.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
    position: absolute;
    top: 0;
    right: 50%;
    display: block;
    width: 1rem;
    margin-right: -0.5rem;
    content: "";
    border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
    left: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem;
}

.bs-popover-start > .popover-arrow::before,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(23, 22, 26, 0.25);
}

.bs-popover-start > .popover-arrow::after,
.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #fff;
}

.popover-header {
    padding: 0.5rem 3.33333rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid rgba(23, 22, 26, 0.2);
    border-top-right-radius: 19px;
    border-top-left-radius: 19px;
}

.popover-header:empty {
    display: none;
}

.popover-body {
    padding: 3.33333rem 3.33333rem;
    color: #17161A;
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: right;
    width: 100%;
    margin-left: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        -webkit-transition: none;
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 0s 0.6s;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
        -webkit-transition: none;
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {

    .carousel-control-prev,
    .carousel-control-next {
        -webkit-transition: none;
        transition: none;
    }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    right: 0;
}

.carousel-control-next {
    left: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin-left: 15%;
    margin-bottom: 1rem;
    margin-right: 15%;
    list-style: none;
}

.carousel-indicators [data-bs-target] {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-left: 3px;
    margin-right: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    -webkit-transition: opacity 0.6s ease;
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators [data-bs-target] {
        -webkit-transition: none;
        transition: none;
    }
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    left: 15%;
    bottom: 1.25rem;
    right: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center;
}

.carousel-dark .carousel-control-next-icon,
.carousel-dark .carousel-control-prev-icon {
    -webkit-filter: invert(1) grayscale(100);
    filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #17161A;
}

.carousel-dark .carousel-caption {
    color: #17161A;
}


.spinner-border {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    border: 0.25em solid currentColor;
    border-left-color: transparent;
    border-radius: 50%;
    -webkit-animation: 0.75s linear infinite spinner-border;
    animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

.spinner-grow {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: -0.125em;
    background-color: currentColor;
    border-radius: 50%;
    opacity: 0;
    -webkit-animation: 0.75s linear infinite spinner-grow;
    animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
    width: 1rem;
    height: 1rem;
}

@media (prefers-reduced-motion: reduce) {

    .spinner-border,
    .spinner-grow {
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
    }
}

.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: 1045;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    visibility: hidden;
    background-color: #fff;
    background-clip: padding-box;
    outline: 0;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .offcanvas {
        -webkit-transition: none;
        transition: none;
    }
}

.offcanvas-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #17161A;
}

.offcanvas-backdrop.fade {
    opacity: 0;
}

.offcanvas-backdrop.show {
    opacity: 0.5;
}

.offcanvas-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3.33333rem 3.33333rem;
}

.offcanvas-header .btn-close {
    padding: 1.666665rem 1.666665rem;
    margin-top: -1.666665rem;
    margin-left: -1.666665rem;
    margin-bottom: -1.666665rem;
}

.offcanvas-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.offcanvas-body {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 3.33333rem 3.33333rem;
    overflow-y: auto;
}

.offcanvas-start {
    top: 0;
    right: 0;
    width: 400px;
    border-left: 1px solid rgba(23, 22, 26, 0.2);
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.offcanvas-end {
    top: 0;
    left: 0;
    width: 400px;
    border-right: 1px solid rgba(23, 22, 26, 0.2);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}

.offcanvas-top {
    top: 0;
    left: 0;
    right: 0;
    height: 30vh;
    max-height: 100%;
    border-bottom: 1px solid rgba(23, 22, 26, 0.2);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.offcanvas-bottom {
    left: 0;
    right: 0;
    height: 30vh;
    max-height: 100%;
    border-top: 1px solid rgba(23, 22, 26, 0.2);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.offcanvas.show {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.placeholder {
    display: inline-block;
    min-height: 1em;
    vertical-align: middle;
    cursor: wait;
    background-color: currentColor;
    opacity: 0.5;
}

.placeholder.btn::before {
    display: inline-block;
    content: "";
}

.placeholder-xs {
    min-height: 0.6em;
}

.placeholder-sm {
    min-height: 0.8em;
}

.placeholder-lg {
    min-height: 1.2em;
}

.placeholder-glow .placeholder {
    -webkit-animation: placeholder-glow 2s ease-in-out infinite;
    animation: placeholder-glow 2s ease-in-out infinite;
}

.placeholder-wave {
    -webkit-mask-image: -webkit-linear-gradient(320deg, #17161A 55%, rgba(0, 0, 0, 0.8) 75%, #17161A 95%);
    mask-image: linear-gradient(130deg, #17161A 55%, rgba(0, 0, 0, 0.8) 75%, #17161A 95%);
    -webkit-mask-size: 200% 100%;
    mask-size: 200% 100%;
    -webkit-animation: placeholder-wave 2s linear infinite;
    animation: placeholder-wave 2s linear infinite;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.link-primary {
    color: #0d6efd;
}

.link-primary:hover,
.link-primary:focus {
    color: #0a58ca;
}

.link-secondary {
    color: #858589;
}

.link-secondary:hover,
.link-secondary:focus {
    color: #9d9da1;
}

.link-success {
    color: #198754;
}

.link-success:hover,
.link-success:focus {
    color: #146c43;
}

.link-info {
    color: #0dcaf0;
}

.link-info:hover,
.link-info:focus {
    color: #3dd5f3;
}

.link-warning {
    color: #ffc107;
}

.link-warning:hover,
.link-warning:focus {
    color: #ffcd39;
}

.link-danger {
    color: #dc3545;
}

.link-danger:hover,
.link-danger:focus {
    color: #b02a37;
}

.link-light {
    color: #F5F5F7;
}

.link-light:hover,
.link-light:focus {
    color: #f7f7f9;
}

.link-dark {
    color: #17161A;
}

.link-dark:hover,
.link-dark:focus {
    color: #121215;
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: "";
}

.ratio > * {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1030;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.hstack {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.vstack {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    content: "";
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vr {
    display: inline-block;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    width: 1px;
    min-height: 1em;
    background-color: currentColor;
    opacity: 0.25;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.float-start {
    float: right !important;
}

.float-end {
    float: left !important;
}

.float-none {
    float: none !important;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.shadow {
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05) !important;
}

.shadow-sm {
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(23, 22, 26, 0.075) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(23, 22, 26, 0.075) !important;
}

.shadow-lg {
    -webkit-box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1) !important;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1) !important;
}

.shadow-none {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.top-0 {
    top: 0 !important;
}

.top-50 {
    top: 50% !important;
}

.top-100 {
    top: 100% !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.bottom-50 {
    bottom: 50% !important;
}

.bottom-100 {
    bottom: 100% !important;
}

.start-0 {
    right: 0 !important;
}

.start-50 {
    right: 50% !important;
}

.start-100 {
    right: 100% !important;
}

.end-0 {
    left: 0 !important;
}

.end-50 {
    left: 50% !important;
}

.end-100 {
    left: 100% !important;
}

.translate-middle {
    -webkit-transform: translate(50%, -50%) !important;
    -ms-transform: translate(50%, -50%) !important;
    transform: translate(50%, -50%) !important;
}

.translate-middle-x {
    -webkit-transform: translateX(50%) !important;
    -ms-transform: translateX(50%) !important;
    transform: translateX(50%) !important;
}

.translate-middle-y {
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-end {
    border-left: 1px solid #dee2e6 !important;
}

.border-end-0 {
    border-left: 0 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-start {
    border-right: 1px solid #dee2e6 !important;
}

.border-start-0 {
    border-right: 0 !important;
}

.border-primary {
    border-color: #0d6efd !important;
}

.border-secondary {
    border-color: #858589 !important;
}

.border-success {
    border-color: #198754 !important;
}

.border-info {
    border-color: #0dcaf0 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-light {
    border-color: #F5F5F7 !important;
}

.border-dark {
    border-color: #17161A !important;
}

.border-white {
    border-color: #fff !important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.vw-100 {
    width: 100vw !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mh-100 {
    max-height: 100% !important;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.flex-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.flex-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 1px !important;
}

.gap-2 {
    gap: 2px !important;
}

.gap-3 {
    gap: 3px !important;
}

.gap-4 {
    gap: 4px !important;
}

.gap-5 {
    gap: 5px !important;
}

.gap-6 {
    gap: 6px !important;
}

.gap-7 {
    gap: 7px !important;
}

.gap-8 {
    gap: 8px !important;
}

.gap-9 {
    gap: 9px !important;
}

.gap-10 {
    gap: 10px !important;
}

.gap-11 {
    gap: 11px !important;
}

.gap-12 {
    gap: 12px !important;
}

.gap-13 {
    gap: 13px !important;
}

.gap-15 {
    gap: 15px !important;
}

.gap-17 {
    gap: 17px !important;
}

.gap-18 {
    gap: 18px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-25 {
    gap: 25px !important;
}

.gap-30 {
    gap: 30px !important;
}

.gap-35 {
    gap: 35px !important;
}

.gap-40 {
    gap: 40px !important;
}

.gap-45 {
    gap: 45px !important;
}

.gap-50 {
    gap: 50px !important;
}

.gap-55 {
    gap: 55px !important;
}

.gap-60 {
    gap: 60px !important;
}

.gap-65 {
    gap: 65px !important;
}

.gap-70 {
    gap: 70px !important;
}

.gap-75 {
    gap: 75px !important;
}

.gap-80 {
    gap: 80px !important;
}

.gap-90 {
    gap: 90px !important;
}

.gap-95 {
    gap: 95px !important;
}

.gap-100 {
    gap: 100px !important;
}

.gap-110 {
    gap: 110px !important;
}

.gap-115 {
    gap: 115px !important;
}

.gap-120 {
    gap: 120px !important;
}

.gap-130 {
    gap: 130px !important;
}

.gap-150 {
    gap: 150px !important;
}

.gap-160 {
    gap: 160px !important;
}

.gap-180 {
    gap: 180px !important;
}

.gap-190 {
    gap: 190px !important;
}

.gap-200 {
    gap: 200px !important;
}

.gap-210 {
    gap: 210px !important;
}

.gap-235 {
    gap: 235px !important;
}

.gap-240 {
    gap: 240px !important;
}

.gap-270 {
    gap: 270px !important;
}

.gap-290 {
    gap: 290px !important;
}

.gap-300 {
    gap: 300px !important;
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.justify-content-evenly {
    -webkit-box-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

.order-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
}

.order-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
}

.order-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
}

.order-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
}

.order-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
}

.order-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
}

.order-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
}

.order-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 1px !important;
}

.m-2 {
    margin: 2px !important;
}

.m-3 {
    margin: 3px !important;
}

.m-4 {
    margin: 4px !important;
}

.m-5 {
    margin: 5px !important;
}

.m-6 {
    margin: 6px !important;
}

.m-7 {
    margin: 7px !important;
}

.m-8 {
    margin: 8px !important;
}

.m-9 {
    margin: 9px !important;
}

.m-10 {
    margin: 10px !important;
}

.m-11 {
    margin: 11px !important;
}

.m-12 {
    margin: 12px !important;
}

.m-13 {
    margin: 13px !important;
}

.m-15 {
    margin: 15px !important;
}

.m-17 {
    margin: 17px !important;
}

.m-18 {
    margin: 18px !important;
}

.m-20 {
    margin: 20px !important;
}

.m-25 {
    margin: 25px !important;
}

.m-30 {
    margin: 30px !important;
}

.m-35 {
    margin: 35px !important;
}

.m-40 {
    margin: 40px !important;
}

.m-45 {
    margin: 45px !important;
}

.m-50 {
    margin: 50px !important;
}

.m-55 {
    margin: 55px !important;
}

.m-60 {
    margin: 60px !important;
}

.m-65 {
    margin: 65px !important;
}

.m-70 {
    margin: 70px !important;
}

.m-75 {
    margin: 75px !important;
}

.m-80 {
    margin: 80px !important;
}

.m-90 {
    margin: 90px !important;
}

.m-95 {
    margin: 95px !important;
}

.m-100 {
    margin: 100px !important;
}

.m-110 {
    margin: 110px !important;
}

.m-115 {
    margin: 115px !important;
}

.m-120 {
    margin: 120px !important;
}

.m-130 {
    margin: 130px !important;
}

.m-150 {
    margin: 150px !important;
}

.m-160 {
    margin: 160px !important;
}

.m-180 {
    margin: 180px !important;
}

.m-190 {
    margin: 190px !important;
}

.m-200 {
    margin: 200px !important;
}

.m-210 {
    margin: 210px !important;
}

.m-235 {
    margin: 235px !important;
}

.m-240 {
    margin: 240px !important;
}

.m-270 {
    margin: 270px !important;
}

.m-290 {
    margin: 290px !important;
}

.m-300 {
    margin: 300px !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 1px !important;
    margin-right: 1px !important;
}

.mx-2 {
    margin-left: 2px !important;
    margin-right: 2px !important;
}

.mx-3 {
    margin-left: 3px !important;
    margin-right: 3px !important;
}

.mx-4 {
    margin-left: 4px !important;
    margin-right: 4px !important;
}

.mx-5 {
    margin-left: 5px !important;
    margin-right: 5px !important;
}

.mx-6 {
    margin-left: 6px !important;
    margin-right: 6px !important;
}

.mx-7 {
    margin-left: 7px !important;
    margin-right: 7px !important;
}

.mx-8 {
    margin-left: 8px !important;
    margin-right: 8px !important;
}

.mx-9 {
    margin-left: 9px !important;
    margin-right: 9px !important;
}

.mx-10 {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mx-11 {
    margin-left: 11px !important;
    margin-right: 11px !important;
}

.mx-12 {
    margin-left: 12px !important;
    margin-right: 12px !important;
}

.mx-13 {
    margin-left: 13px !important;
    margin-right: 13px !important;
}

.mx-15 {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

.mx-17 {
    margin-left: 17px !important;
    margin-right: 17px !important;
}

.mx-18 {
    margin-left: 18px !important;
    margin-right: 18px !important;
}

.mx-20 {
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.mx-25 {
    margin-left: 25px !important;
    margin-right: 25px !important;
}

.mx-30 {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.mx-35 {
    margin-left: 35px !important;
    margin-right: 35px !important;
}

.mx-40 {
    margin-left: 40px !important;
    margin-right: 40px !important;
}

.mx-45 {
    margin-left: 45px !important;
    margin-right: 45px !important;
}

.mx-50 {
    margin-left: 50px !important;
    margin-right: 50px !important;
}

.mx-55 {
    margin-left: 55px !important;
    margin-right: 55px !important;
}

.mx-60 {
    margin-left: 60px !important;
    margin-right: 60px !important;
}

.mx-65 {
    margin-left: 65px !important;
    margin-right: 65px !important;
}

.mx-70 {
    margin-left: 70px !important;
    margin-right: 70px !important;
}

.mx-75 {
    margin-left: 75px !important;
    margin-right: 75px !important;
}

.mx-80 {
    margin-left: 80px !important;
    margin-right: 80px !important;
}

.mx-90 {
    margin-left: 90px !important;
    margin-right: 90px !important;
}

.mx-95 {
    margin-left: 95px !important;
    margin-right: 95px !important;
}

.mx-100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
}

.mx-110 {
    margin-left: 110px !important;
    margin-right: 110px !important;
}

.mx-115 {
    margin-left: 115px !important;
    margin-right: 115px !important;
}

.mx-120 {
    margin-left: 120px !important;
    margin-right: 120px !important;
}

.mx-130 {
    margin-left: 130px !important;
    margin-right: 130px !important;
}

.mx-150 {
    margin-left: 150px !important;
    margin-right: 150px !important;
}

.mx-160 {
    margin-left: 160px !important;
    margin-right: 160px !important;
}

.mx-180 {
    margin-left: 180px !important;
    margin-right: 180px !important;
}

.mx-190 {
    margin-left: 190px !important;
    margin-right: 190px !important;
}

.mx-200 {
    margin-left: 200px !important;
    margin-right: 200px !important;
}

.mx-210 {
    margin-left: 210px !important;
    margin-right: 210px !important;
}

.mx-235 {
    margin-left: 235px !important;
    margin-right: 235px !important;
}

.mx-240 {
    margin-left: 240px !important;
    margin-right: 240px !important;
}

.mx-270 {
    margin-left: 270px !important;
    margin-right: 270px !important;
}

.mx-290 {
    margin-left: 290px !important;
    margin-right: 290px !important;
}

.mx-300 {
    margin-left: 300px !important;
    margin-right: 300px !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.my-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
}

.my-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
}

.my-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
}

.my-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
}

.my-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}

.my-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
}

.my-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
}

.my-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
}

.my-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
}

.my-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.my-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
}

.my-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}

.my-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
}

.my-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.my-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
}

.my-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
}

.my-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.my-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
}

.my-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.my-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
}

.my-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
}

.my-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
}

.my-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
}

.my-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
}

.my-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
}

.my-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
}

.my-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
}

.my-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
}

.my-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
}

.my-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
}

.my-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
}

.my-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
}

.my-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
}

.my-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
}

.my-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
}

.my-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
}

.my-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
}

.my-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
}

.my-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
}

.my-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
}

.my-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
}

.my-210 {
    margin-top: 210px !important;
    margin-bottom: 210px !important;
}

.my-235 {
    margin-top: 235px !important;
    margin-bottom: 235px !important;
}

.my-240 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
}

.my-270 {
    margin-top: 270px !important;
    margin-bottom: 270px !important;
}

.my-290 {
    margin-top: 290px !important;
    margin-bottom: 290px !important;
}

.my-300 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 1px !important;
}

.mt-2 {
    margin-top: 2px !important;
}

.mt-3 {
    margin-top: 3px !important;
}

.mt-4 {
    margin-top: 4px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-6 {
    margin-top: 6px !important;
}

.mt-7 {
    margin-top: 7px !important;
}

.mt-8 {
    margin-top: 8px !important;
}

.mt-9 {
    margin-top: 9px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-11 {
    margin-top: 11px !important;
}

.mt-12 {
    margin-top: 12px !important;
}

.mt-13 {
    margin-top: 13px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-17 {
    margin-top: 17px !important;
}

.mt-18 {
    margin-top: 18px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-55 {
    margin-top: 55px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-65 {
    margin-top: 65px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-95 {
    margin-top: 95px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mt-110 {
    margin-top: 110px !important;
}

.mt-115 {
    margin-top: 115px !important;
}

.mt-120 {
    margin-top: 120px !important;
}

.mt-130 {
    margin-top: 130px !important;
}

.mt-150 {
    margin-top: 150px !important;
}

.mt-160 {
    margin-top: 160px !important;
}

.mt-180 {
    margin-top: 180px !important;
}

.mt-190 {
    margin-top: 190px !important;
}

.mt-200 {
    margin-top: 200px !important;
}

.mt-210 {
    margin-top: 210px !important;
}

.mt-235 {
    margin-top: 235px !important;
}

.mt-240 {
    margin-top: 240px !important;
}

.mt-270 {
    margin-top: 270px !important;
}

.mt-290 {
    margin-top: 290px !important;
}

.mt-300 {
    margin-top: 300px !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-left: 0 !important;
}

.me-1 {
    margin-left: 1px !important;
}

.me-2 {
    margin-left: 2px !important;
}

.me-3 {
    margin-left: 3px !important;
}

.me-4 {
    margin-left: 4px !important;
}

.me-5 {
    margin-left: 5px !important;
}

.me-6 {
    margin-left: 6px !important;
}

.me-7 {
    margin-left: 7px !important;
}

.me-8 {
    margin-left: 8px !important;
}

.me-9 {
    margin-left: 9px !important;
}

.me-10 {
    margin-left: 10px !important;
}

.me-11 {
    margin-left: 11px !important;
}

.me-12 {
    margin-left: 12px !important;
}

.me-13 {
    margin-left: 13px !important;
}

.me-15 {
    margin-left: 15px !important;
}

.me-17 {
    margin-left: 17px !important;
}

.me-18 {
    margin-left: 18px !important;
}

.me-20 {
    margin-left: 20px !important;
}

.me-25 {
    margin-left: 25px !important;
}

.me-30 {
    margin-left: 30px !important;
}

.me-35 {
    margin-left: 35px !important;
}

.me-40 {
    margin-left: 40px !important;
}

.me-45 {
    margin-left: 45px !important;
}

.me-50 {
    margin-left: 50px !important;
}

.me-55 {
    margin-left: 55px !important;
}

.me-60 {
    margin-left: 60px !important;
}

.me-65 {
    margin-left: 65px !important;
}

.me-70 {
    margin-left: 70px !important;
}

.me-75 {
    margin-left: 75px !important;
}

.me-80 {
    margin-left: 80px !important;
}

.me-90 {
    margin-left: 90px !important;
}

.me-95 {
    margin-left: 95px !important;
}

.me-100 {
    margin-left: 100px !important;
}

.me-110 {
    margin-left: 110px !important;
}

.me-115 {
    margin-left: 115px !important;
}

.me-120 {
    margin-left: 120px !important;
}

.me-130 {
    margin-left: 130px !important;
}

.me-150 {
    margin-left: 150px !important;
}

.me-160 {
    margin-left: 160px !important;
}

.me-180 {
    margin-left: 180px !important;
}

.me-190 {
    margin-left: 190px !important;
}

.me-200 {
    margin-left: 200px !important;
}

.me-210 {
    margin-left: 210px !important;
}

.me-235 {
    margin-left: 235px !important;
}

.me-240 {
    margin-left: 240px !important;
}

.me-270 {
    margin-left: 270px !important;
}

.me-290 {
    margin-left: 290px !important;
}

.me-300 {
    margin-left: 300px !important;
}

.me-auto {
    margin-left: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 1px !important;
}

.mb-2 {
    margin-bottom: 2px !important;
}

.mb-3 {
    margin-bottom: 3px !important;
}

.mb-4 {
    margin-bottom: 4px !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-6 {
    margin-bottom: 6px !important;
}

.mb-7 {
    margin-bottom: 7px !important;
}

.mb-8 {
    margin-bottom: 8px !important;
}

.mb-9 {
    margin-bottom: 9px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-11 {
    margin-bottom: 11px !important;
}

.mb-12 {
    margin-bottom: 12px !important;
}

.mb-13 {
    margin-bottom: 13px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-17 {
    margin-bottom: 17px !important;
}

.mb-18 {
    margin-bottom: 18px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-65 {
    margin-bottom: 65px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-95 {
    margin-bottom: 95px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.mb-110 {
    margin-bottom: 110px !important;
}

.mb-115 {
    margin-bottom: 115px !important;
}

.mb-120 {
    margin-bottom: 120px !important;
}

.mb-130 {
    margin-bottom: 130px !important;
}

.mb-150 {
    margin-bottom: 150px !important;
}

.mb-160 {
    margin-bottom: 160px !important;
}

.mb-180 {
    margin-bottom: 180px !important;
}

.mb-190 {
    margin-bottom: 190px !important;
}

.mb-200 {
    margin-bottom: 200px !important;
}

.mb-210 {
    margin-bottom: 210px !important;
}

.mb-235 {
    margin-bottom: 235px !important;
}

.mb-240 {
    margin-bottom: 240px !important;
}

.mb-270 {
    margin-bottom: 270px !important;
}

.mb-290 {
    margin-bottom: 290px !important;
}

.mb-300 {
    margin-bottom: 300px !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-right: 0 !important;
}

.ms-1 {
    margin-right: 1px !important;
}

.ms-2 {
    margin-right: 2px !important;
}

.ms-3 {
    margin-right: 3px !important;
}

.ms-4 {
    margin-right: 4px !important;
}

.ms-5 {
    margin-right: 5px !important;
}

.ms-6 {
    margin-right: 6px !important;
}

.ms-7 {
    margin-right: 7px !important;
}

.ms-8 {
    margin-right: 8px !important;
}

.ms-9 {
    margin-right: 9px !important;
}

.ms-10 {
    margin-right: 10px !important;
}

.ms-11 {
    margin-right: 11px !important;
}

.ms-12 {
    margin-right: 12px !important;
}

.ms-13 {
    margin-right: 13px !important;
}

.ms-15 {
    margin-right: 15px !important;
}

.ms-17 {
    margin-right: 17px !important;
}

.ms-18 {
    margin-right: 18px !important;
}

.ms-20 {
    margin-right: 20px !important;
}

.ms-25 {
    margin-right: 25px !important;
}

.ms-30 {
    margin-right: 30px !important;
}

.ms-35 {
    margin-right: 35px !important;
}

.ms-40 {
    margin-right: 40px !important;
}

.ms-45 {
    margin-right: 45px !important;
}

.ms-50 {
    margin-right: 50px !important;
}

.ms-55 {
    margin-right: 55px !important;
}

.ms-60 {
    margin-right: 60px !important;
}

.ms-65 {
    margin-right: 65px !important;
}

.ms-70 {
    margin-right: 70px !important;
}

.ms-75 {
    margin-right: 75px !important;
}

.ms-80 {
    margin-right: 80px !important;
}

.ms-90 {
    margin-right: 90px !important;
}

.ms-95 {
    margin-right: 95px !important;
}

.ms-100 {
    margin-right: 100px !important;
}

.ms-110 {
    margin-right: 110px !important;
}

.ms-115 {
    margin-right: 115px !important;
}

.ms-120 {
    margin-right: 120px !important;
}

.ms-130 {
    margin-right: 130px !important;
}

.ms-150 {
    margin-right: 150px !important;
}

.ms-160 {
    margin-right: 160px !important;
}

.ms-180 {
    margin-right: 180px !important;
}

.ms-190 {
    margin-right: 190px !important;
}

.ms-200 {
    margin-right: 200px !important;
}

.ms-210 {
    margin-right: 210px !important;
}

.ms-235 {
    margin-right: 235px !important;
}

.ms-240 {
    margin-right: 240px !important;
}

.ms-270 {
    margin-right: 270px !important;
}

.ms-290 {
    margin-right: 290px !important;
}

.ms-300 {
    margin-right: 300px !important;
}

.ms-auto {
    margin-right: auto !important;
}

.m-n1 {
    margin: -1px !important;
}

.m-n2 {
    margin: -2px !important;
}

.m-n3 {
    margin: -3px !important;
}

.m-n4 {
    margin: -4px !important;
}

.m-n5 {
    margin: -5px !important;
}

.m-n6 {
    margin: -6px !important;
}

.m-n7 {
    margin: -7px !important;
}

.m-n8 {
    margin: -8px !important;
}

.m-n9 {
    margin: -9px !important;
}

.m-n10 {
    margin: -10px !important;
}

.m-n11 {
    margin: -11px !important;
}

.m-n12 {
    margin: -12px !important;
}

.m-n13 {
    margin: -13px !important;
}

.m-n15 {
    margin: -15px !important;
}

.m-n17 {
    margin: -17px !important;
}

.m-n18 {
    margin: -18px !important;
}

.m-n20 {
    margin: -20px !important;
}

.m-n25 {
    margin: -25px !important;
}

.m-n30 {
    margin: -30px !important;
}

.m-n35 {
    margin: -35px !important;
}

.m-n40 {
    margin: -40px !important;
}

.m-n45 {
    margin: -45px !important;
}

.m-n50 {
    margin: -50px !important;
}

.m-n55 {
    margin: -55px !important;
}

.m-n60 {
    margin: -60px !important;
}

.m-n65 {
    margin: -65px !important;
}

.m-n70 {
    margin: -70px !important;
}

.m-n75 {
    margin: -75px !important;
}

.m-n80 {
    margin: -80px !important;
}

.m-n90 {
    margin: -90px !important;
}

.m-n95 {
    margin: -95px !important;
}

.m-n100 {
    margin: -100px !important;
}

.m-n110 {
    margin: -110px !important;
}

.m-n115 {
    margin: -115px !important;
}

.m-n120 {
    margin: -120px !important;
}

.m-n130 {
    margin: -130px !important;
}

.m-n150 {
    margin: -150px !important;
}

.m-n160 {
    margin: -160px !important;
}

.m-n180 {
    margin: -180px !important;
}

.m-n190 {
    margin: -190px !important;
}

.m-n200 {
    margin: -200px !important;
}

.m-n210 {
    margin: -210px !important;
}

.m-n235 {
    margin: -235px !important;
}

.m-n240 {
    margin: -240px !important;
}

.m-n270 {
    margin: -270px !important;
}

.m-n290 {
    margin: -290px !important;
}

.m-n300 {
    margin: -300px !important;
}

.mx-n1 {
    margin-left: -1px !important;
    margin-right: -1px !important;
}

.mx-n2 {
    margin-left: -2px !important;
    margin-right: -2px !important;
}

.mx-n3 {
    margin-left: -3px !important;
    margin-right: -3px !important;
}

.mx-n4 {
    margin-left: -4px !important;
    margin-right: -4px !important;
}

.mx-n5 {
    margin-left: -5px !important;
    margin-right: -5px !important;
}

.mx-n6 {
    margin-left: -6px !important;
    margin-right: -6px !important;
}

.mx-n7 {
    margin-left: -7px !important;
    margin-right: -7px !important;
}

.mx-n8 {
    margin-left: -8px !important;
    margin-right: -8px !important;
}

.mx-n9 {
    margin-left: -9px !important;
    margin-right: -9px !important;
}

.mx-n10 {
    margin-left: -10px !important;
    margin-right: -10px !important;
}

.mx-n11 {
    margin-left: -11px !important;
    margin-right: -11px !important;
}

.mx-n12 {
    margin-left: -12px !important;
    margin-right: -12px !important;
}

.mx-n13 {
    margin-left: -13px !important;
    margin-right: -13px !important;
}

.mx-n15 {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.mx-n17 {
    margin-left: -17px !important;
    margin-right: -17px !important;
}

.mx-n18 {
    margin-left: -18px !important;
    margin-right: -18px !important;
}

.mx-n20 {
    margin-left: -20px !important;
    margin-right: -20px !important;
}

.mx-n25 {
    margin-left: -25px !important;
    margin-right: -25px !important;
}

.mx-n30 {
    margin-left: -30px !important;
    margin-right: -30px !important;
}

.mx-n35 {
    margin-left: -35px !important;
    margin-right: -35px !important;
}

.mx-n40 {
    margin-left: -40px !important;
    margin-right: -40px !important;
}

.mx-n45 {
    margin-left: -45px !important;
    margin-right: -45px !important;
}

.mx-n50 {
    margin-left: -50px !important;
    margin-right: -50px !important;
}

.mx-n55 {
    margin-left: -55px !important;
    margin-right: -55px !important;
}

.mx-n60 {
    margin-left: -60px !important;
    margin-right: -60px !important;
}

.mx-n65 {
    margin-left: -65px !important;
    margin-right: -65px !important;
}

.mx-n70 {
    margin-left: -70px !important;
    margin-right: -70px !important;
}

.mx-n75 {
    margin-left: -75px !important;
    margin-right: -75px !important;
}

.mx-n80 {
    margin-left: -80px !important;
    margin-right: -80px !important;
}

.mx-n90 {
    margin-left: -90px !important;
    margin-right: -90px !important;
}

.mx-n95 {
    margin-left: -95px !important;
    margin-right: -95px !important;
}

.mx-n100 {
    margin-left: -100px !important;
    margin-right: -100px !important;
}

.mx-n110 {
    margin-left: -110px !important;
    margin-right: -110px !important;
}

.mx-n115 {
    margin-left: -115px !important;
    margin-right: -115px !important;
}

.mx-n120 {
    margin-left: -120px !important;
    margin-right: -120px !important;
}

.mx-n130 {
    margin-left: -130px !important;
    margin-right: -130px !important;
}

.mx-n150 {
    margin-left: -150px !important;
    margin-right: -150px !important;
}

.mx-n160 {
    margin-left: -160px !important;
    margin-right: -160px !important;
}

.mx-n180 {
    margin-left: -180px !important;
    margin-right: -180px !important;
}

.mx-n190 {
    margin-left: -190px !important;
    margin-right: -190px !important;
}

.mx-n200 {
    margin-left: -200px !important;
    margin-right: -200px !important;
}

.mx-n210 {
    margin-left: -210px !important;
    margin-right: -210px !important;
}

.mx-n235 {
    margin-left: -235px !important;
    margin-right: -235px !important;
}

.mx-n240 {
    margin-left: -240px !important;
    margin-right: -240px !important;
}

.mx-n270 {
    margin-left: -270px !important;
    margin-right: -270px !important;
}

.mx-n290 {
    margin-left: -290px !important;
    margin-right: -290px !important;
}

.mx-n300 {
    margin-left: -300px !important;
    margin-right: -300px !important;
}

.my-n1 {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
}

.my-n2 {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
}

.my-n3 {
    margin-top: -3px !important;
    margin-bottom: -3px !important;
}

.my-n4 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
}

.my-n5 {
    margin-top: -5px !important;
    margin-bottom: -5px !important;
}

.my-n6 {
    margin-top: -6px !important;
    margin-bottom: -6px !important;
}

.my-n7 {
    margin-top: -7px !important;
    margin-bottom: -7px !important;
}

.my-n8 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
}

.my-n9 {
    margin-top: -9px !important;
    margin-bottom: -9px !important;
}

.my-n10 {
    margin-top: -10px !important;
    margin-bottom: -10px !important;
}

.my-n11 {
    margin-top: -11px !important;
    margin-bottom: -11px !important;
}

.my-n12 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
}

.my-n13 {
    margin-top: -13px !important;
    margin-bottom: -13px !important;
}

.my-n15 {
    margin-top: -15px !important;
    margin-bottom: -15px !important;
}

.my-n17 {
    margin-top: -17px !important;
    margin-bottom: -17px !important;
}

.my-n18 {
    margin-top: -18px !important;
    margin-bottom: -18px !important;
}

.my-n20 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
}

.my-n25 {
    margin-top: -25px !important;
    margin-bottom: -25px !important;
}

.my-n30 {
    margin-top: -30px !important;
    margin-bottom: -30px !important;
}

.my-n35 {
    margin-top: -35px !important;
    margin-bottom: -35px !important;
}

.my-n40 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
}

.my-n45 {
    margin-top: -45px !important;
    margin-bottom: -45px !important;
}

.my-n50 {
    margin-top: -50px !important;
    margin-bottom: -50px !important;
}

.my-n55 {
    margin-top: -55px !important;
    margin-bottom: -55px !important;
}

.my-n60 {
    margin-top: -60px !important;
    margin-bottom: -60px !important;
}

.my-n65 {
    margin-top: -65px !important;
    margin-bottom: -65px !important;
}

.my-n70 {
    margin-top: -70px !important;
    margin-bottom: -70px !important;
}

.my-n75 {
    margin-top: -75px !important;
    margin-bottom: -75px !important;
}

.my-n80 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
}

.my-n90 {
    margin-top: -90px !important;
    margin-bottom: -90px !important;
}

.my-n95 {
    margin-top: -95px !important;
    margin-bottom: -95px !important;
}

.my-n100 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
}

.my-n110 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
}

.my-n115 {
    margin-top: -115px !important;
    margin-bottom: -115px !important;
}

.my-n120 {
    margin-top: -120px !important;
    margin-bottom: -120px !important;
}

.my-n130 {
    margin-top: -130px !important;
    margin-bottom: -130px !important;
}

.my-n150 {
    margin-top: -150px !important;
    margin-bottom: -150px !important;
}

.my-n160 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
}

.my-n180 {
    margin-top: -180px !important;
    margin-bottom: -180px !important;
}

.my-n190 {
    margin-top: -190px !important;
    margin-bottom: -190px !important;
}

.my-n200 {
    margin-top: -200px !important;
    margin-bottom: -200px !important;
}

.my-n210 {
    margin-top: -210px !important;
    margin-bottom: -210px !important;
}

.my-n235 {
    margin-top: -235px !important;
    margin-bottom: -235px !important;
}

.my-n240 {
    margin-top: -240px !important;
    margin-bottom: -240px !important;
}

.my-n270 {
    margin-top: -270px !important;
    margin-bottom: -270px !important;
}

.my-n290 {
    margin-top: -290px !important;
    margin-bottom: -290px !important;
}

.my-n300 {
    margin-top: -300px !important;
    margin-bottom: -300px !important;
}

.mt-n1 {
    margin-top: -1px !important;
}

.mt-n2 {
    margin-top: -2px !important;
}

.mt-n3 {
    margin-top: -3px !important;
}

.mt-n4 {
    margin-top: -4px !important;
}

.mt-n5 {
    margin-top: -5px !important;
}

.mt-n6 {
    margin-top: -6px !important;
}

.mt-n7 {
    margin-top: -7px !important;
}

.mt-n8 {
    margin-top: -8px !important;
}

.mt-n9 {
    margin-top: -9px !important;
}

.mt-n10 {
    margin-top: -10px !important;
}

.mt-n11 {
    margin-top: -11px !important;
}

.mt-n12 {
    margin-top: -12px !important;
}

.mt-n13 {
    margin-top: -13px !important;
}

.mt-n15 {
    margin-top: -15px !important;
}

.mt-n17 {
    margin-top: -17px !important;
}

.mt-n18 {
    margin-top: -18px !important;
}

.mt-n20 {
    margin-top: -20px !important;
}

.mt-n25 {
    margin-top: -25px !important;
}

.mt-n30 {
    margin-top: -30px !important;
}

.mt-n35 {
    margin-top: -35px !important;
}

.mt-n40 {
    margin-top: -40px !important;
}

.mt-n45 {
    margin-top: -45px !important;
}

.mt-n50 {
    margin-top: -50px !important;
}

.mt-n55 {
    margin-top: -55px !important;
}

.mt-n60 {
    margin-top: -60px !important;
}

.mt-n65 {
    margin-top: -65px !important;
}

.mt-n70 {
    margin-top: -70px !important;
}

.mt-n75 {
    margin-top: -75px !important;
}

.mt-n80 {
    margin-top: -80px !important;
}

.mt-n90 {
    margin-top: -90px !important;
}

.mt-n95 {
    margin-top: -95px !important;
}

.mt-n100 {
    margin-top: -100px !important;
}

.mt-n110 {
    margin-top: -110px !important;
}

.mt-n115 {
    margin-top: -115px !important;
}

.mt-n120 {
    margin-top: -120px !important;
}

.mt-n130 {
    margin-top: -130px !important;
}

.mt-n150 {
    margin-top: -150px !important;
}

.mt-n160 {
    margin-top: -160px !important;
}

.mt-n180 {
    margin-top: -180px !important;
}

.mt-n190 {
    margin-top: -190px !important;
}

.mt-n200 {
    margin-top: -200px !important;
}

.mt-n210 {
    margin-top: -210px !important;
}

.mt-n235 {
    margin-top: -235px !important;
}

.mt-n240 {
    margin-top: -240px !important;
}

.mt-n270 {
    margin-top: -270px !important;
}

.mt-n290 {
    margin-top: -290px !important;
}

.mt-n300 {
    margin-top: -300px !important;
}

.me-n1 {
    margin-left: -1px !important;
}

.me-n2 {
    margin-left: -2px !important;
}

.me-n3 {
    margin-left: -3px !important;
}

.me-n4 {
    margin-left: -4px !important;
}

.me-n5 {
    margin-left: -5px !important;
}

.me-n6 {
    margin-left: -6px !important;
}

.me-n7 {
    margin-left: -7px !important;
}

.me-n8 {
    margin-left: -8px !important;
}

.me-n9 {
    margin-left: -9px !important;
}

.me-n10 {
    margin-left: -10px !important;
}

.me-n11 {
    margin-left: -11px !important;
}

.me-n12 {
    margin-left: -12px !important;
}

.me-n13 {
    margin-left: -13px !important;
}

.me-n15 {
    margin-left: -15px !important;
}

.me-n17 {
    margin-left: -17px !important;
}

.me-n18 {
    margin-left: -18px !important;
}

.me-n20 {
    margin-left: -20px !important;
}

.me-n25 {
    margin-left: -25px !important;
}

.me-n30 {
    margin-left: -30px !important;
}

.me-n35 {
    margin-left: -35px !important;
}

.me-n40 {
    margin-left: -40px !important;
}

.me-n45 {
    margin-left: -45px !important;
}

.me-n50 {
    margin-left: -50px !important;
}

.me-n55 {
    margin-left: -55px !important;
}

.me-n60 {
    margin-left: -60px !important;
}

.me-n65 {
    margin-left: -65px !important;
}

.me-n70 {
    margin-left: -70px !important;
}

.me-n75 {
    margin-left: -75px !important;
}

.me-n80 {
    margin-left: -80px !important;
}

.me-n90 {
    margin-left: -90px !important;
}

.me-n95 {
    margin-left: -95px !important;
}

.me-n100 {
    margin-left: -100px !important;
}

.me-n110 {
    margin-left: -110px !important;
}

.me-n115 {
    margin-left: -115px !important;
}

.me-n120 {
    margin-left: -120px !important;
}

.me-n130 {
    margin-left: -130px !important;
}

.me-n150 {
    margin-left: -150px !important;
}

.me-n160 {
    margin-left: -160px !important;
}

.me-n180 {
    margin-left: -180px !important;
}

.me-n190 {
    margin-left: -190px !important;
}

.me-n200 {
    margin-left: -200px !important;
}

.me-n210 {
    margin-left: -210px !important;
}

.me-n235 {
    margin-left: -235px !important;
}

.me-n240 {
    margin-left: -240px !important;
}

.me-n270 {
    margin-left: -270px !important;
}

.me-n290 {
    margin-left: -290px !important;
}

.me-n300 {
    margin-left: -300px !important;
}

.mb-n1 {
    margin-bottom: -1px !important;
}

.mb-n2 {
    margin-bottom: -2px !important;
}

.mb-n3 {
    margin-bottom: -3px !important;
}

.mb-n4 {
    margin-bottom: -4px !important;
}

.mb-n5 {
    margin-bottom: -5px !important;
}

.mb-n6 {
    margin-bottom: -6px !important;
}

.mb-n7 {
    margin-bottom: -7px !important;
}

.mb-n8 {
    margin-bottom: -8px !important;
}

.mb-n9 {
    margin-bottom: -9px !important;
}

.mb-n10 {
    margin-bottom: -10px !important;
}

.mb-n11 {
    margin-bottom: -11px !important;
}

.mb-n12 {
    margin-bottom: -12px !important;
}

.mb-n13 {
    margin-bottom: -13px !important;
}

.mb-n15 {
    margin-bottom: -15px !important;
}

.mb-n17 {
    margin-bottom: -17px !important;
}

.mb-n18 {
    margin-bottom: -18px !important;
}

.mb-n20 {
    margin-bottom: -20px !important;
}

.mb-n25 {
    margin-bottom: -25px !important;
}

.mb-n30 {
    margin-bottom: -30px !important;
}

.mb-n35 {
    margin-bottom: -35px !important;
}

.mb-n40 {
    margin-bottom: -40px !important;
}

.mb-n45 {
    margin-bottom: -45px !important;
}

.mb-n50 {
    margin-bottom: -50px !important;
}

.mb-n55 {
    margin-bottom: -55px !important;
}

.mb-n60 {
    margin-bottom: -60px !important;
}

.mb-n65 {
    margin-bottom: -65px !important;
}

.mb-n70 {
    margin-bottom: -70px !important;
}

.mb-n75 {
    margin-bottom: -75px !important;
}

.mb-n80 {
    margin-bottom: -80px !important;
}

.mb-n90 {
    margin-bottom: -90px !important;
}

.mb-n95 {
    margin-bottom: -95px !important;
}

.mb-n100 {
    margin-bottom: -100px !important;
}

.mb-n110 {
    margin-bottom: -110px !important;
}

.mb-n115 {
    margin-bottom: -115px !important;
}

.mb-n120 {
    margin-bottom: -120px !important;
}

.mb-n130 {
    margin-bottom: -130px !important;
}

.mb-n150 {
    margin-bottom: -150px !important;
}

.mb-n160 {
    margin-bottom: -160px !important;
}

.mb-n180 {
    margin-bottom: -180px !important;
}

.mb-n190 {
    margin-bottom: -190px !important;
}

.mb-n200 {
    margin-bottom: -200px !important;
}

.mb-n210 {
    margin-bottom: -210px !important;
}

.mb-n235 {
    margin-bottom: -235px !important;
}

.mb-n240 {
    margin-bottom: -240px !important;
}

.mb-n270 {
    margin-bottom: -270px !important;
}

.mb-n290 {
    margin-bottom: -290px !important;
}

.mb-n300 {
    margin-bottom: -300px !important;
}

.ms-n1 {
    margin-right: -1px !important;
}

.ms-n2 {
    margin-right: -2px !important;
}

.ms-n3 {
    margin-right: -3px !important;
}

.ms-n4 {
    margin-right: -4px !important;
}

.ms-n5 {
    margin-right: -5px !important;
}

.ms-n6 {
    margin-right: -6px !important;
}

.ms-n7 {
    margin-right: -7px !important;
}

.ms-n8 {
    margin-right: -8px !important;
}

.ms-n9 {
    margin-right: -9px !important;
}

.ms-n10 {
    margin-right: -10px !important;
}

.ms-n11 {
    margin-right: -11px !important;
}

.ms-n12 {
    margin-right: -12px !important;
}

.ms-n13 {
    margin-right: -13px !important;
}

.ms-n15 {
    margin-right: -15px !important;
}

.ms-n17 {
    margin-right: -17px !important;
}

.ms-n18 {
    margin-right: -18px !important;
}

.ms-n20 {
    margin-right: -20px !important;
}

.ms-n25 {
    margin-right: -25px !important;
}

.ms-n30 {
    margin-right: -30px !important;
}

.ms-n35 {
    margin-right: -35px !important;
}

.ms-n40 {
    margin-right: -40px !important;
}

.ms-n45 {
    margin-right: -45px !important;
}

.ms-n50 {
    margin-right: -50px !important;
}

.ms-n55 {
    margin-right: -55px !important;
}

.ms-n60 {
    margin-right: -60px !important;
}

.ms-n65 {
    margin-right: -65px !important;
}

.ms-n70 {
    margin-right: -70px !important;
}

.ms-n75 {
    margin-right: -75px !important;
}

.ms-n80 {
    margin-right: -80px !important;
}

.ms-n90 {
    margin-right: -90px !important;
}

.ms-n95 {
    margin-right: -95px !important;
}

.ms-n100 {
    margin-right: -100px !important;
}

.ms-n110 {
    margin-right: -110px !important;
}

.ms-n115 {
    margin-right: -115px !important;
}

.ms-n120 {
    margin-right: -120px !important;
}

.ms-n130 {
    margin-right: -130px !important;
}

.ms-n150 {
    margin-right: -150px !important;
}

.ms-n160 {
    margin-right: -160px !important;
}

.ms-n180 {
    margin-right: -180px !important;
}

.ms-n190 {
    margin-right: -190px !important;
}

.ms-n200 {
    margin-right: -200px !important;
}

.ms-n210 {
    margin-right: -210px !important;
}

.ms-n235 {
    margin-right: -235px !important;
}

.ms-n240 {
    margin-right: -240px !important;
}

.ms-n270 {
    margin-right: -270px !important;
}

.ms-n290 {
    margin-right: -290px !important;
}

.ms-n300 {
    margin-right: -300px !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 1px !important;
}

.p-2 {
    padding: 2px !important;
}

.p-3 {
    padding: 3px !important;
}

.p-4 {
    padding: 4px !important;
}

.p-5 {
    padding: 5px !important;
}

.p-6 {
    padding: 6px !important;
}

.p-7 {
    padding: 7px !important;
}

.p-8 {
    padding: 8px !important;
}

.p-9 {
    padding: 9px !important;
}

.p-10 {
    padding: 10px !important;
}

.p-11 {
    padding: 11px !important;
}

.p-12 {
    padding: 12px !important;
}

.p-13 {
    padding: 13px !important;
}

.p-15 {
    padding: 15px !important;
}

.p-17 {
    padding: 17px !important;
}

.p-18 {
    padding: 18px !important;
}

.p-20 {
    padding: 20px !important;
}

.p-25 {
    padding: 25px !important;
}

.p-30 {
    padding: 30px !important;
}

.p-35 {
    padding: 35px !important;
}

.p-40 {
    padding: 40px !important;
}

.p-45 {
    padding: 45px !important;
}

.p-50 {
    padding: 50px !important;
}

.p-55 {
    padding: 55px !important;
}

.p-60 {
    padding: 60px !important;
}

.p-65 {
    padding: 65px !important;
}

.p-70 {
    padding: 70px !important;
}

.p-75 {
    padding: 75px !important;
}

.p-80 {
    padding: 80px !important;
}

.p-90 {
    padding: 90px !important;
}

.p-95 {
    padding: 95px !important;
}

.p-100 {
    padding: 100px !important;
}

.p-110 {
    padding: 110px !important;
}

.p-115 {
    padding: 115px !important;
}

.p-120 {
    padding: 120px !important;
}

.p-130 {
    padding: 130px !important;
}

.p-150 {
    padding: 150px !important;
}

.p-160 {
    padding: 160px !important;
}

.p-180 {
    padding: 180px !important;
}

.p-190 {
    padding: 190px !important;
}

.p-200 {
    padding: 200px !important;
}

.p-210 {
    padding: 210px !important;
}

.p-235 {
    padding: 235px !important;
}

.p-240 {
    padding: 240px !important;
}

.p-270 {
    padding: 270px !important;
}

.p-290 {
    padding: 290px !important;
}

.p-300 {
    padding: 300px !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 1px !important;
    padding-right: 1px !important;
}

.px-2 {
    padding-left: 2px !important;
    padding-right: 2px !important;
}

.px-3 {
    padding-left: 3px !important;
    padding-right: 3px !important;
}

.px-4 {
    padding-left: 4px !important;
    padding-right: 4px !important;
}

.px-5 {
    padding-left: 5px !important;
    padding-right: 5px !important;
}

.px-6 {
    padding-left: 6px !important;
    padding-right: 6px !important;
}

.px-7 {
    padding-left: 7px !important;
    padding-right: 7px !important;
}

.px-8 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.px-9 {
    padding-left: 9px !important;
    padding-right: 9px !important;
}

.px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.px-11 {
    padding-left: 11px !important;
    padding-right: 11px !important;
}

.px-12 {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.px-13 {
    padding-left: 13px !important;
    padding-right: 13px !important;
}

.px-15 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.px-17 {
    padding-left: 17px !important;
    padding-right: 17px !important;
}

.px-18 {
    padding-left: 18px !important;
    padding-right: 18px !important;
}

.px-20 {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.px-25 {
    padding-left: 25px !important;
    padding-right: 25px !important;
}

.px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.px-35 {
    padding-left: 35px !important;
    padding-right: 35px !important;
}

.px-40 {
    padding-left: 40px !important;
    padding-right: 40px !important;
}

.px-45 {
    padding-left: 45px !important;
    padding-right: 45px !important;
}

.px-50 {
    padding-left: 50px !important;
    padding-right: 50px !important;
}

.px-55 {
    padding-left: 55px !important;
    padding-right: 55px !important;
}

.px-60 {
    padding-left: 60px !important;
    padding-right: 60px !important;
}

.px-65 {
    padding-left: 65px !important;
    padding-right: 65px !important;
}

.px-70 {
    padding-left: 70px !important;
    padding-right: 70px !important;
}

.px-75 {
    padding-left: 75px !important;
    padding-right: 75px !important;
}

.px-80 {
    padding-left: 80px !important;
    padding-right: 80px !important;
}

.px-90 {
    padding-left: 90px !important;
    padding-right: 90px !important;
}

.px-95 {
    padding-left: 95px !important;
    padding-right: 95px !important;
}

.px-100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
}

.px-110 {
    padding-left: 110px !important;
    padding-right: 110px !important;
}

.px-115 {
    padding-left: 115px !important;
    padding-right: 115px !important;
}

.px-120 {
    padding-left: 120px !important;
    padding-right: 120px !important;
}

.px-130 {
    padding-left: 130px !important;
    padding-right: 130px !important;
}

.px-150 {
    padding-left: 150px !important;
    padding-right: 150px !important;
}

.px-160 {
    padding-left: 160px !important;
    padding-right: 160px !important;
}

.px-180 {
    padding-left: 180px !important;
    padding-right: 180px !important;
}

.px-190 {
    padding-left: 190px !important;
    padding-right: 190px !important;
}

.px-200 {
    padding-left: 200px !important;
    padding-right: 200px !important;
}

.px-210 {
    padding-left: 210px !important;
    padding-right: 210px !important;
}

.px-235 {
    padding-left: 235px !important;
    padding-right: 235px !important;
}

.px-240 {
    padding-left: 240px !important;
    padding-right: 240px !important;
}

.px-270 {
    padding-left: 270px !important;
    padding-right: 270px !important;
}

.px-290 {
    padding-left: 290px !important;
    padding-right: 290px !important;
}

.px-300 {
    padding-left: 300px !important;
    padding-right: 300px !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.py-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
}

.py-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.py-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
}

.py-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.py-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.py-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

.py-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

.py-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.py-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
}

.py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.py-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
}

.py-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.py-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
}

.py-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.py-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
}

.py-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

.py-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.py-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}

.py-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.py-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
}

.py-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

.py-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.py-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.py-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
}

.py-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.py-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
}

.py-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}

.py-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
}

.py-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
}

.py-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.py-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
}

.py-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.py-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
}

.py-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
}

.py-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.py-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
}

.py-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}

.py-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
}

.py-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
}

.py-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
}

.py-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
}

.py-210 {
    padding-top: 210px !important;
    padding-bottom: 210px !important;
}

.py-235 {
    padding-top: 235px !important;
    padding-bottom: 235px !important;
}

.py-240 {
    padding-top: 240px !important;
    padding-bottom: 240px !important;
}

.py-270 {
    padding-top: 270px !important;
    padding-bottom: 270px !important;
}

.py-290 {
    padding-top: 290px !important;
    padding-bottom: 290px !important;
}

.py-300 {
    padding-top: 300px !important;
    padding-bottom: 300px !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 1px !important;
}

.pt-2 {
    padding-top: 2px !important;
}

.pt-3 {
    padding-top: 3px !important;
}

.pt-4 {
    padding-top: 4px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pt-6 {
    padding-top: 6px !important;
}

.pt-7 {
    padding-top: 7px !important;
}

.pt-8 {
    padding-top: 8px !important;
}

.pt-9 {
    padding-top: 9px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-11 {
    padding-top: 11px !important;
}

.pt-12 {
    padding-top: 12px !important;
}

.pt-13 {
    padding-top: 13px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-17 {
    padding-top: 17px !important;
}

.pt-18 {
    padding-top: 18px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-65 {
    padding-top: 65px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-75 {
    padding-top: 75px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-95 {
    padding-top: 95px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pt-110 {
    padding-top: 110px !important;
}

.pt-115 {
    padding-top: 115px !important;
}

.pt-120 {
    padding-top: 120px !important;
}

.pt-130 {
    padding-top: 130px !important;
}

.pt-150 {
    padding-top: 150px !important;
}

.pt-160 {
    padding-top: 160px !important;
}

.pt-180 {
    padding-top: 180px !important;
}

.pt-190 {
    padding-top: 190px !important;
}

.pt-200 {
    padding-top: 200px !important;
}

.pt-210 {
    padding-top: 210px !important;
}

.pt-235 {
    padding-top: 235px !important;
}

.pt-240 {
    padding-top: 240px !important;
}

.pt-270 {
    padding-top: 270px !important;
}

.pt-290 {
    padding-top: 290px !important;
}

.pt-300 {
    padding-top: 300px !important;
}

.pe-0 {
    padding-left: 0 !important;
}

.pe-1 {
    padding-left: 1px !important;
}

.pe-2 {
    padding-left: 2px !important;
}

.pe-3 {
    padding-left: 3px !important;
}

.pe-4 {
    padding-left: 4px !important;
}

.pe-5 {
    padding-left: 5px !important;
}

.pe-6 {
    padding-left: 6px !important;
}

.pe-7 {
    padding-left: 7px !important;
}

.pe-8 {
    padding-left: 8px !important;
}

.pe-9 {
    padding-left: 9px !important;
}

.pe-10 {
    padding-left: 10px !important;
}

.pe-11 {
    padding-left: 11px !important;
}

.pe-12 {
    padding-left: 12px !important;
}

.pe-13 {
    padding-left: 13px !important;
}

.pe-15 {
    padding-left: 15px !important;
}

.pe-17 {
    padding-left: 17px !important;
}

.pe-18 {
    padding-left: 18px !important;
}

.pe-20 {
    padding-left: 20px !important;
}

.pe-25 {
    padding-left: 25px !important;
}

.pe-30 {
    padding-left: 30px !important;
}

.pe-35 {
    padding-left: 35px !important;
}

.pe-40 {
    padding-left: 40px !important;
}

.pe-45 {
    padding-left: 45px !important;
}

.pe-50 {
    padding-left: 50px !important;
}

.pe-55 {
    padding-left: 55px !important;
}

.pe-60 {
    padding-left: 60px !important;
}

.pe-65 {
    padding-left: 65px !important;
}

.pe-70 {
    padding-left: 70px !important;
}

.pe-75 {
    padding-left: 75px !important;
}

.pe-80 {
    padding-left: 80px !important;
}

.pe-90 {
    padding-left: 90px !important;
}

.pe-95 {
    padding-left: 95px !important;
}

.pe-100 {
    padding-left: 100px !important;
}

.pe-110 {
    padding-left: 110px !important;
}

.pe-115 {
    padding-left: 115px !important;
}

.pe-120 {
    padding-left: 120px !important;
}

.pe-130 {
    padding-left: 130px !important;
}

.pe-150 {
    padding-left: 150px !important;
}

.pe-160 {
    padding-left: 160px !important;
}

.pe-180 {
    padding-left: 180px !important;
}

.pe-190 {
    padding-left: 190px !important;
}

.pe-200 {
    padding-left: 200px !important;
}

.pe-210 {
    padding-left: 210px !important;
}

.pe-235 {
    padding-left: 235px !important;
}

.pe-240 {
    padding-left: 240px !important;
}

.pe-270 {
    padding-left: 270px !important;
}

.pe-290 {
    padding-left: 290px !important;
}

.pe-300 {
    padding-left: 300px !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 1px !important;
}

.pb-2 {
    padding-bottom: 2px !important;
}

.pb-3 {
    padding-bottom: 3px !important;
}

.pb-4 {
    padding-bottom: 4px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pb-6 {
    padding-bottom: 6px !important;
}

.pb-7 {
    padding-bottom: 7px !important;
}

.pb-8 {
    padding-bottom: 8px !important;
}

.pb-9 {
    padding-bottom: 9px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-11 {
    padding-bottom: 11px !important;
}

.pb-12 {
    padding-bottom: 12px !important;
}

.pb-13 {
    padding-bottom: 13px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-17 {
    padding-bottom: 17px !important;
}

.pb-18 {
    padding-bottom: 18px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pb-110 {
    padding-bottom: 110px !important;
}

.pb-115 {
    padding-bottom: 115px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

.pb-130 {
    padding-bottom: 130px !important;
}

.pb-150 {
    padding-bottom: 150px !important;
}

.pb-160 {
    padding-bottom: 160px !important;
}

.pb-180 {
    padding-bottom: 180px !important;
}

.pb-190 {
    padding-bottom: 190px !important;
}

.pb-200 {
    padding-bottom: 200px !important;
}

.pb-210 {
    padding-bottom: 210px !important;
}

.pb-235 {
    padding-bottom: 235px !important;
}

.pb-240 {
    padding-bottom: 240px !important;
}

.pb-270 {
    padding-bottom: 270px !important;
}

.pb-290 {
    padding-bottom: 290px !important;
}

.pb-300 {
    padding-bottom: 300px !important;
}

.ps-0 {
    padding-right: 0 !important;
}

.ps-1 {
    padding-right: 1px !important;
}

.ps-2 {
    padding-right: 2px !important;
}

.ps-3 {
    padding-right: 3px !important;
}

.ps-4 {
    padding-right: 4px !important;
}

.ps-5 {
    padding-right: 5px !important;
}

.ps-6 {
    padding-right: 6px !important;
}

.ps-7 {
    padding-right: 7px !important;
}

.ps-8 {
    padding-right: 8px !important;
}

.ps-9 {
    padding-right: 9px !important;
}

.ps-10 {
    padding-right: 10px !important;
}

.ps-11 {
    padding-right: 11px !important;
}

.ps-12 {
    padding-right: 12px !important;
}

.ps-13 {
    padding-right: 13px !important;
}

.ps-15 {
    padding-right: 15px !important;
}

.ps-17 {
    padding-right: 17px !important;
}

.ps-18 {
    padding-right: 18px !important;
}

.ps-20 {
    padding-right: 20px !important;
}

.ps-25 {
    padding-right: 25px !important;
}

.ps-30 {
    padding-right: 30px !important;
}

.ps-35 {
    padding-right: 35px !important;
}

.ps-40 {
    padding-right: 40px !important;
}

.ps-45 {
    padding-right: 45px !important;
}

.ps-50 {
    padding-right: 50px !important;
}

.ps-55 {
    padding-right: 55px !important;
}

.ps-60 {
    padding-right: 60px !important;
}

.ps-65 {
    padding-right: 65px !important;
}

.ps-70 {
    padding-right: 70px !important;
}

.ps-75 {
    padding-right: 75px !important;
}

.ps-80 {
    padding-right: 80px !important;
}

.ps-90 {
    padding-right: 90px !important;
}

.ps-95 {
    padding-right: 95px !important;
}

.ps-100 {
    padding-right: 100px !important;
}

.ps-110 {
    padding-right: 110px !important;
}

.ps-115 {
    padding-right: 115px !important;
}

.ps-120 {
    padding-right: 120px !important;
}

.ps-130 {
    padding-right: 130px !important;
}

.ps-150 {
    padding-right: 150px !important;
}

.ps-160 {
    padding-right: 160px !important;
}

.ps-180 {
    padding-right: 180px !important;
}

.ps-190 {
    padding-right: 190px !important;
}

.ps-200 {
    padding-right: 200px !important;
}

.ps-210 {
    padding-right: 210px !important;
}

.ps-235 {
    padding-right: 235px !important;
}

.ps-240 {
    padding-right: 240px !important;
}

.ps-270 {
    padding-right: 270px !important;
}

.ps-290 {
    padding-right: 290px !important;
}

.ps-300 {
    padding-right: 300px !important;
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
    font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
    font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
    font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
    font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.fs-6 {
    font-size: 1rem !important;
}

.fst-italic {
    font-style: italic !important;
}

.fst-normal {
    font-style: normal !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-bolder {
    font-weight: bolder !important;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-sm {
    line-height: 1.25 !important;
}

.lh-base {
    line-height: 1.5 !important;
}

.lh-lg {
    line-height: 2 !important;
}

.text-start {
    text-align: right !important;
}

.text-end {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-primary {
    --bs-text-opacity: 1;
    /* color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; */
    color: #302c6f !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    /* color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; */
    color: #cf2a27 !important;
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #858589 !important;
}

.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(23, 22, 26, 0.5) !important;
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
}

.text-opacity-25 {
    --bs-text-opacity: 0.25;
}

.text-opacity-50 {
    --bs-text-opacity: 0.5;
}

.text-opacity-75 {
    --bs-text-opacity: 0.75;
}

.text-opacity-100 {
    --bs-text-opacity: 1;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
    --bs-bg-opacity: 1;
}

.bg-gradient {
    background-image: var(--bs-gradient) !important;
}

.user-select-all {
    -webkit-user-select: all !important;
    -moz-user-select: all !important;
    user-select: all !important;
}

.user-select-auto {
    -webkit-user-select: auto !important;
    -moz-user-select: auto !important;
    -ms-user-select: auto !important;
    user-select: auto !important;
}

.user-select-none {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.pe-none {
    pointer-events: none !important;
}

.pe-auto {
    pointer-events: auto !important;
}

.rounded {
    border-radius: 14px !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: 6px !important;
}

.rounded-2 {
    border-radius: 10px !important;
}

.rounded-3 {
    border-radius: 14px !important;
}

.rounded-4 {
    border-radius: 20px !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-top {
    border-top-left-radius: 14px !important;
    border-top-right-radius: 14px !important;
}

.rounded-top-0 {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.rounded-top-1 {
    border-top-left-radius: 6px !important;
    border-top-right-radius: 6px !important;
}

.rounded-top-2 {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

.rounded-top-3 {
    border-top-left-radius: 14px !important;
    border-top-right-radius: 14px !important;
}

.rounded-top-4 {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.rounded-top-circle {
    border-top-left-radius: 50% !important;
    border-top-right-radius: 50% !important;
}

.rounded-top-pill {
    border-top-left-radius: 50rem !important;
    border-top-right-radius: 50rem !important;
}

.rounded-end {
    border-top-left-radius: 14px !important;
    border-bottom-left-radius: 14px !important;
}

.rounded-bottom {
    border-bottom-left-radius: 14px !important;
    border-bottom-right-radius: 14px !important;
}

.rounded-bottom-0 {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.rounded-bottom-1 {
    border-bottom-left-radius: 6px !important;
    border-bottom-right-radius: 6px !important;
}

.rounded-bottom-2 {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.rounded-bottom-3 {
    border-bottom-left-radius: 14px !important;
    border-bottom-right-radius: 14px !important;
}

.rounded-bottom-4 {
    border-bottom-left-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}

.rounded-bottom-circle {
    border-bottom-left-radius: 50% !important;
    border-bottom-right-radius: 50% !important;
}

.rounded-bottom-pill {
    border-bottom-left-radius: 50rem !important;
    border-bottom-right-radius: 50rem !important;
}

.rounded-start {
    border-bottom-right-radius: 14px !important;
    border-top-right-radius: 14px !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

.rounded-top-left {
    border-top-right-radius: 14px !important;
}

.rounded-top-left-0 {
    border-top-right-radius: 0 !important;
}

.rounded-top-left-1 {
    border-top-right-radius: 6px !important;
}

.rounded-top-left-2 {
    border-top-right-radius: 10px !important;
}

.rounded-top-left-3 {
    border-top-right-radius: 14px !important;
}

.rounded-top-left-4 {
    border-top-right-radius: 20px !important;
}

.rounded-top-left-circle {
    border-top-right-radius: 50% !important;
}

.rounded-top-left-pill {
    border-top-right-radius: 50rem !important;
}

.rounded-top-right {
    border-top-left-radius: 14px !important;
}

.rounded-top-right-0 {
    border-top-left-radius: 0 !important;
}

.rounded-top-right-1 {
    border-top-left-radius: 6px !important;
}

.rounded-top-right-2 {
    border-top-left-radius: 10px !important;
}

.rounded-top-right-3 {
    border-top-left-radius: 14px !important;
}

.rounded-top-right-4 {
    border-top-left-radius: 20px !important;
}

.rounded-top-right-circle {
    border-top-left-radius: 50% !important;
}

.rounded-top-right-pill {
    border-top-left-radius: 50rem !important;
}

.btn {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.btn svg {
    height: 1em;
}

.btn:hover,
.btn:focus {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.btn-clean {
    padding: 0;
    background-color: transparent;
}

.btn-accent-1 {
    color: #fff;
    background-color: #F01F4B;
}

.btn-accent-1:hover,
.btn-accent-1:focus,
.btn-accent-1.focus,
.btn-accent-1:not(:disabled):not(.disabled):active,
.btn-accent-1:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #e60f3d;
}

.btn-accent-2 {
    color: #fff;
    background-color: #302c6f;
}

.btn-accent-2:hover,
.btn-accent-2:focus,
.btn-accent-2.focus,
.btn-accent-2:not(:disabled):not(.disabled):active,
.btn-accent-2:not(:disabled):not(.disabled).active {
    color: #fff;
    background-color: #3e1b8b;
}

.btn-accent-3 {
    color: #17161A;
    background-color: #FFBB38;
}

.btn-accent-3:hover,
.btn-accent-3:focus,
.btn-accent-3.focus,
.btn-accent-3:not(:disabled):not(.disabled):active,
.btn-accent-3:not(:disabled):not(.disabled).active {
    color: #17161A;
    background-color: #ffb21f;
}

.btn-light {
    color: #17161A;
    background-color: rgba(177, 177, 180, 0.3);
}

.btn-light:hover,
.btn-light:focus,
.btn-light.focus,
.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active {
    color: #17161A;
    background-color: #F5F5F7;
}

.btn-link {
    position: relative;
    font-weight: 700;
    color: #17161A;
    text-decoration: none;
}

.btn-link:hover,
.btn-link:focus {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.btn-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    will-change: transform;
}

.btn-link.btn-accent-1,
.btn-link.btn-accent-1:hover,
.btn-link.btn-accent-1:focus,
.btn-link.btn-accent-1.focus,
.btn-link.btn-accent-1:not(:disabled):not(.disabled):active,
.btn-link.btn-accent-1:not(:disabled):not(.disabled).active {
    color: #F01F4B;
    background-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
    color: #17161A;
    text-decoration: none;
}

.btn-link:hover::after,
.btn-link:focus::after {
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
}

.btn-video {
    position: relative;
    width: 80px;
    height: 80px;
}

.btn-video svg {
    position: absolute;
    top: 50%;
    right: 50%;
    -webkit-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
}

.badge {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.accordion-header .accordion-button {
    margin-bottom: 0;
    color: #17161A;
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 1199.98px) {
    .accordion-header .accordion-button {
        padding: 30px 45px;
    }
}

@media (max-width: 827.98px) {
    .accordion-header .accordion-button {
        padding: 30px;
    }
}

.accordion-header .accordion-button::after {
    background-position: center;
    background-size: auto;
}

.accordion-header .accordion-button:not(.collapsed) {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.accordion-header .accordion-button[aria-expanded=true] {
    color: #F01F4B;
}

.accordion-header .accordion-button[aria-expanded=true] h4,
.accordion-header .accordion-button[aria-expanded=true] .h4 {
    color: inherit;
}

.accordion-item {
    border-radius: 14px !important;
}

.accordion-item:not(:first-of-type) {
    border-top: 1px solid rgba(177, 177, 180, 0.3);
}

.accordion-item + .accordion-item {
    margin-top: 20px;
}

.accordion-body {
    padding-top: 0;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.form-control {
    padding-bottom: 16px;
    font-size: 15px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.form-control.form-control-white {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.form-control.form-control-white::-webkit-input-placeholder {
    color: #fff;
}

.form-control.form-control-white::-moz-placeholder {
    color: #fff;
}

.form-control.form-control-white:-ms-input-placeholder {
    color: #fff;
}

.form-control.form-control-white::-ms-input-placeholder {
    color: #fff;
}

.form-control.form-control-white::placeholder {
    color: #fff;
}

.form-control.form-control-white option {
    color: #17161A;
}

.form-control.form-control-white:hover,
.form-control.form-control-white:focus {
    color: #fff;
    border-color: #fff;
}

.form-control.form-control-white:hover::-webkit-input-placeholder,
.form-control.form-control-white:focus::-webkit-input-placeholder {
    color: #fff;
}

.form-control.form-control-white:hover::-moz-placeholder,
.form-control.form-control-white:focus::-moz-placeholder {
    color: #fff;
}

.form-control.form-control-white:hover:-ms-input-placeholder,
.form-control.form-control-white:focus:-ms-input-placeholder {
    color: #fff;
}

.form-control.form-control-white:hover::-ms-input-placeholder,
.form-control.form-control-white:focus::-ms-input-placeholder {
    color: #fff;
}

.form-control.form-control-white:hover::placeholder,
.form-control.form-control-white:focus::placeholder {
    color: #fff;
}

.form-control.form-control-gray {
    color: #fff;
    border-color: #4B4A4D;
}

.form-control.form-control-gray::-webkit-input-placeholder {
    color: #fff;
}

.form-control.form-control-gray::-moz-placeholder {
    color: #fff;
}

.form-control.form-control-gray:-ms-input-placeholder {
    color: #fff;
}

.form-control.form-control-gray::-ms-input-placeholder {
    color: #fff;
}

.form-control.form-control-gray::placeholder {
    color: #fff;
}

.form-control.form-control-gray option {
    color: #17161A;
}

.form-control.form-control-gray:hover,
.form-control.form-control-gray:focus {
    color: #fff;
    border-color: #fff;
}

.form-control.form-control-gray:hover::-webkit-input-placeholder,
.form-control.form-control-gray:focus::-webkit-input-placeholder {
    color: #fff;
}

.form-control.form-control-gray:hover::-moz-placeholder,
.form-control.form-control-gray:focus::-moz-placeholder {
    color: #fff;
}

.form-control.form-control-gray:hover:-ms-input-placeholder,
.form-control.form-control-gray:focus:-ms-input-placeholder {
    color: #fff;
}

.form-control.form-control-gray:hover::-ms-input-placeholder,
.form-control.form-control-gray:focus::-ms-input-placeholder {
    color: #fff;
}

.form-control.form-control-gray:hover::placeholder,
.form-control.form-control-gray:focus::placeholder {
    color: #fff;
}

.form-control-style-2 {
    padding: 14px 20px;
    font-size: 14px;
    color: #17161A;
    background-color: rgba(177, 177, 180, 0.17);
    border: none;
    border-radius: 6px;
}

.form-control-style-2:focus {
    background-color: rgba(177, 177, 180, 0.2);
}

.form-control-style-2.form-control-white {
    color: #17161A;
    background-color: #fff;
}

.form-control-style-2.form-control-white::-webkit-input-placeholder {
    color: #17161A;
}

.form-control-style-2.form-control-white::-moz-placeholder {
    color: #17161A;
}

.form-control-style-2.form-control-white:-ms-input-placeholder {
    color: #17161A;
}

.form-control-style-2.form-control-white::-ms-input-placeholder {
    color: #17161A;
}

.form-control-style-2.form-control-white::placeholder {
    color: #17161A;
}

.form-control-style-2.form-control-white:focus,
.form-control-style-2.form-control-white:hover {
    color: #17161A;
    background-color: #fff;
}

.form-control-style-2.form-control-white:focus::-webkit-input-placeholder,
.form-control-style-2.form-control-white:hover::-webkit-input-placeholder {
    color: #17161A;
}

.form-control-style-2.form-control-white:focus::-moz-placeholder,
.form-control-style-2.form-control-white:hover::-moz-placeholder {
    color: #17161A;
}

.form-control-style-2.form-control-white:focus:-ms-input-placeholder,
.form-control-style-2.form-control-white:hover:-ms-input-placeholder {
    color: #17161A;
}

.form-control-style-2.form-control-white:focus::-ms-input-placeholder,
.form-control-style-2.form-control-white:hover::-ms-input-placeholder {
    color: #17161A;
}

.form-control-style-2.form-control-white:focus::placeholder,
.form-control-style-2.form-control-white:hover::placeholder {
    color: #17161A;
}

.form-control-style-3 {
    padding: 23px 28px;
    font-size: 14px;
    background-color: #F5F5F7;
    border: none;
    border-radius: 35px;
}

.form-control-style-3:focus {
    background-color: #F5F5F7;
}

.form-control-style-3.form-control-white {
    color: #17161A;
    background-color: #fff;
}

.form-control-style-3.form-control-white::-webkit-input-placeholder {
    color: #17161A;
}

.form-control-style-3.form-control-white::-moz-placeholder {
    color: #17161A;
}

.form-control-style-3.form-control-white:-ms-input-placeholder {
    color: #17161A;
}

.form-control-style-3.form-control-white::-ms-input-placeholder {
    color: #17161A;
}

.form-control-style-3.form-control-white::placeholder {
    color: #17161A;
}

.form-control-style-3.form-control-white:focus,
.form-control-style-3.form-control-white:hover {
    color: #17161A;
    background-color: #fff;
}

.form-control-style-3.form-control-white:focus::-webkit-input-placeholder,
.form-control-style-3.form-control-white:hover::-webkit-input-placeholder {
    color: #17161A;
}

.form-control-style-3.form-control-white:focus::-moz-placeholder,
.form-control-style-3.form-control-white:hover::-moz-placeholder {
    color: #17161A;
}

.form-control-style-3.form-control-white:focus:-ms-input-placeholder,
.form-control-style-3.form-control-white:hover:-ms-input-placeholder {
    color: #17161A;
}

.form-control-style-3.form-control-white:focus::-ms-input-placeholder,
.form-control-style-3.form-control-white:hover::-ms-input-placeholder {
    color: #17161A;
}

.form-control-style-3.form-control-white:focus::placeholder,
.form-control-style-3.form-control-white:hover::placeholder {
    color: #17161A;
}

select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3e%3cpath fill='%234B4A4D' d='m6 6-.495.495L6 6.99l.495-.495L6 6ZM.505 1.495l5 5 .99-.99-5-5-.99.99Zm5.99 5 5-5-.99-.99-5 5 .99.99Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: 0% calc(50% - 8px);
    background-size: 12px 7px;
}

select.form-control-style-2,
select.form-control-style-3 {
    background-position: calc(100% - (100% - 20px)) center;
}

select.form-control-white {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3e%3cpath fill='%23fff' d='m6 6-.495.495L6 6.99l.495-.495L6 6ZM.505 1.495l5 5 .99-.99-5-5-.99.99Zm5.99 5 5-5-.99-.99-5 5 .99.99Z'/%3e%3c/svg%3e");
}

.form-group-overlay {
    position: relative;
}

.form-group-overlay .btn {
    position: absolute;
    top: 0;
    left: 0;
}

.form-check {
    padding-right: 30px;
}

.form-check-input[type=checkbox] {
    border-radius: 3px;
}

.form-check .form-check-input {
    width: 17px;
    height: 17px;
    margin-right: -30px;
    border-color: rgba(177, 177, 180, 0.7);
}

.form-check .form-check-input:checked {
    background-color: #17161A;
    border-color: #17161A;
}

.form-check .form-check-label {
    cursor: pointer;
}

.form-check-white {
    color: #fff;
}

.form-check-white .form-check-input {
    border-color: #fff;
}

.form-check-white .form-check-input[type=checkbox]:checked {
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2317161A' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
    border-color: #fff;
}

.form-check .form-check-label {
    font-size: 13px;
}

.form-attach-label {
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.form-attach-label svg {
    margin-left: 15px;
}

.form-attach-file-white {
    color: #fff;
}

.nav {
    font-size: 0.9375em;
}

.nav .nav-link,
.nav .nav-link.active {
    color: #17161A;
}

.nav .nav-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 6px 18px;
    margin-bottom: 0;
    font-weight: 500;
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear;
    will-change: opacity;
}

.nav .nav-link > svg {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.nav .nav-link span {
    position: relative;
}

.nav .nav-link span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background-color: currentColor;
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
    will-change: transform;
}

.nav .active > .nav-link span::before,
.nav .nav-link.active > span::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.nav:not(.nav-opacity):not(.nav-no-opacity):hover .nav-link,
.nav:not(.nav-opacity):not(.nav-no-opacity).focus .nav-link {
    opacity: 0.6;
}

.nav:not(.nav-opacity):not(.nav-no-opacity):hover .active > .nav-link,
.nav:not(.nav-opacity):not(.nav-no-opacity):hover .nav-link.active,
.nav:not(.nav-opacity):not(.nav-no-opacity).focus .active > .nav-link,
.nav:not(.nav-opacity):not(.nav-no-opacity).focus .nav-link.active {
    opacity: 1;
}

.nav:not(.nav-opacity):not(.nav-no-opacity) .nav-link:hover,
.nav:not(.nav-opacity):not(.nav-no-opacity) .nav-link:focus,
.nav:not(.nav-opacity):not(.nav-no-opacity) .nav-link.active {
    opacity: 1;
}

.nav.nav-no-opacity .nav-link {
    opacity: 1;
}

.nav.nav-no-opacity .nav-link:hover,
.nav.nav-no-opacity .nav-link:focus,
.nav.nav-no-opacity .nav-link.active {
    opacity: 1;
}

.nav.nav-opacity .nav-link {
    opacity: 0.6;
}

.nav.nav-opacity .nav-link:hover,
.nav.nav-opacity .nav-link:focus,
.nav.nav-opacity .nav-link.active {
    opacity: 1;
}

.nav[class*=-column] {
    margin: -2px 0;
    font-size: 0.9375em;
}

.nav[class*=-column] .nav-item {
    display: block;
    max-width: 100%;
}

.nav[class*=-column] .nav-link {
    padding: 2px 0;
}

.nav.text-muted .nav-link,
.nav.text-muted .nav-link.active {
    color: #858589;
}

.nav.text-white .nav-link,
.nav.text-white .nav-link.active {
    color: #fff;
}

.nav-no-gap {
    margin: 0;
}

.nav-no-gap .nav-link {
    padding: 0;
}

.nav-no-gap[class*=-column] {
    margin: 0;
}

.nav-no-gap[class*=-column] .nav-link {
    padding: 0;
}

.nav.nav-gap-sm {
    margin: 0 -5px;
}

.nav.nav-gap-sm .nav-link {
    padding: 0 5px;
}

.nav.nav-gap-sm[class*=-column] {
    margin: -5px;
}

.nav.nav-gap-sm[class*=-column] .nav-link {
    padding: 5px;
}

.nav.nav-gap-md {
    margin: 0 -8px;
}

.nav.nav-gap-md .nav-link {
    padding: 0 8px;
}

.nav.nav-gap-md[class*=-column] {
    margin: -8px;
}

.nav.nav-gap-md[class*=-column] .nav-link {
    padding: 8px;
}

.nav.nav-gap-xl {
    margin: 0 -30px;
}

.nav.nav-gap-xl .nav-link {
    padding: 0 30px;
}

.nav.nav-gap-xl[class*=-column] {
    margin: -30px;
}

.nav.nav-gap-xl[class*=-column] .nav-link {
    padding: 30px;
}

.nav-tabs {
}

.nav-tabs[class*=-column] .nav-link {
    position: relative;
    padding: 10px 10px;
    font-weight: normal;
    background-color: transparent;
    text-align: center;
    display: block;
    font-size: 18px;
    color: #525252;
}

.nav-tabs[class*=-column] .nav-link::after {
    /* content: "";
	position: absolute;
	top: calc(50% - 10px);
	right: 100%;
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid #fff;
	-webkit-transition: inherit;
	transition: inherit; */
    display: none;
}

.nav-tabs[class*=-column] .nav-link.active {
    border: 0;
    background: #302c6f;
    color: #ffffff !important;
    background-color: #302c6f;
    box-shadow: 0 0.1875rem 0.375rem 0 rgba(140, 152, 164, 0.25);
    border-radius: 10px;
}

/* .nav-tabs[class*=-column] .nav-link.active::after {
	border-right: 10px solid #F5F5F7;
} */

.bg-dark .nav-tabs[class*=-column] .nav-link {
    /* background-color: rgba(128, 128, 128, 0.38); */
    background-color: transparent;
    color: #eee;
}

.bg-dark .nav-tabs[class*=-column] .nav-link,
.bg-dark .nav-tabs[class*=-column] .nav-link .title {
    color: #b5b5b5;
    font-size: 18px;
    text-align: center;
    display: block;
    font-weight: bold;
}

.bg-dark .nav-tabs[class*=-column] .nav-link.active,
.bg-dark .nav-tabs[class*=-column] .nav-link.active .title {
    color: #fff;
}

/* .bg-dark .nav-tabs[class*=-column] .nav-link.active::after {
	border-right: 10px solid rgba(255, 255, 255, 0.39);
	display: none;
} */

.bg-dark .nav-tabs[class*=-column] .nav-link.active {
    /* background-color: rgba(255, 255, 255, 0.39); */
}

.list-group {
    padding-right: 0;
}

.list-group.borderless .list-group-item {
    color: inherit;
    border: none;
}

.list-group.borderless .list-group-item a {
    text-decoration: none;
}

.card-wrapper {
    position: relative;
}

.card {
    color: #17161A;
}

/* .card .card-title,
.card .card-category {
	will-change: transform, opacity;
} */

.card .card-title {
    color: inherit;
}

.card > .background {
    z-index: 1;
}

.card .background-color {
    opacity: 0;
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear;
    will-change: opacity;
}

.card.card-bg-show .background-color {
    opacity: 1;
}

.card:hover .background-color,
.card:focus .background-color {
    opacity: 1;
}

.card-hover-zoom .card-img {
    display: block;
    overflow: hidden;
}

.card-hover-zoom img {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
}

.card-portfolio {
    position: relative;
}

.card-portfolio .card-img {
    display: block;
}

.card-portfolio .card-location {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: auto;
    font-size: 13px;
    font-weight: 500;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.card-portfolio .card-location svg {
    margin-left: 14px;
    color: #FFBB38;
}

.card-portfolio .card-title {
    position: relative;
    display: block;
    margin-bottom: 0;
}

.card-portfolio a.card-title {
    text-decoration: none;
    -webkit-transition: color 150ms linear;
    transition: color 150ms linear;
}

.card-portfolio a.card-title:hover,
.card-portfolio a.card-title:focus {
    color: #17161A;
}

.card-portfolio .card-category {
    margin-top: 5px;
    margin-bottom: 0;
    font-size: 15px;
}

.card-portfolio a.card-category {
    text-decoration: none;
}

.card-portfolio .card-img-overlay {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 100%;
    padding: 40px 30px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
}

@media (min-width: 1024px) {
    .card-portfolio .card-img-overlay {
        padding: 50px 40px;
    }
}

@media (min-width: 1024px) {
    .card-portfolio .card-img-overlay-lg {
        padding: 50px 60px;
    }
}

.card-portfolio .card-body {
    display: block;
    padding: 0;
}

.card-portfolio.card-default .card-title {
    margin-bottom: 0;
}

.card-portfolio.card-default .card-subtitle {
    display: block;
}

.card-portfolio.card-default .card-body {
    padding: 34px 0 0;
}

.card-portfolio.card-default:hover,
.card-portfolio.card-default:focus {
    color: #17161A;
}

.card-portfolio.card-overlay {
    overflow: hidden;
}

@media (max-width: 619.98px) {
    .card-portfolio.card-overlay .card-img {
        min-height: 300px;
    }
}

.card-portfolio.card-overlay:hover .background-color {
    background-color: var(--background-color-hover, var(--background-color));
}

.card-portfolio.card-horizontal {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: transparent;
}

@media (max-width: 1023.98px) {
    .card-portfolio.card-horizontal {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.card-portfolio.card-horizontal .card-title {
    margin-bottom: 35px;
}

.card-portfolio.card-horizontal .card-img {
    margin-bottom: 50px;
}

@media (min-width: 1024px) {
    .card-portfolio.card-horizontal .card-img {
        max-width: 500px;
        margin-left: 100px;
        margin-bottom: 0;
    }
}

.card-portfolio.card-horizontal .card-body {
    padding-left: 60px;
}

@media (min-width: 1024px) {
    .card-portfolio.card-horizontal .card-body {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.card-portfolio.card-horizontal .card-body p {
    margin-bottom: 0;
}

.card-portfolio.card-horizontal .btn {
    margin-top: 40px;
}

.card-portfolio.text-white a.card-title:hover,
.card-portfolio.text-white a.card-title:focus {
    color: inherit;
}

.card-portfolio.text-white a.card-category {
    color: #fff;
}

.card-portfolio.card-hover-frame .card-img img {
    width: 100%;
    -webkit-transition: -webkit-clip-path 150ms linear;
    transition: -webkit-clip-path 150ms linear;
    transition: clip-path 150ms linear;
    transition: clip-path 150ms linear, -webkit-clip-path 150ms linear;
    will-change: clip-path;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.card-portfolio.card-hover-frame .card-img:hover img,
.card-portfolio.card-hover-frame .card-img:focus img {
    -webkit-clip-path: polygon(10px 10px, calc(100% - 10px) 10px, calc(100% - 10px) calc(100% - 10px), 10px calc(100% - 10px));
    clip-path: polygon(10px 10px, calc(100% - 10px) 10px, calc(100% - 10px) calc(100% - 10px), 10px calc(100% - 10px));
}

.card-portfolio.card-hover-frame:hover .card-img img,
.card-portfolio.card-hover-frame:focus .card-img img {
    -webkit-clip-path: polygon(10px 10px, calc(100% - 10px) 10px, calc(100% - 10px) calc(100% - 10px), 10px calc(100% - 10px));
    clip-path: polygon(10px 10px, calc(100% - 10px) 10px, calc(100% - 10px) calc(100% - 10px), 10px calc(100% - 10px));
}

.card-portfolio.card-hover-appearance {
    overflow: hidden;
}

.card-portfolio.card-hover-appearance .card-img img {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    will-change: transform;
}

.card-portfolio.card-hover-appearance .card-img-overlay {
    opacity: 0;
    -webkit-transition: opacity 150ms linear;
    transition: opacity 150ms linear;
    will-change: opacity;
}

.card-portfolio.card-hover-appearance .card-title,
.card-portfolio.card-hover-appearance .card-category {
    opacity: 0;
    -webkit-transition: opacity 150ms linear, -webkit-transform 150ms linear;
    transition: opacity 150ms linear, -webkit-transform 150ms linear;
    transition: transform 150ms linear, opacity 150ms linear;
    transition: transform 150ms linear, opacity 150ms linear, -webkit-transform 150ms linear;
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    will-change: transform, opacity;
}

.card-portfolio.card-hover-appearance .card-title {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}

.card-portfolio.card-hover-appearance .card-category {
    -webkit-transform: translateY(18px);
    -ms-transform: translateY(18px);
    transform: translateY(18px);
}

.card-portfolio.card-hover-appearance:hover .card-img-overlay,
.card-portfolio.card-hover-appearance:focus .card-img-overlay {
    opacity: 1;
}

.card-portfolio.card-hover-appearance:hover .card-title,
.card-portfolio.card-hover-appearance:hover .card-category,
.card-portfolio.card-hover-appearance:focus .card-title,
.card-portfolio.card-hover-appearance:focus .card-category {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.card-portfolio.card-hover-bar {
    overflow: hidden;
}

.card-portfolio.card-hover-bar .card-img img {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    will-change: transform;
}

.card-portfolio.card-hover-bar .card-title,
.card-portfolio.card-hover-bar .card-category {
    opacity: 0;
    -webkit-transition: opacity 150ms linear, -webkit-transform 150ms linear;
    transition: opacity 150ms linear, -webkit-transform 150ms linear;
    transition: transform 150ms linear, opacity 150ms linear;
    transition: transform 150ms linear, opacity 150ms linear, -webkit-transform 150ms linear;
    will-change: transform, opacity;
}

.card-portfolio.card-hover-bar .card-title {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px);
}

.card-portfolio.card-hover-bar .card-category {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
}

.card-portfolio.card-hover-bar .card-img-overlay {
    top: auto;
    padding: 30px 50px;
    background-color: inherit;
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    will-change: transform;
}

.card-portfolio.card-hover-bar.rounded-4 .card-img-overlay::before,
.card-portfolio.card-hover-bar.rounded-4 .card-img-overlay::after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: -webkit-radial-gradient(100% 0, circle, transparent 0%, transparent 20px, #fff 20px);
    background-image: radial-gradient(circle at 100% 0, transparent 0%, transparent 20px, #fff 20px);
}

.card-portfolio.card-hover-bar.rounded-4 .card-img-overlay::after {
    left: 0;
    right: auto;
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
}

.card-portfolio.card-hover-bar:hover .card-img-overlay,
.card-portfolio.card-hover-bar:focus .card-img-overlay {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.card-portfolio.card-hover-bar:hover .card-img img,
.card-portfolio.card-hover-bar:focus .card-img img {
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px);
}

.card-portfolio.card-hover-bar:hover .card-title,
.card-portfolio.card-hover-bar:hover .card-category,
.card-portfolio.card-hover-bar:focus .card-title,
.card-portfolio.card-hover-bar:focus .card-category {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

a.card-portfolio {
    text-decoration: none;
}

.card-blog {
    position: relative;
    color: #17161A;
    border: 0;
}

.card-blog-bordered {
    -webkit-box-shadow: inset 0 0 0 1px rgba(177, 177, 180, 0.3);
    box-shadow: inset 0 0 0 1px rgba(177, 177, 180, 0.3);
}

.card-blog .card-date {
    display: block;
    margin-bottom: 18px;
    font-size: 0.875em;
}

.card-blog .card-title {
    -webkit-transition: color 150ms linear;
    transition: color 150ms linear;
}

.card-blog .card-text {
    font-size: 0.9375em;
}

.card-blog:hover .card-title {
    color: #F01F4B;
}

.card-blog.card-horizontal {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.card-blog.card-horizontal + .card-horizontal {
    margin-top: 30px;
}

@media (min-width: 620px) {
    .card-blog.card-horizontal.card-sm .card-img {
        width: 90px;
        margin-left: 30px;
        -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 619.98px) {
    .card-blog.card-horizontal.card-sm {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .card-blog.card-horizontal.card-sm + .card-horizontal {
        margin-top: 60px;
    }

    .card-blog.card-horizontal.card-sm .card-img {
        margin-bottom: 25px;
    }

    .card-blog.card-horizontal.card-sm .card-body {
        width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.card-blog .card-title {
    display: block;
    margin-bottom: 0;
}

.card-blog a.card-title {
    text-decoration: none;
}

.card-blog .card-text {
    margin-top: 18px;
    margin-bottom: 0;
}

.card-blog .card-body {
    padding: 0;
}

.card-blog .btn {
    margin-top: 25px;
}

.card-blog:hover,
.card-blog:focus {
    color: #17161A;
}

a.card-blog {
    text-decoration: none;
}

.blog-texts,
.blog-texts p,
.blog-summary,
.blog-summary p {
    color: #5e6167;
    font-size: 14px;
    line-height: 2.2;
    text-align: justify;
}

.card-demo {
    position: relative;
}

.card-demo .card-img {
    display: block;
    border: 1px solid rgba(177, 177, 180, 0.1);
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.card-demo .card-title {
    position: relative;
    display: block;
    margin-bottom: 0;
}

.card-demo a.card-title {
    text-decoration: none;
    -webkit-transition: color 150ms linear;
    transition: color 150ms linear;
}

.card-demo a.card-title:hover,
.card-demo a.card-title:focus {
    color: #F01F4B;
}

.card-demo .card-body {
    display: block;
    padding: 25px 0 0;
}

.card-demo.text-white .card-img {
    border-color: #262528;
}

.card-demo.text-white a.card-title:hover,
.card-demo.text-white a.card-title:focus {
    color: inherit;
}

.card-demo:hover .card-img {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
}

a.card-demo {
    text-decoration: none;
}

.navbar {
    position: -webkit-sticky;
    position: sticky;
    -webkit-transition: background-color 150ms linear, -webkit-transform 150ms linear;
    transition: background-color 150ms linear, -webkit-transform 150ms linear;
    transition: transform 150ms linear, background-color 150ms linear;
    transition: transform 150ms linear, background-color 150ms linear, -webkit-transform 150ms linear;
    will-change: transform, background-color;
    z-index: 100;
}

/* .navbar .navbar-nav {
	display: none;
} */

.navbar .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link.active {
    color: #17161A;
}

.navbar .navbar-toggle {
    color: #17161A;
}

.nav-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.navbar-top {
    top: 0;
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    min-height: 80px;
    background-color: transparent;
}

.navbar-top > .container {
    position: relative;
}

.navbar-top .navbar-brand .dark {
    display: none;
}

.navbar-top .navbar-brand {
    background: #383568;
    margin: 0;
    height: 100%;
    position: relative;
    padding-left: 0px;
    z-index: 0;
    border-radius: 0 40px 40px 0;
}

.navbar-top .navbar-brand:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: #383666;
    transform-origin: 100% 0;
    transform: skew(-25deg);
    z-index: -1;
    opacity: 1;
    border-left: 6px solid #cf2a27;
}

.navbar-top .navbar-brand .logo {
    width: 140px;
    height: 40px;
    margin-right: 15px;
    margin-top: 5px;
}


.navbar-top.navbar-dark .navbar-brand .light {
    display: none;
}

.navbar-top.navbar-dark .navbar-brand .dark {
    display: block;
}

.navbar-top .navbar-nav:not(.nav-social) {
    height: 100%;
}

.navbar-top.navbar-opaque .navbar-nav {
    width: 100%;
    margin: 0 auto;
    justify-content: right;
    padding-right: 35px;
}

.navbar-top .navbar-nav:not(.nav-social) > .nav-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}

.navbar-top .dropdown-menu .navbar-nav:not(.nav-social) > .nav-item {
    width: 100%;
}

.navbar-top .navbar-nav:not(.nav-social) > .nav-item > .nav-link {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6px 15px;
    font-weight: 700;
}

.navbar-top .navbar-nav:not(.nav-social) > .nav-item > .dropdown-menu > .navbar-nav > .nav-item > .nav-link {
    padding: 10px 12px;
    font-weight: 500;
    color: #17161A;
    border-radius: 5px;
}

.navbar-top .dropdown-menu .nav {
    margin: 0;
}

@media (min-width: 620px) {

    .navbar-expand-sm.navbar-top .navbar-nav,
    .navbar-expand-sm.navbar-topbar .navbar-nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .navbar-expand-sm.navbar-top .navbar-toggle,
    .navbar-expand-sm.navbar-top .breadcrumb,
    .navbar-expand-sm.navbar-topbar .navbar-toggle,
    .navbar-expand-sm.navbar-topbar .breadcrumb {
        display: none;
    }
}

@media (min-width: 828px) {

    .navbar-expand-md.navbar-top .navbar-nav,
    .navbar-expand-md.navbar-topbar .navbar-nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .navbar-expand-md.navbar-top .navbar-toggle,
    .navbar-expand-md.navbar-top .breadcrumb,
    .navbar-expand-md.navbar-topbar .navbar-toggle,
    .navbar-expand-md.navbar-topbar .breadcrumb {
        display: none;
    }
}

@media (min-width: 1024px) {

    .navbar-expand-lg.navbar-top .navbar-nav,
    .navbar-expand-lg.navbar-topbar .navbar-nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .navbar-expand-lg.navbar-top .navbar-toggle,
    .navbar-expand-lg.navbar-top .breadcrumb,
    .navbar-expand-lg.navbar-topbar .navbar-toggle,
    .navbar-expand-lg.navbar-topbar .breadcrumb {
        display: none;
    }
}

@media (min-width: 1200px) {

    .navbar-expand-xl.navbar-top .navbar-nav,
    .navbar-expand-xl.navbar-topbar .navbar-nav {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .navbar-expand-xl.navbar-top .navbar-toggle,
    .navbar-expand-xl.navbar-top .breadcrumb,
    .navbar-expand-xl.navbar-topbar .navbar-toggle,
    .navbar-expand-xl.navbar-topbar .breadcrumb {
        display: none;
    }
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
    color: #333;
}

.navbar-dark .navbar-nav .nav-item:hover > .nav-link {
    color: #fff;
}

.navbar-dark .navbar-toggle {
    color: #302c6f;
}

.navbar-dark .dropdown-menu {
    background-color: #fff;
}

@media (min-width: 1200px) {
    body.has-topbar {
        padding-top: 46px;
    }
}

body.has-topbar .navbar-top.navbar-opaque,
.content-wrap > .navbar-top.navbar-dark {
    margin-bottom: -80px;
    min-height: 70px;
    background: transparent;
    background-color: transparent;
    box-shadow: unset;
}

body.has-topbar .navbar-top.navbar-opaque > .container {
    background-color: rgba(255, 255, 255, 0.91) !important;
    box-shadow: 0 0.3125rem 0.625rem 0 rgba(0, 0, 0, 0.12) !important;
    border-radius: 40px;
    margin-top: 7px;
    padding: 0;
}

.navbar-fixed {
    position: fixed;
    width: 100%;
}

.navbar-absolute {
    position: absolute;
    width: 100%;
}

.navbar-relative {
    position: relative;
}

.navbar-static {
    position: static;
}

.navbar-scroll .navbar-top {
    background-color: #fff;
}

.navbar-scroll .navbar-top.navbar-dark {
    background-color: #17161A;
}

.navbar-border-bottom {
    -webkit-box-shadow: inset 0 -1px rgba(177, 177, 180, 0.2);
    box-shadow: inset 0 -1px rgba(177, 177, 180, 0.2);
}

.navbar-border-bottom.navbar-dark {
    /* -webkit-box-shadow: inset 0 -1px rgba(255, 255, 255, 0.2);
	box-shadow: inset 0 -1px rgba(255, 255, 255, 0.2); */
    /* backdrop-filter: saturate(150%) blur(4px); */
    /* background-color: hsl(0deg 0% 100% / 25%) !important; */
    background-color: rgba(255, 255, 255, 0.91) !important;;
    box-shadow: 0 0.3125rem 0.625rem 0 rgba(0, 0, 0, 0.12) !important;
}

.navbar-hide:not(.navbar-end) .navbar-top {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.navbar.sticky-right {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    overflow-y: auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
}

.navbar.sticky-right .nav-link {
    display: block;
    padding: 6px 0;
}

.navbar.sticky-left .nav-item .nav {
    padding-right: 10px;
}

.navbar.sticky-right .navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.navbar.sticky-right .nav-link.active {
    color: #F01F4B;
}

.navbar-mobile {
    position: absolute;
    display: none;
}

.navbar-mobile .navbar-head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
    width: 100%;
    min-height: 80px;
    -webkit-align-self: start;
    -ms-flex-item-align: start;
    align-self: start;
}

.navbar-mobile .navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.navbar-mobile .navbar-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.navbar-mobile .navbar-body > .navbar-nav {
    margin-top: -8px;
    margin-bottom: -8px;
    font-size: 34px;
    line-height: 1.2;
}

.navbar-mobile .navbar-body .nav .nav-link {
    font-weight: 700;
}

.navbar-mobile .navbar-body .navbar-collapse-menu > .nav {
    padding: 8px 0;
    font-size: 15px;
}

.navbar-mobile .navbar-body .navbar-collapse-menu > .nav .nav-link {
    padding: 8px 0;
    font-weight: 500;
}

.navbar-mobile .nav-social {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar-mobile.navbar-dark {
    background-color: #17161A;
}

.mfp-content .navbar-mobile {
    display: block;
}

.navbar-top .container > .navbar-nav > .navbar-dropdown > .nav-link svg {
    display: none;
}

.navbar-top .container > .navbar-nav > .navbar-dropdown > .dropdown-menu {
    margin-top: 0;
    margin-right: -18px;
}

.navbar-dropdown {
    position: relative;
}

.navbar-dropdown .nav-link svg {
    margin-right: auto;
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
    display: none;
    transform: rotate(180deg);
}

.navbar-dropdown .nav-link:hover svg,
.navbar-dropdown .nav-link:focus svg {
    -webkit-transform: translateX(-3px);
    -ms-transform: translateX(-3px);
    transform: translateX(-3px);
}

.navbar-dropdown .nav-link:hover ~ .dropdown-menu,
.navbar-dropdown .nav-link:focus ~ .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.navbar-dropdown.focus > .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.navbar-dropdown.nav-item:hover > .nav-link,
.navbar-dropdown.nav-item.focus > .nav-link {
    opacity: 1;
}

.navbar-dropdown .dropdown-menu {
    top: 100%;
    right: 0;
    display: block;
    font-size: 15px;
    font-weight: 500;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 150ms linear, opacity 150ms linear;
    transition: visibility 150ms linear, opacity 150ms linear;
    will-change: opacity;
}

.navbar-dropdown .dropdown-menu .navbar-nav {
    margin-left: 0;
}

.navbar-dropdown .dropdown-menu .nav-item {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.navbar-dropdown .dropdown-menu .nav-item .nav-link {
    width: 100%;
    padding-left: 36px;
    padding-right: 36px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.navbar-dropdown .dropdown-menu:hover {
    visibility: visible;
    opacity: 1;
}

.navbar-dropdown .dropdown-menu .dropdown-menu:not(.dropdown-menu-drop-left) {
    top: -18px;
    right: 100%;
}

.navbar-dropdown .dropdown-menu[data-bs-popper] {
    min-width: 124px;
}

.navbar-dropdown .dropdown-menu-drop-left {
    top: -18px;
    left: 100%;
    right: auto;
}

.navbar-dropdown .navbar-nav {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.navbar-hide .dropdown-menu {
    display: none;
}

.dropdown-toggle::after {
    display: none;
}

.dropdown-toggle svg {
    margin-right: 15px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.nav-item.dropdown > .dropdown-menu {
    border-radius: 0 0 8px 8px;
}

.navbar-top .navbar-collapse .navbar-nav.order-2 > .nav-item > .nav-link {
    padding: 19px 20px 18px;
}

/* .navbar-collapse {
	max-width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
} */

.navbar-collapse .nav-link {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.navbar-collapse .navbar-nav {
    margin: -12px 0;
}

.navbar-collapse .navbar-nav .nav-link {
    padding: 12px 0;
}

.navbar-nav.navbar-nav-collapse {
    margin: -12px 0;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.navbar-nav.navbar-nav-collapse .nav-link {
    padding: 12px 0;
}

.navbar-collapse-menu {
    width: 100%;
}

.navbar-collapse-menu > .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
}

.navbar-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: end;
    -ms-flex-align: end;
    align-items: end;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.navbar-toggle > span {
    width: 28px;
    height: 3px;
    margin-top: 4px;
    margin-bottom: 4px;
    background-color: currentColor;
    -webkit-transition: opacity 150ms linear, -webkit-transform 150ms linear;
    transition: opacity 150ms linear, -webkit-transform 150ms linear;
    transition: transform 150ms linear, opacity 150ms linear;
    transition: transform 150ms linear, opacity 150ms linear, -webkit-transform 150ms linear;
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right;
    will-change: transform, opacity;
}

.navbar-toggle > span:nth-child(2) {
    -webkit-transform: scaleX(0.7);
    -ms-transform: scaleX(0.7);
    transform: scaleX(0.7);
}

.navbar-toggle:hover > span:nth-child(2) {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.mfp-ready .navbar-toggle > span:nth-child(1) {
    -webkit-transform: rotate(45deg) translateX(-0.5px);
    -ms-transform: rotate(45deg) translateX(-0.5px);
    transform: rotate(45deg) translateX(-0.5px);
}

.mfp-ready .navbar-toggle > span:nth-child(2) {
    opacity: 0;
}

.mfp-ready .navbar-toggle > span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translateX(-0.5px);
    -ms-transform: rotate(-45deg) translateX(-0.5px);
    transform: rotate(-45deg) translateX(-0.5px);
}

.navbar-topbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    min-height: 46px;
    z-index: 110;
}

.navbar-topbar.navbar-dark {
    background-color: #302c6f;
    /* border-top: 3px solid #cf2a27; */
    border-image-slice: 1;
    /* border-image-source: linear-gradient(to bottom, #750101, #ff0000); */
    /* border-image-source: linear-gradient(to bottom, red, red); */
}

.navbar-topbar.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

.navbar-topbar .nav-link {
    font-size: 13px;
}

.navbar-topbar .navbar-nav {
    height: 100%;
}

.navbar-topbar .navbar-nav > .nav-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.navbar-topbar .navbar-nav > .nav-item > .nav-link {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-topbar .dropdown-menu[data-bs-popper] {
    /* right: -20px; */
    right: 0px;
    min-width: 85px;
    padding: 10px;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
}

.navbar-topbar .dropdown-item {
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #17161A;
    opacity: 0.7;
}

.navbar-topbar .dropdown-item:focus,
.navbar-topbar .dropdown-item:hover,
.navbar-topbar .dropdown-item.active,
.navbar-topbar .dropdown-item:active {
    background-color: transparent;
    opacity: 1;
}

.navbar-topbar .nav-contacts svg {
    margin-left: 15px;
    color: #FFBB38;
}

:root {
    --swiper-navigation-size: 46px;
}

.swiper {
    position: relative;
    overflow: unset;
}

.top-slider.swiper .swiper-wrapper {
    max-height: 80vh;
}

.swiper .swiper-container {
    overflow: hidden;
}

.swiper .swiper-button-next,
.swiper .swiper-button-prev {
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

.swiper .swiper-button-next:focus,
.swiper .swiper-button-prev:focus {
    outline: none;
}

.swiper-button-next,
.swiper-button-prev {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    overflow: hidden;
    background-image: none;
    border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none;
}

.swiper-button-prev {
    right: 0;
}

.swiper-button-next {
    left: 0;
}

.swiper-button-prev.swiper-button-position-1 {
    right: 20px;
}

@media (min-width: 828px) {
    .swiper-button-prev.swiper-button-position-1 {
        right: 0;
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
        transform: translateX(50%);
    }
}

.swiper-button-next.swiper-button-position-1 {
    left: 20px;
}

@media (min-width: 828px) {
    .swiper-button-next.swiper-button-position-1 {
        left: 0;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.swiper-button-position-2 {
    position: static;
    left: auto;
    right: auto;
    margin-top: unset;
}

.swiper-button-next.swiper-button-position-2 {
    margin-right: 15px;
}

.swiper-button-prev.swiper-button-position-3 {
    left: 20px;
    right: unset;
}

@media (min-width: 828px) {
    .swiper-button-prev.swiper-button-position-3 {
        left: 40px;
    }
}

.swiper-button-next.swiper-button-position-3 {
    right: 20px;
}

@media (min-width: 828px) {
    .swiper-button-next.swiper-button-position-3 {
        right: 40px;
    }
}

@media (max-width: 827.98px) {

    .swiper-button-next.swiper-button-position-3,
    .swiper-button-prev.swiper-button-position-3 {
        display: none;
    }
}

.swiper-button-gray {
    color: #17161A;
    background-color: #F5F5F7;
}

.swiper-button-gray:hover {
    color: #F01F4B;
    background-color: #F5F5F7;
}

.swiper-button-white {
    color: #17161A;
    background-color: #fff;
}

.swiper-button-white:hover {
    color: #F01F4B;
    background-color: #fff;
}

.swiper-button-dark {
    color: #B1B1B4;
    background-color: #262528;
}

.swiper-button-dark:hover {
    color: #fff;
    background-color: #262528;
}

.swiper-button-opacity {
    color: #B1B1B4;
    background-color: rgba(133, 133, 137, 0.4);
}

.swiper-button-opacity:hover {
    color: #fff;
    background-color: rgba(133, 133, 137, 0.6);
}

.swiper-pagination-custom {
    bottom: 0;
}

.swiper-pagination-custom .swiper-pagination-item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 5px;
    font-size: 1em;
    font-weight: 700;
    color: inherit;
    text-align: right;
    text-decoration: none;
    white-space: nowrap;
}

.swiper-pagination-custom .swiper-pagination-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background-color: currentColor;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: top right;
    -ms-transform-origin: top right;
    transform-origin: top right;
    will-change: transform;
}

.swiper-pagination-custom .swiper-pagination-item-active::after {
    -webkit-animation: pagination-custom-active 300ms linear forwards;
    animation: pagination-custom-active 300ms linear forwards;
}

[data-parallax] .swiper-slide {
    overflow-x: hidden;
}

/* Styles */
.swiper-full-horizontal {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-full-horizontal .swiper-container {
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

@media (min-width: 1024px) {
    .swiper-full-horizontal .swiper-slide {
        width: 470px;
    }
}

@media (min-width: 828px) and (max-width: 1023.98px) {
    .swiper-full-horizontal .swiper-slide {
        width: 300px;
    }
}

@media (max: 827px) {
    .swiper-full-horizontal .swiper-slide {
        width: 100%;
    }
}


.mfp-bg {
    background-color: #17161A;
}

.mfp-container.mfp-inline-holder {
    padding: 0;
}

.mfp-container.mfp-inline-holder .mfp-content {
    height: 100%;
}

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.6;
}

.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.isotope-filters {
    font-size: 0.875em;
}

.isotope-filters .nav-link {
    font-weight: 700;
    color: #4B4A4D;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

.isotope-filters .nav-item.active > .nav-link {
    color: #17161A;
    background-color: #EAEAEE;
    border-radius: 50px;
}

/* 03. Base */
/* CUSTOM
-------------------------------------------- */
.z-index-1 {
    z-index: 1;
}

.z-index-n1 {
    z-index: -1;
}

.start-custom {
    display: none !important;
}

@media (min-width: 1024px) {
    .start-custom {
        right: calc(50vw + 16.666% - 30px) !important;
        display: block !important;
    }
}

*[class^=rounded] {
    z-index: 1;
}

span.highlight {
    position: relative;
    z-index: 1;
}

span.highlight::after {
    content: "";
    position: absolute;
    top: calc(100% - 7.5px);
    left: 0;
    right: 0;
    height: 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FB100A' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e"); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

span.highlight {
    position: relative;
    z-index: 1;
}

span.highlight::after {
    content: "";
    position: absolute;
    top: calc(100% - 7.5px);
    left: 0;
    right: 0;
    height: 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FB100A' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
    /* background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e"); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: -1;
}

@media (min-width: 620px) {
    span.highlight-sm {
        position: relative;
        z-index: 1;
    }

    span.highlight-sm::after {
        content: "";
        position: absolute;
        top: calc(100% - 7.5px);
        left: 0;
        right: 0;
        height: 15px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
    }
}

@media (min-width: 828px) {
    span.highlight-md {
        position: relative;
        z-index: 1;
    }

    span.highlight-md::after {
        content: "";
        position: absolute;
        top: calc(100% - 7.5px);
        left: 0;
        right: 0;
        height: 15px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FB100A' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
    }
}

@media (min-width: 1024px) {
    span.highlight-lg {
        position: relative;
        z-index: 1;
    }

    span.highlight-lg::after {
        content: "";
        position: absolute;
        top: calc(100% - 7.5px);
        left: 0;
        right: 0;
        height: 15px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
    }
}

@media (min-width: 1200px) {
    span.highlight-xl {
        position: relative;
        z-index: 1;
    }

    span.highlight-xl::after {
        content: "";
        position: absolute;
        top: calc(100% - 7.5px);
        left: 0;
        right: 0;
        height: 15px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FB100A' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
    }
}

@media (min-width: 1400px) {
    span.highlight-xxl {
        position: relative;
        z-index: 1;
    }

    span.highlight-xxl::after {
        content: "";
        position: absolute;
        top: calc(100% - 7.5px);
        left: 0;
        right: 0;
        height: 15px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
    }
}

.down-arrow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    overflow: hidden;
    color: #fff;
    background-color: rgba(133, 133, 137, 0.3);
    border-radius: 50%;
}

.down-arrow:hover {
    color: #fff;
}

.content-wrap {
    position: relative;
    max-width: 100%;
    z-index: 1;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
}

.sticky-top {
    top: 0;
    -webkit-transition: top 150ms linear;
    transition: top 150ms linear;
    will-change: top;
}

.navbar-show .sticky-top {
    top: 80px;
}

.no-transform {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
}

.lift {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.lift:hover {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
}

.no-transform {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
}

@media (max-width: 619.98px) {
    .no-transform-sm {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
}

@media (max-width: 827.98px) {
    .no-transform-md {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
}

@media (max-width: 1023.98px) {
    .no-transform-lg {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
}

@media (max-width: 1199.98px) {
    .no-transform-xl {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
}

@media (max-width: 1399.98px) {
    .no-transform-xxl {
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }
}

.sep-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 14px;
    vertical-align: middle;
    background-color: currentColor;
    border-radius: 50%;
}

/* FONT SIZE
-------------------------------------------- */
.font-size-13 {
    font-size: 0.875em;
}

@media (min-width: 1024px) {
    .font-size-13 {
        font-size: 0.8125em;
    }
}

.font-size-14 {
    font-size: 0.9375em;
}

@media (min-width: 1024px) {
    .font-size-14 {
        font-size: 0.875em;
    }
}

.font-size-15 {
    font-size: 1em;
}

@media (min-width: 1024px) {
    .font-size-15 {
        font-size: 0.9375em;
    }
}

.font-size-18 {
    font-size: 1.1875em;
}

@media (min-width: 1024px) {
    .font-size-18 {
        font-size: 1.125em;
    }
}

/* FONT WEIGHT
-------------------------------------------- */
.fw-medium {
    font-weight: 500;
}

/* TEXT COLOR
-------------------------------------------- */
.text-accent-1 {
    color: #F01F4B !important;
}

.text-accent-2 {
    color: #302c6f !important;
}

.text-accent-3 {
    color: #FFBB38 !important;
}

.text-gray-light {
    color: #F5F5F7 !important;
}

.text-gray-light-2 {
    color: #9397ad !important;
}

.text-gray {
    color: #B1B1B4 !important;
}

.text-gray-dark {
    color: #5e6167 !important;
}

.text-gray-darker {
    color: #858589 !important;
}

.text-hover-accent-1:hover {
    color: #F01F4B;
}

.text-hover-accent-2:hover {
    color: #302c6f;
}

.text-hover-accent-3:hover {
    color: #FFBB38;
}

/* BACKGROUND COLOR
-------------------------------------------- */
.bg-linear-gradient {
    background-image: -webkit-linear-gradient(-26.66deg, #FFF5EB 0%, #F4F2F9 100%);
    background-image: linear-gradient(-63.34deg, #FFF5EB 0%, #F4F2F9 100%);
}

.bg-accent-1 {
    background-color: #F01F4B !important;
}

.bg-accent-2 {
    background-color: #302c6f !important;
}

.bg-accent-3 {
    background-color: #FFBB38 !important;
}

.bg-dark-light {
    background-color: #262528 !important;
}

.bg-gray {
    background-color: #B1B1B4 !important;
}

.bg-gray-dark {
    background-color: #4B4A4D !important;
}

.bg-gray-darker {
    background-color: #858589 !important;
}

.bg-gray-op20 {
    background-color: rgba(177, 177, 180, 0.2) !important;
}

.bg-gray-light {
    background-color: #F5F5F7 !important;
}

/* BORDER COLOR
-------------------------------------------- */
.border-gray {
    border-color: rgba(177, 177, 180, 0.3) !important;
}

.border-light-gray {
    border-color: #eee !important;
}

.border-light {
    border-color: #eff1f4 !important;
}

/* SELECTION
-------------------------------------------- */
::-moz-selection {
    color: #FFFFFF;
    background-color: #F01F4B;
}

::selection {
    color: #FFFFFF;
    background-color: #F01F4B;
}

::-moz-selection {
    color: #FFFFFF;
    background-color: #F01F4B;
}

/* BODY
-------------------------------------------- */
html {
    min-height: 100%;
}

body {
    position: relative;
    overflow-x: hidden;
    overflow-y: initial;
    color: #17161A;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* PARAGRAPH
-------------------------------------------- */
p {
    margin-bottom: 1.7647058824em;
    font-size: 1.0625em;
    line-height: 2;
}

p a {
    color: #F01F4B;
    text-decoration: none;
}

p a:hover {
    color: #F01F4B;
    text-decoration: underline;
}

/* LIST
-------------------------------------------- */
.list {
    padding-right: 40px;
    font-weight: 500;
    color: #17161A;
}

.list li {
    position: relative;
    list-style: none;
}

.list li::before {
    content: "";
    position: absolute;
    top: 0;
    right: -40px;
    width: 24px;
    height: 24px;
    background-color: #EAEAEE;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 10'%3e%3cpath fill='%23B1B1B4' d='m10.663 2.608.609-.663L9.945.728l-.608.664 1.326 1.216ZM4.5 8l-.663.608.663.724.663-.724L4.5 8ZM2.663 4.665 2.055 4 .728 5.217l.609.664 1.326-1.216Zm6.674-3.273-5.5 6 1.326 1.216 5.5-6-1.326-1.216Zm-4.174 6-2.5-2.727L1.337 5.88l2.5 2.727 1.326-1.216Z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    border-radius: 100%;
}

.list li + li {
    margin-top: 20px;
}

.list li.active::before {
    background-color: #302c6f;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 10'%3e%3cpath fill='%23fff' d='m10.663 2.608.609-.663L9.945.728l-.608.664 1.326 1.216ZM4.5 8l-.663.608.663.724.663-.724L4.5 8ZM2.663 4.665 2.055 4 .728 5.217l.609.664 1.326-1.216Zm6.674-3.273-5.5 6 1.326 1.216 5.5-6-1.326-1.216Zm-4.174 6-2.5-2.727L1.337 5.88l2.5 2.727 1.326-1.216Z'/%3e%3c/svg%3e");
}

/* LINK
-------------------------------------------- */
a {
    color: #17161A;
    -webkit-transition: all 150ms linear;
    transition: all 150ms linear;
}

a:hover {
    text-decoration: none;
}

a:hover,
a:focus {
    color: #17161A;
}

/* HEADINGS
-------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: #17161A;
}

h1 u,
.h1 u,
h2 u,
.h2 u,
h3 u,
.h3 u,
h4 u,
.h4 u,
h5 u,
.h5 u,
h6 u,
.h6 u {
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

h1,
.h1 {
    margin-bottom: 0.8em;
    font-size: 3.125em;
    line-height: 1.2;
}

@media (max-width: 619.98px) {

    h1,
    .h1 {
        margin-bottom: 1em;
        font-size: 2.5em;
    }
}

h1.large-heading,
.h1.large-heading {
    margin-bottom: 0.5714285714em;
    font-size: 4.375em;
    line-height: 1.2;
}

@media (max-width: 619.98px) {

    h1.large-heading,
    .h1.large-heading {
        margin-bottom: 0.8em;
        font-size: 3.125em;
        line-height: 1.2;
    }
}

h2,
.h2 {
    margin-bottom: 1em;
    font-size: 2.5em;
    line-height: 1.2;
}

@media (max-width: 619.98px) {

    h2,
    .h2 {
        margin-bottom: 1.1764705882em;
        font-size: 2.125em;
    }
}

h3,
.h3 {
    margin-bottom: 1.1764705882em;
    font-size: 2.125em;
    line-height: 1.4;
}

@media (max-width: 619.98px) {

    h3,
    .h3 {
        margin-bottom: 1.3333333333rem;
        font-size: 1.875rem;
    }
}

h4,
.h4 {
    margin-bottom: 2em;
    font-size: 1.375em;
    line-height: 1.5;
}

@media (min-width: 1024px) {

    h4,
    .h4 {
        font-size: 1.25em;
    }
}

h5,
.h5 {
    margin-bottom: 2.2222222222em;
    /* font-size: 1.25em; */
    font-size: 15px;
    line-height: 1.5;
}

@media (min-width: 1024px) {

    h5,
    .h5 {
        font-size: 1.125em;
    }
}

h6,
.h6 {
    margin-bottom: 1em;
    font-size: 1.125em;
    line-height: 1.6;
}

@media (min-width: 1024px) {

    h6,
    .h6 {
        font-size: 1em;
    }
}

.display-6 {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* LEAD
-------------------------------------------- */
.lead {
    margin-bottom: 0.9em;
    font-size: 1.25em;
    font-weight: 700;
    line-height: 1.5;
    color: #17161A;
}

@media (max-width: 619.98px) {
    .lead {
        margin-bottom: 1em;
        font-size: 1.125em;
    }
}

/* HR
-------------------------------------------- */
hr,
.hr {
    height: 0;
    margin-top: 2.25em;
    margin-bottom: 2.25em;
    background-color: transparent;
    border-top: 1px solid #B1B1B4;
    opacity: 0.3;
}

/* BLOCKQUOTE
-------------------------------------------- */
blockquote,
.blockquote {
    font-size: 1.25em;
    font-weight: 700;
}

/* CODE
-------------------------------------------- */
code:not([class]) {
    display: inline-block;
    padding: 0 8px;
    font-size: 0.875em;
    line-height: 1.6;
    color: #17161A;
    background-image: -webkit-linear-gradient(-26.66deg, #FFF5EB 0%, #F4F2F9 100%);
    background-image: linear-gradient(-63.34deg, #FFF5EB 0%, #F4F2F9 100%);
    border-radius: 3px;
}

/* 04. Partials */
.object-fit-image,
.background-video,
.background-image img,
[data-img-height] img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover";
    -o-object-fit: cover;
    object-fit: cover;
}

[data-img-height] {
    position: relative;
    display: block;
}

[data-img-height]::before {
    content: "";
    display: block;
    padding-top: var(--img-height);
}

.browser-topbar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 11px 13px;
    background-color: rgba(177, 177, 180, 0.25);
}

.browser-topbar span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #B1B1B4;
    border-radius: 50%;
}

.browser-topbar span + span {
    margin-right: 5px;
}

.browser-topbar-dark {
    background-color: #4B4A4D;
}

.browser-topbar-dark span {
    background-color: #858589;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.background-color,
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    -webkit-transition: background-color 150ms linear;
    transition: background-color 150ms linear;
    will-change: background-color;
}

.background-color {
    background-color: var(--background-color);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.preloader {
    position: fixed;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
}

/* PARTIAL: SHOW ON SCROLL
-------------------------------------------- */
[data-show=startbox] {
    opacity: 0;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    will-change: opacity, transform;
}

.half-section-block {
    z-index: 1;
}

/* 05. Components */
.brand {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 180px;
    min-height: 130px;
    -webkit-filter: brightness(1);
    filter: brightness(1);
    -webkit-transition: -webkit-transform 150ms linear, -webkit-filter 150ms linear;
    transition: -webkit-transform 150ms linear, -webkit-filter 150ms linear;
    transition: transform 150ms linear, filter 150ms linear;
    transition: transform 150ms linear, filter 150ms linear, -webkit-transform 150ms linear, -webkit-filter 150ms linear;
    will-change: transform, filter;
}

@media (max-width: 827.98px) {
    .brand {
        min-width: 170px;
    }
}

@media (max-width: 619.98px) {
    .brand {
        min-width: 132px;
    }
}

.brand svg {
    display: block;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.brand:hover,
.brand:focus {
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.brand-md {
    min-width: 170px;
    min-height: 150px;
}

@media (max-width: 619.98px) {
    .brand-md {
        min-width: 132px;
        min-height: 132px;
    }
}

.brand-sm {
    min-width: 132px;
    min-height: 96px;
}

.docs-card {
    padding: 30px 60px 60px;
}

.docs-card .docs-card-title {
    padding-left: 60px;
    padding-bottom: 30px;
    padding-right: 60px;
    margin-top: 0;
    margin-left: -60px;
    margin-bottom: 40px;
    margin-right: -60px;
    border-bottom: 1px solid rgba(177, 177, 180, 0.3);
}

.docs-card > h2,
.docs-card > .h2 {
    margin-top: 1em;
}

.docs-card > h3,
.docs-card > .h3 {
    margin-top: 1.1764705882em;
}

.docs-card > h4,
.docs-card > .h4 {
    margin-top: 2em;
}

.docs-card > h5,
.docs-card > .h5 {
    margin-top: 2.2222222222em;
}

.docs-card > h6,
.docs-card > .h6 {
    margin-top: 1em;
}

.docs-card ul:not([class]),
.docs-card ol:not([class]) {
    margin-bottom: 30px;
    line-height: 2;
}

.docs-card ul:not([class]) ul,
.docs-card ul:not([class]) ul,
.docs-card ol:not([class]) ul,
.docs-card ol:not([class]) ul {
    margin-bottom: 0;
}

.docs-card ul:not([class]):last-of-type,
.docs-card ol:not([class]):last-of-type {
    margin-bottom: 0;
}

.docs-card a + p,
.docs-card ul:not([class]) + p,
.docs-card ol:not([class]) + p,
.docs-card ul:not([class]) + .docs-card-example,
.docs-card ol:not([class]) + .docs-card-example,
.docs-card .docs-card-example + p,
.docs-card p + .docs-card-example,
.docs-card .docs-card-example + .docs-card-example {
    margin-top: 40px;
}

.docs-card p a,
.docs-card ul:not([class]) a,
.docs-card ol:not([class]) a {
    color: #F01F4B;
    text-decoration: underline;
}

.docs-card:not(.show) {
    display: none;
}

code.docs-card-gist {
    display: block;
    margin-top: 45px;
    margin-bottom: 45px;
}

code.docs-card-gist .blob-wrapper {
    max-height: 500px;
    overflow-y: auto;
}

.docs-card-example {
    position: relative;
    padding: 30px;
    background-color: #F5F5F7;
    border: 1px solid rgba(177, 177, 180, 0.3);
}

.industry {
    overflow: hidden;
    border-bottom: 6px solid #302c6f;
}

.industry img {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.industry::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 68%;
    background: -webkit-gradient(linear, right top, right bottom, from(transparent), to(#17161A));
    background: -webkit-linear-gradient(top, transparent 0%, #17161A 100%);
    background: linear-gradient(-180deg, transparent 0%, #17161A 100%);
    -webkit-transition: height 150ms linear;
    transition: height 150ms linear;
    will-change: height;
    z-index: 1;
    border-bottom: 4px solid #cf2a27;
    border-radius: 0px;
}

.industry:hover::before {
    height: 100%;
}

.industry .industry-body {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: center;
    -ms-flex-direction: center;
    flex-direction: center;
    z-index: 2;
}

.shape {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
}

/* @media (max-width: 1199.98px) {
	.shape:not(.shape-visible) {
		display: none;
	}
} */

.shape svg,
.shape img {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    z-index: -1;
}

.shape-parent {
    position: relative;
    z-index: 0;
}

.category {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.category-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.circle-icon {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.circle-icon-sm {
    width: 60px;
    height: 60px;
}

.process-step {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.process-number {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.process-body .process-title {
    margin-bottom: 15px;
}

.process-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-decoration: none;
}

.process-title svg {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.process-title:hover svg {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
}

.service-box {
    padding: 35px 30px;
}

.service-box-arrow:hover {
    color: #F01F4B;
}

.service-box-sm {
    padding: 35px 25px 50px;
}

.service-line {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 35px;
    border: 1px solid rgba(177, 177, 180, 0.3);
    -webkit-transition: background-color 150ms linear, border-color 150ms linear, -webkit-transform 150ms linear;
    transition: background-color 150ms linear, border-color 150ms linear, -webkit-transform 150ms linear;
    transition: background-color 150ms linear, border-color 150ms linear, transform 150ms linear;
    transition: background-color 150ms linear, border-color 150ms linear, transform 150ms linear, -webkit-transform 150ms linear;
    will-change: background-color, border-color, transform;
}

@media (min-width: 1200px) {
    .service-line {
        padding: 30px 70px;
    }
}

.service-line:hover {
    background-color: #F5F5F7;
    border-color: #F5F5F7;
}

.service-line:hover .service-line-arrow {
    color: #F01F4B;
}

.service-line-icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.service-line-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

.service-line-sm {
    padding-left: 40px;
    padding-right: 40px;
}

.service-card {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

@media (max-width: 827.98px) {
    .service-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.service-card .service-card-image {
    position: relative;
    display: block;
    width: 35%;
    overflow: hidden;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 827.98px) {
    .service-card .service-card-image {
        width: 100%;
    }
}

.service-card .service-card-image img {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.service-card-body {
    /* padding: 25px 50px 25px 60px; */
    padding: 15px;
}

.service-card-arrow:hover {
    color: #F01F4B;
}

.service-case .service-case-title {
    color: #344767;
    font-size: 16px;
}

.service-case .service-case-text {
    font-size: 14px;
    text-align: justify;
    color: #777;
}

.service-case .service-case-image {
    overflow: hidden;
    margin: 15px;
}

.service-case .service-case-image img {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.service-case-body {
    padding: 0px 15px 20px;
    height: 170px;
    overflow: hidden;
}

.service-case-arrow {
    margin: 15px;
    text-align: left;
    display: block;
}

.service-case-arrow:hover {
    color: #F01F4B;
}

.feedback {
    padding: 50px 40px;
}

.pricing {
    padding: 40px 45px 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.member .member-image {
    display: block;
    overflow: hidden;
}

.member .member-image img {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.member .member-body {
    padding: 32px 0 0;
}

.member .member-title {
    display: block;
    margin-bottom: 10px;
}

.member a.member-title {
    text-decoration: none;
}

.countdown {
    display: grid;
    grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
}

@media (max-width: 827.98px) {
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}

.countdown-item {
    white-space: nowrap;
}

.countdown-item span {
    display: block;
}

.page-navigation {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 18px;
}

.page-navigation .page-navigation-all {
    position: absolute;
    top: calc(50% - 35px);
    right: calc(50% - 35px);
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: #F01F4B;
    background-color: #fff;
    border-radius: 50%;
}

.page-navigation .page-navigation-all svg {
    -webkit-transition: -webkit-transform 150ms linear;
    transition: -webkit-transform 150ms linear;
    transition: transform 150ms linear;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    will-change: transform;
}

.page-navigation .page-navigation-all:hover {
    color: #fff;
    background-color: #F01F4B;
}

.page-navigation .page-navigation-all:hover svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.page-navigation .page-navigation-next,
.page-navigation .page-navigation-prev {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px;
    margin: 0;
    text-decoration: none;
}

/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*/
.nav-pills-custom .nav-link {
    color: #aaa;
    background: #fff;
    position: relative;
}

.nav-pills-custom .nav-link.active {
    color: #45b649;
    background: #fff;
}


/* Add indicator arrow for the active tab */
@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: '';
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid #fff;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}


@media (min-width: 828px) {

    .page-navigation .page-navigation-next,
    .page-navigation .page-navigation-prev {
        padding: 50px 70px;
    }
}

.page-navigation .page-navigation-prev svg {
    margin-left: 30px;
}

.page-navigation .page-navigation-next {
    -webkit-box-pack: end;
    -webkit-justify-content: end;
    -ms-flex-pack: end;
    justify-content: end;
    text-align: left;
}

.page-navigation .page-navigation-next svg {
    margin-right: 30px;
}

/* Rounded tabs */

@media (min-width: 576px) {
    .rounded-nav {
        border-radius: 50rem !important;
    }
}

@media (min-width: 576px) {
    .rounded-nav .nav-link {
        border-radius: 50rem !important;
    }
}

/* With arrow tabs */

.with-arrow .nav-link.active {
    position: relative;
}

.with-arrow .nav-link.active::after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #2b90d9;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: block;
}

/* lined tabs */

.lined .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
}

.lined .nav-link:hover {
    border: none;
    border-bottom: 3px solid transparent;
}

.lined .nav-link.active {
    background: none;
    color: #555;
    border-color: #cf2a27;
}

.dark-overlay {
    position: relative;
}

.dark-overlay:before {
    position: absolute;
    background-position: 50%;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
    content: '';
    z-index: 0;
}

.gray-overlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-triangle {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
}

.bg-triangle-right {
    /* background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><path d='M100 100 V 90 L 90 100 Z' fill='%23212529' fill-opacity='0.045'></path><path d='M100 90 V 80 L 90 90 Z' fill='%23212529' fill-opacity='0.015'></path><path d='M90 100 V 90 L 80 100 Z' fill='%23212529' fill-opacity='0.03'></path><path d='M90 100 V 90 H 100 Z' fill='%23212529' fill-opacity='0.06'></path></svg>)"; */
    background-image: url('../assets/img/bg-right.html');
}

.bg-triangle-left {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><path d='M0 100 V 90 L 10 100 Z' fill='%23212529' fill-opacity='0.03'></path><path d='M0 90 V 80 L 10 90 Z' fill='%23212529' fill-opacity='0.045'></path><path d='M10 100 V 90 L 20 100 Z' fill='%23212529' fill-opacity='0.025'></path><path d='M0 90 H 10 V 100 Z' fill='%23212529' fill-opacity='0.06'></path></svg>");
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-16-9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.img-16-9 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 50%;
    position: absolute;
    top: 50%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.badge-secondary {
    background-color: #302c6f !important;
    color: #fff;
    border-radius: 40px;
}

.badge-gray {
    background-color: #eeecf5;
    color: #878c8e;
    border-radius: 40px;
    font-weight: normal;
}

.card-img-top-overlay {
    position: relative;
    overflow: hidden;
}

.card-img-top-overlay .card-content .card-body {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
    padding: 15px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.4);
}

.card-img-top-overlay .card-content .card-body t .card-label .badge {
    display: inline-block;
    font-size: 12px;
    position: relative;
    line-height: 14px;
    margin-bottom: 5px;
    border-radius: 40px;
    padding: 3px 15px;
    font-weight: bold;

}

.card-img-top-overlay .card-content .card-body .card-label .badge.badge-danger {
    border: 1px solid #af1613;
    color: #fff;
    background: #cf2a27;
    border-radius: 40px;
}

.card-img-top-overlay .card-content .card-body .card-title {
    font-size: 22px;
    line-height: 26px;
    font-weight: 600;
    padding: 10px 0px;
    color: #fff;
}

.card-img-top-overlay .card-content .card-body .card-time {
    font-size: 14px;
    font-weight: 400;
    color: #d9d9d9;
    float: left;
}

.swiper-3d {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-3d .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 33.33%;
    height: 300px;
}

.swiper-3d .swiper-slide .industry-image {
    height: 300px;
}

.swiper-3d .swiper-slide img {
    display: block;
    width: 100%;
}

.bg-w-svg {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
    background: red;
    position: relative;
}

.bg-triangle {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 100% auto;
}

.bg-triangle-left {
    transform: scaleY(-1);
    background-image: url("&quot;data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><path d='M0 100 V 90 L 10 100 Z' fill='%23212529' fill-opacity='0.03'></path><path d='M0 90 V 80 L 10 90 Z' fill='%23212529' fill-opacity='0.045'></path><path d='M10 100 V 90 L 20 100 Z' fill='%23212529' fill-opacity='0.025'></path><path d='M0 90 H 10 V 100 Z' fill='%23212529' fill-opacity='0.06'></path></svg>&quot;");
}

.bg-triangle-right {
    background-image: url("&quot;data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><path d='M100 100 V 90 L 90 100 Z' fill='%23212529' fill-opacity='0.045'></path><path d='M100 90 V 80 L 90 90 Z' fill='%23212529' fill-opacity='0.015'></path><path d='M90 100 V 90 L 80 100 Z' fill='%23212529' fill-opacity='0.03'></path><path d='M90 100 V 90 H 100 Z' fill='%23212529' fill-opacity='0.06'></path></svg>&quot;");
}

.navbar-top .navbar-nav.order-2 > .nav-item > .nav-link {
    position: relative;
    font-size: 16px;
    padding: 6px 20px;
}

.navbar-top .navbar-nav.order-2 > .nav-item > .nav-link:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 3px;
    width: 0;
    background: #383568;
}

.navbar-top .navbar-nav.order-2 > .nav-item > .nav-link:hover,
.navbar-top .navbar-nav.order-2 > .nav-item > .nav-link:focus,
.navbar-dark .navbar-nav .nav-item:hover > .nav-link {
    color: #383568;
}

.navbar-top .navbar-nav.order-2 > .nav-item > .nav-link:hover:before,
.navbar-top .navbar-nav.order-2 > .nav-item > .nav-link:focus:before,
.navbar-top .navbar-nav.order-2 > .nav-item > .nav-link:hover:after,
.navbar-top .navbar-nav.order-2 > .nav-item > .nav-link:focus:after {
    width: 100%;
}

.footer .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    width: unset;
    padding: 0;
}

.footer .nav .nav-link {
    color: #5a5a5a;
    opacity: 1;
}

.footer .nav .nav-link:hover {
    color: #000;
    opacity: 1;
}


.pattern {
    position: relative;
    overflow: hidden;
}

.pattern::before,
.pattern::after {
    content: '';
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    content: "";
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10rem;
}

.pattern::before {
    width: 80vw;
    /* height: 75vw; */
    height: 1280px;
    bottom: -40vw;
    left: 37vw;
}

.pattern.pattern-dark::before,
.pattern.pattern-dark::after {
    /* background: rgba(21, 21, 21, 0.05); */
    background: rgba(57, 89, 162, 0.05);
}

.pattern::after {
    width: 60vw;
    height: 60vw;
    bottom: -30vw;
    left: 80vw;
}

.pattern.pattern-left::before {
    right: 25vw;
    left: unset;
}

.pattern.pattern-left::after {
    right: 80vw;
    left: unset;
}

ul.nav-tabs {
    background-color: #f8fafd;
    padding: 10px;
}

.flag-img {
    width: 20px;
    margin-left: 7px;
}

.object-cover {
    object-fit: cover;
}

.btn-border-rounded-blue {
    cursor: pointer;
    border-radius: 40px;
    background: transparent;
    color: #302c6f;
    border: 1px solid #302c6f;
    padding: 10px 15px;
    min-width: 150px;
    font-weight: normal;
}

.section-header .section-header-title {
    font-size: 15px;
    border-radius: 0;
    color: #302c6f;
    text-align: right;
    border-bottom: 1px solid #dee1f1;
    font-weight: normal;
}

.section-header .section-header-title .title {
    position: relative;
    font-size: 25px;
}

.section-header .section-header-title .title:after {
    content: '';
    position: absolute;
    bottom: -34px;
    left: 0;
    right: 0;
    background: #302c6f;
    height: 4px;
    border-radius: 10px;
}

.section-header .section-header-title.title-mini .title {
    font-size: 16px;
    padding-left: 10px;
}

.section-header .section-header-title.title-mini .section-header-btn {
    font-size: 13px;
}

.section-header .section-header-title.title-mini .title:after {
    bottom: -10px;
    background: #cf2a27;
    height: 3px;
}

/* .section-header .section-header-title.title-mini.title-blue .title:after {
	background: #3485ff;
} */

.section-header .section-header-btn {
    float: left;
    position: relative;
    top: -5px;
}

.title-half-border {
    margin-top: 15px;
    text-decoration: none;
    color: #5e6167;
    position: relative;
    font-size: 16px;
}

.title-half-border .half-border {
    right: 0;
    position: absolute;
    height: 4px;
    background: #cf2a27;
    width: 35px;
    border-radius: 5px;
    position: absolute;
    bottom: -7px;
}

.icon-double-chevron {
    height: 10px;
    margin-right: 2px;
    padding-top: 0px;
}

.card-img-top-md {
    background: #fff;
    box-shadow: 0 0.275rem 0.75rem -0.0625rem rgba(11, 15, 25, 0.06), 0 0.125rem 0.4rem -0.0625rem rgba(11, 15, 25, 0.03) !important;
    border-top: 3px solid #302c6f;
    overflow: hidden;
}

.card-img-top-md .card-img-top {
    border-radius: 0 !important;
}

.card-img-top-md .img-parent {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-img-top-md .card-body {
    height: unset;
}

.card-img-top-md.no-text .card-title {
    height: 60px;
    overflow: hidden;
}

.card-img-top-md .card-body .card-text {
    height: 80px;
    overflow: hidden;
}

/* .card-img-top-md.w-text .card-title {
	height: 45px;
	overflow: hidden;
} */

.card-img-top-md.w-text .card-body .card-text {
    height: 85px;
    overflow: hidden;
    text-align: justify;
}

.card-img-top-md a {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-img-top-md a figure,
.card-img-top-md a .card-body,
.card-img-top-md a .card-footer {
    flex-shrink: 0
}

.card-img-top-md a .card-body {
    flex-grow: 1;
}

.card-img-right-md {
    background: #fff;
    box-shadow: 0 0.275rem 0.75rem -0.0625rem rgba(11, 15, 25, 0.06), 0 0.125rem 0.4rem -0.0625rem rgba(11, 15, 25, 0.03) !important;

}

.card-img-right-md figure {
    max-height: 300px;

}

.card-img-right-md .card-body .card-text {
    height: 85px;
    overflow: hidden;
}

.card-img-right-sm {
    border: 0;
    box-shadow: unset;
    border-radius: 0;
    border-bottom: 1px solid #eee;
}

.card-img-right-sm .card-title {
    margin-top: 15px;
    color: #5e6167;
    position: relative;
    line-height: 1.8;
    font-size: 16px;
    /* height: 55px; */
    overflow: hidden;
}

.card-img-right-sm .card-footer {
    background: transparent;
    text-align: left;
}

.card-img-right-sm .card-time {
    font-size: 12px;
    font-weight: 400;
    color: #8c9096;
}

.card-img-right-sm.card-adv .card-body {
    height: 219px;
    margin-bottom: 20px;
    overflow: hidden;
}

.card-img-right-mini .card-title {
    padding: 0;
    text-align: right;
    height: 40px;
    color: #777;
    font-size: 13px;
    overflow: hidden;
    font-weight: normal;
}

.card-img-right-mini .card-footer {
    font-size: 12px;
    text-align: left;
}

.card-w-triangle {
    border: 1px solid #f5f6f7;
}

.bottom-triangle-1 {
    position: absolute;
    width: 100%;
    height: 120px;
    right: -60px;
    bottom: -77px;
    transform: rotate(339deg);
    top: unset;
    background: linear-gradient(265deg, rgba(112, 123, 147, 0.22) 0%, rgba(21, 19, 45, 0) 100%);
}

.bottom-triangle-2 {
    position: absolute;
    width: 100%;
    height: 120px;
    left: -60px;
    bottom: -77px;
    transform: rotate(-339deg);
    background: linear-gradient(100deg, rgba(112, 123, 147, 0.22) 0%, rgba(21, 19, 45, 0) 100%);
}

/* Profile */
.profile-card {
    font-size: 14px;
}

.profile-card .alert {
    width: calc(100% - 30px);
    margin: 15px auto;
}

.profile-card .profile-card-wrapper {
    padding-top: 47px;
    margin-top: -15px !important;
    position: relative;
}

.profile-card .profile-card-cross {
    border-top-right-radius: 32px;
    right: 0;
    width: 102px;
    background-color: #fff;
    top: 47px;
    z-index: 4;
    content: '';
    height: 32px;
    position: absolute;
    display: inline-block;
    border: 1px solid #e8e8e8;
    border-bottom: 0;
    border-left: 0;
    border-top-left-radius: 0;
}

.profile-card .form-star {
    font-size: 7px;
    color: #cc2d29;
}

/* .profile-card .profile-card-cross.profile-card-cross-right {

} */
.profile-card .profile-card-cross.profile-card-cross-left {
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    width: calc(100% - 224px);
    left: 0;
    right: unset;
    border-right: 0;
    border-top-right-radius: 0;
}

.profile-card .profile-card-full-cross {
    left: 0;
    right: 0;
    background-color: #fff;
    top: 79px;
    z-index: 2;
    content: '';
    height: 79px;
    position: absolute;
    display: inline-block;
    border-right: 1px solid #e8e8e8;
    border-left: 1px solid #e8e8e8;
}

.profile-card .profile-card-image-container {
    top: 0;
    z-index: 5;
    position: absolute;
    padding: 14px;
    border-radius: 50%;
    background-color: #ffffff;
    right: 100px;
}

.profile-card .profile-card-image-wrapper {
    padding: 0px;
    border-radius: 50%;
    border: 6px solid #2e3757;
    width: 98px;
    height: 98px;
    overflow: hidden;
    position: relative;
}

.profile-card .profile-card-image-wrapper .icon {
    font-size: 48px;
    color: #2f3856;
}

.profile-card .profile-card-body {
    border-radius: 32px;
    background-color: #fff;
    padding: 115px 30px 20px;
    height: unset;
    border: 1px solid #e8e8e8;
    border-top: 0;
}

.profile-card .form-group {
    color: #5b5c5c;
    border: 0 !important;
    margin-bottom: 20px;
}

.profile-card .form-group label {
    margin-bottom: 15px;
    width: 100%;
}

.profile-card .form-group .form-control {
    box-shadow: unset;
    outline: unset;
    /* font-size: 13px;
	height: 40px;
	border: none; */
    width: 100%;
    /* padding: 0 25px;
	border-radius: 23px;
	color: #333;
	background: #eff3f9; */
    border-radius: 8px;
    padding: 5px 20px;
    box-shadow: unset;
    border: 1px solid #eff3f9;
    font-size: 14px;
    height: 38px;
    text-align: right;
    background: rgba(250, 250, 250, 0.72);
}

.profile-card .form-group .form-control:focus,
.profile-card .form-group .form-control:active,
.profile-card .form-group .form-control:hover {
    background: rgba(237, 237, 239, 0.72);
}

.profile-card .form-group .col-sm-11,
.profile-card .form-group .col-sm-8 {
    width: 100%;
}

.profile-card .form-headline {
    background: #f2f4f7;
    margin: 30px -15px;
    padding: 10px;
    text-align: center;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    font-size: 18px;
    font-weight: normal;
    color: #666;
}

.profile-card .btn-primary {
    margin: 0 auto;
    display: block;
    padding: 10px 15px;
    max-width: 170px;
    border-radius: 4px;
    margin-top: 20px;
    background: #383764;
}

.border-top-blue {
    border-top: 3px solid #302c6f;
}

a {
    text-decoration: none;
}

.end-mb-0:last-child {
    margin-bottom: 0 !important;
}

.card-btn-dn {
    position: absolute;
    left: 15px;
    bottom: 15px;
}

.btn-rounded-red {
    float: left;
    /* text-align: center; */
    font-size: 14px;
    color: #ffffff;
    background: #cf2a27;
    border-radius: 40px;
    padding: 5px 15px;
    cursor: pointer;
}

.btn-gray-light-mini {
    text-align: center;
    min-width: 100px;
    display: block;
    /* border: 1px solid #e3e3e3; */
    border-radius: 4px;
    background: #fff;
    color: #312e6d;
    font-size: 12px;
    padding: 7px 15px;
    box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.btn-gray-light-mini:hover,
.btn-gray-light-mini:active,
.btn-gray-light-mini:focus {
    border: 1px solid #e0e4e9;
    background: #312e6d;
    box-shadow: unset;
    color: #fff;
    transform: unset;
}

.btn-gray-light-mini .icon {
    margin-right: 1px;
    position: relative;
    top: 2px;
}

.btn-rounded-primary {
    float: left;
    font-size: 14px;
    color: #ffffff;
    background: #302c6f;
    border-radius: 40px;
    padding: 5px 15px;
    cursor: pointer;
}

.btn-rounded-primary:hover,
.btn-rounded-primary:focus,
.btn-rounded-primary:active {
    background: #26235a;
    color: #fff;
}


.navbar-top .container > .navbar-nav > .navbar-dropdown > .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0 0 10px 10px;
}

.navbar-dropdown .dropdown-menu .navbar-nav {
    padding: 15px;
}

.navbar-dropdown .dropdown-menu .navbar-nav > .nav-item > .nav-link:hover,
.navbar-topbar .dropdown-menu[data-bs-popper] .dropdown-item:hover {
    background: #f5f5f7;
}

.btn-border-rounded-blue svg > g:first-child {
    fill: #302c6f;
}

.btn-border-rounded-blue:hover,
.btn-border-rounded-blue:active,
.btn-border-rounded-blue:focus {
    color: #ffffff;
    background-color: #302c6f;
}

.btn-border-rounded-blue:hover svg > g:first-child,
.btn-border-rounded-blue:active svg > g:first-child,
.btn-border-rounded-blue:focus svg > g:first-child {
    fill: #ffffff;
}

.btn-rounded-red:hover,
.btn-rounded-red:focus,
.btn-rounded-red:active {
    background: #a70a07;
}

.card {
    transition: transform 150ms linear, -webkit-transform 150ms linear;
    /* transition: .2s ease-out; */
}

.card:hover {
    transform: translate3d(0, -15px, 0);
    box-shadow: 0 8px 26px -4px hsla(0, 0%, 8%, .15), 0 8px 9px -5px hsla(0, 0%, 8%, .06) !important;
    /* transform: perspective(999px) rotateX(7deg) translate3d(0,-4px,5px); */
}

.btn-rounded-white {
    background: #fff;
    padding: 10px 15px;
    border-radius: 40px;
    color: #494949;
    font-weight: normal;
    cursor: pointer;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
}

.btn-rounded-transparent {
    background: transparent;
    padding: 10px 15px;
    border-radius: 40px;
    color: #494949;
    font-weight: normal;
    cursor: pointer;
    transition: transform 150ms linear, -webkit-transform 150ms linear;
}

.btn-rounded-white svg > g:first-child,
.btn-rounded-transparent svg > g:first-child {
    fill: #494949;
}

.btn-rounded-white:hover,
.btn-rounded-transparent:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 26px -4px hsla(0, 0%, 8%, .15), 0 8px 9px -5px hsla(0, 0%, 8%, .06) !important;
}

/* .card-img-right-sm {
	background: #fff;
	border-radius: 10px;
	border: 1px solid #EFF2F7;
} */

.waves {
    position: relative;
    width: 100%;
    height: 16vh;
    margin-bottom: -7px;
    min-height: 100px;
    max-height: 150px
}

.waves.waves-sm {
    height: 50px;
    min-height: 50px
}

.waves.no-animation .moving-waves > use {
    animation: none
}

.wave-rotate {
    transform: rotate(-180deg)
}

.moving-waves > use {
    animation: f 40s cubic-bezier(.55, .5, .45, .5) infinite
}

.moving-waves > use:first-child {
    animation-delay: -2s;
    animation-duration: 11s
}

.moving-waves > use:nth-child(2) {
    animation-delay: -4s;
    animation-duration: 13s
}

.moving-waves > use:nth-child(3) {
    animation-delay: -3s;
    animation-duration: 15s
}

.moving-waves > use:nth-child(4) {
    animation-delay: -4s;
    animation-duration: 20s
}

.moving-waves > use:nth-child(5) {
    animation-delay: -4s;
    animation-duration: 25s
}

.moving-waves > use:nth-child(6) {
    animation-delay: -3s;
    animation-duration: 30s
}

.widget h2:after,
.widget h2:after,
.widget h2:after {
    content: "";
    position: absolute;
    left: 0;
    width: 40%;
    height: 2px;
    background: #ef483f;
    bottom: -1px;
}

/* ----------- */
.section__slider .centerx,
.section__slider .header__basic--black .header__img,
.section__slider .section__crazy__color .wrapper__color .wrapper__panel .color .color__el h3,
.section__slider .section__handsketch__color .wrapper__audrio .color .color__el h3,
.section__slider .section__handsketch__color .wrapper__audrio img,
.section__slider .section__woy__color .wrapper__audrio .color .color__el h3,
.section__slider .section__woy__color .wrapper__audrio img {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.section__slider .centery,
.section__slider .header__basic--studio .header__img,
.section__slider .section__404 .title__block,
.section__slider .section__jobs .jobs__ul .jobs__ul__li .jobs__ul__li__a i,
.section__slider .section__site .site__template .site__template__bar .template__button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.section__slider .centerxy,
.section__slider .flux__el--twitter p,
.section__slider .job__title .close--profil i,
.section__slider .job__title .title__block,
.section__slider .loading .loading__elements #display,
.section__slider .loading .loading__elements #progress,
.section__slider .navigation__project .navigation__project__block .content__text,
.section__slider .navigation__project .navigation__project__block:nth-child(2) .link,
.section__slider .other__team .profil__team .profil__team__li a img,
.section__slider .section__404 .overlay__404,
.section__slider .section__about .background__about .play i,
.section__slider .section__customer .customers .customers__li img,
.section__slider .section__projets .awards .awards__li a img,
.section__slider .section__projets .swiper-projets .swiper-slide .swiper-slide-block-content .text__content,
.section__slider .section__team .swiper-slide .slide__img .overlay,
.section__slider nav .center__navigation {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
}


.section__slider a {
    text-decoration: none;
    color: #21272b;
    cursor: pointer;
}

.section__slider article,
.section__slider aside,
.section__slider footer,
.section__slider header,
.section__slider nav,
.section__slider section {
    display: block;
}

.section__slider h1 {
    font-size: 2em;
    margin: .67em 0;
}

.section__slider ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.section__slider figcaption,
.section__slider figure,
.section__slider main {
    display: block;
}

.section__slider figure {
    margin: 1em 40px;
}

.section__slider hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

.section__slider abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

.section__slider b,
.section__slider strong {
    font-weight: bolder;
}

.section__slider code,
.section__slider kbd,
.section__slider samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

.section__slider dfn {
    font-style: italic;
}

.section__slider mark {
    background-color: #ff0;
    color: #000;
}

.section__slider small {
    font-size: 80%;
}

.section__slider sub,
.section__slider sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.section__slider sub {
    bottom: -.25em;
}

.section__slider sup {
    top: -.5em;
}

audio,
video {
    display: inline-block;
}

.section__slider audio:not([controls]) {
    display: none;
    height: 0;
}

.section__slider img {
    border-style: none;
}

.section__slider svg:not(:root) {
    overflow: hidden;
}

.section__slider button,
.section__slider input,
.section__slider optgroup,
.section__slider select,
.section__slider textarea {
    font-family: sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

.section__slider button,
.section__slider input {
    overflow: visible;
}

.section__slider button,
.section__slider select {
    text-transform: none;
}

.section__slider [type=reset],
.section__slider [type=submit],
.section__slider button,
.section__slider [type=button] {
    -webkit-appearance: button;
}

.section__slider [type=button]::-moz-focus-inner,
.section__slider [type=reset]::-moz-focus-inner,
.section__slider [type=submit]::-moz-focus-inner,
.section__slider button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

.section__slider [type=button]:-moz-focusring,
.section__slider [type=reset]:-moz-focusring,
.section__slider [type=submit]:-moz-focusring,
.section__slider button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

.section__slider fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em;
}

.section__slider legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

.section__slider progress {
    display: inline-block;
    vertical-align: baseline;
}

.section__slider textarea {
    overflow: auto;
}

.section__slider [type=checkbox],
.section__slider [type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.section__slider [type=number]::-webkit-inner-spin-button,
.section__slider [type=number]::-webkit-outer-spin-button {
    height: auto;
}

.section__slider [type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

.section__slider [type=search]::-webkit-search-cancel-button,
.section__slider [type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

.section__slider ::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

.section__slider details,
.section__slider menu {
    display: block;
}

.section__slider summary {
    display: list-item;
}

.section__slider canvas {
    display: inline-block;
}

.section__slider template {
    display: none;
}

[hidden] {
    display: none;
}

.section__slider .main__title {
    color: #f2f3f3;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-size: 2.6em;
    letter-spacing: 1px;
    margin: 0;
}

.section__slider .main__title span {
    color: #ff2d71;
}

.section__slider .main__subtitle {
    margin: 2px 0;
    font-weight: 700;
    font-family: Montserrat, sans-serif;
    font-size: .9em;
    color: #f2f3f3;
}

.section__slider .main__subtitle span {
    font-family: "Patua One", cursive;
    color: #00a8af;
    font-style: italic;
}

@media (min-width: 768px) {
    .section__slider .main__subtitle {
        font-size: 1.1em;
    }
}

@media (min-width: 1200px) {
    .section__slider .swiper-container {
        height: 550px;
    }
}

.section__slider .link {
    display: inline-block;
    width: auto;
    position: relative;
    text-decoration: none;
    color: #21272b;
    font-family: Montserrat, sans-serif;
    font-size: .7em;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00a8af !important;
    transition: all .3s ease-in-out;
}

.section__slider .link:hover {
    letter-spacing: 2px;
}

.section__slider .link__apply {
    display: block;
    width: 150px;
    padding: 16px 12px;
    background-color: #00a8af;
    border: 2px solid #00a8af;
    border-radius: 1px;
    color: #f2f3f3;
    text-decoration: none;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    font-family: Montserrat, sans-serif;
    font-size: .813em;
    letter-spacing: 1px;
    transition: all .3s ease-in-out;
}

.section__slider .link__apply:hover {
    background-color: transparent;
    letter-spacing: 3px;
    border-radius: 1px;
}

.section__slider .link__apply:active {
    background-color: transparent;
    letter-spacing: 3px;
    border-radius: 1px;
}

.section__slider .link__apply:focus {
    background-color: transparent;
    letter-spacing: 3px;
    border-radius: 1px;
}

.section__slider .swiper-container {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    cursor: -webkit-grab;
    cursor: grab;
    overflow: hidden;
}

.section__slider .swiper-button-next,
.section__slider .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-image: none;
    background-color: #e4e4e4;
    z-index: 2;
    cursor: pointer;
}

.section__slider .swiper-button-next i,
.section__slider .swiper-button-prev i {
    position: relative;
    left: 50%;
    top: 50%;
    color: #21272b;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all .3s ease-in-out;
}

.section__slider .swiper-button-next:hover i,
.section__slider .swiper-button-prev:hover i {
    -webkit-animation: arrowRight 1s infinite;
    animation: arrowRight 1s infinite;
}

.section__slider .swiper-button-next {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
}

@media (min-width: 1200px) {
    .section__slider .swiper-button-next {
        right: 300px;
        background-color: #f2f3f3;
    }
}

.section__slider .swiper-button-prev {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
}

@media (min-width: 1200px) {
    .section__slider .swiper-button-prev {
        bottom: 74px;
        background-color: #f2f3f3;
    }
}

.section__slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.section__slider .swiper-slide__block {
    width: 100%;
    margin: 0 auto;
    height: 100%;
    text-align: left;
}

.section__slider .swiper-slide__block .swiper-slide__block__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.section__slider .swiper-slide__block .swiper-slide__block__img a {
    display: block;
    width: 100%;
    height: 100%;
}

@media (min-width: 1200px) {
    .section__slider .swiper-slide__block .swiper-slide__block__img {
        width: 100%;
        max-height: 476px;
        height: 476px;
        /* max-width: 735px; */
        overflow: hidden;
        position: relative;
    }
}

.section__slider .swiper-slide__block .swiper-slide__block__img img {
    width: 100%;
    height: auto;
    transition: all .3s ease-in-out;
}

@media (min-width: 1200px) {
    .section__slider .swiper-slide__block .swiper-slide__block__img img {
        position: absolute;
        top: 0;
        left: 0;
        width: auto;
        height: 100%;
    }
}

.section__slider .swiper-slide__block .swiper-slide__block__img:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-filter: brightness(.5);
    filter: brightness(.5);
}

.section__slider .swiper-slide__block .swiper-slide__block__text {
    width: 85%;
    height: auto;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
}

@media (min-width: 768px) {
    .section__slider .swiper-slide__block .swiper-slide__block__text {
        margin-top: 100px;
    }
}

@media (min-width: 1200px) {
    .section__slider .swiper-slide__block .swiper-slide__block__text {
        width: 40%;
        height: 100%;
        max-height: 476px;
        max-width: 400px;
        position: absolute;
        background-color: transparent;
        top: 0;
        right: 0;
        margin-top: 0;
        padding: 0;
    }

    .section__slider .swiper-slide__block .swiper-slide__block__text:before {
        content: "";
        display: block;
        width: 200px;
        max-width: 408px;
        height: 100%;
        background-color: #e4e4e4;
        position: absolute;
        left: -100px;
    }
}

.section__slider .swiper-slide__block .main__title {
    color: #f2f3f3;
    text-transform: uppercase;
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    font-size: 2.6em;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 7px 7px 16px #d2d2d2;
}

.section__slider .swiper-slide__block .main__title span {
    color: #ff2d71;
}

@media (min-width: 768px) {
    .section__slider .swiper-slide__block .main__title {
        font-size: 3em;
    }
}

@media (min-width: 1200px) {
    .section__slider .swiper-slide__block .main__title {
        margin-top: 100px;
    }
}

.section__slider .swiper-slide__block .main__subtitle {
    margin: 2px 0;
    font-weight: 700;
    font-family: Montserrat, sans-serif;
    font-size: .9em;
    color: #f2f3f3;
}

@media (min-width: 768px) {
    .section__slider .swiper-slide__block .main__subtitle {
        font-size: .9em;
    }
}

.section__slider .swiper-slide__block .main__subtitle span {
    font-family: "Patua One", cursive;
    font-style: normal;
    color: #00a8af;
    letter-spacing: 1px;
}

.section__slider .swiper-slide__block .main__subtitle,
.section__slider .swiper-slide__block .main__title,
.section__slider .swiper-slide__block .paragraphe {
    color: #21272b;
    z-index: 2;
    position: relative;
}

.section__slider .swiper-slide__block .paragraphe {
    max-width: 413px;
    text-shadow: 7px 7px 16px #d2d2d2;
    margin-top: 24px;
}

.section__slider .swiper-slide__block .number {
    font-family: Montserrat, sans-serif;
    font-size: 12em;
    font-weight: 900;
    width: 100%;
    display: block;
    color: rgba(16, 47, 65, .04);
    position: relative;
    bottom: 100px;
    z-index: 1;
    text-align: right;
    margin: 0;
    line-height: 120px;
}

@media (min-width: 1200px) {
    .section__slider .swiper-slide__block .number {
        margin-top: 100px;
        font-size: 15em;
    }
}


.section__slider .loading {
    width: 100%;
    height: 100vh;
    background-color: #f8f8f8;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    overflow: hidden;
}

.section__slider .loading .loading__elements {
    width: 100%;
    height: 50%;
}

.section__slider .loading .loading__elements #progress {
    display: block;
    width: 300px;
    height: 30px;
    z-index: 1;
    font-family: Montserrat, sans-serif;
    background-color: #000;
    transition: all .3s ease-in-out;
}

.section__slider .loading .loading__elements #progress::-webkit-progress-bar {
    display: block;
    width: 100%;
    transition: all .3s;
}

.section__slider .loading .loading__elements #progress::-webkit-progress-value {
    background-color: rgba(131, 201, 207, .8);
    background: -webkit-linear-gradient(#00a8af, #83c9cf);
}

.section__slider .loading .loading__elements progress[value]::-webkit-progress-bar {
    background-color: #f8f8f8;
    border-radius: 2px;
    box-shadow: none;
}

.section__slider .loading .loading__elements #display {
    display: block;
    font-size: 5em;
    z-index: 2;
    font-family: Montserrat, sans-serif;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #21272b;
}


.section__slider {
    width: 100%;
    height: auto;
    background-color: #f2f3f3;
}

.nav-tabs[class*=-column].nav-pills-mini .nav-link {
    font-size: 12px;
    padding: 5px;
    border-radius: 4px;
}

.rounded-top-2 {
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

.h-200 {
    height: 200px !important;
}

.h-300 {
    height: 300px !important;
}

.font-14 {
    font-size: 14px !important;
}

.font-16 {
    font-size: 16px !important;
}

.font-18 {
    font-size: 18px !important;
}

.font-25 {
    font-size: 25px !important;
}

.font-12 {
    font-size: 12px !important;
}

.font-11 {
    font-size: 11px !important;
}

.font-10 {
    font-size: 10px !important;
}

.text-justify {
    text-align: justify !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.half-line-title {
    right: 0;
    position: absolute;
    height: 4px;
    background: #cf2a27;
    width: 35px;
    border-radius: 5px;
    position: absolute;
    bottom: -7px;
}

/* ShareMenu */
.share-menu {
    z-index: 999;
    position: relative;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.share-menu .share i {
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    background-color: #fff;
    border-radius: 2px;
    border: 1px dashed #ccc;
}

.share-menu .share:hover > i {
    background: #eeecf5;
}

.share-menu .share:hover.bottom .submenu li:nth-child(1) {
    opacity: 1;
    top: 50px;
    transform: rotate(0deg);
    transition-delay: 0.08s;
}

.share-menu .share:hover.bottom .submenu li:nth-child(2) {
    opacity: 1;
    top: 100px;
    transform: rotate(0deg);
    transition-delay: 0.16s;
}

.share-menu .share:hover.bottom .submenu li:nth-child(3) {
    opacity: 1;
    top: 150px;
    transform: rotate(0deg);
    transition-delay: 0.24s;
}

.share-menu .share:hover.bottom .submenu li:nth-child(4) {
    opacity: 1;
    top: 200px;
    transform: rotate(0deg);
    transition-delay: 0.32s;
}

.share-menu .share:hover.bottom .submenu li:nth-child(5) {
    opacity: 1;
    top: 250px;
    transform: rotate(0deg);
    transition-delay: 0.4s;
}

.share-menu .share:hover.left .submenu li:nth-child(1) {
    opacity: 1;
    left: -51px;
    transform: rotate(0deg);
    transition-delay: 0.5s;
    border-right: 1px dashed #ccc;
}

.share-menu .share:hover.left .submenu li:nth-child(2) {
    opacity: 1;
    left: -102px;
    transform: rotate(0deg);
    transition-delay: 1s;
    border-right: 1px dashed #ccc;
}

.share-menu .share:hover.left .submenu li:nth-child(3) {
    opacity: 1;
    left: -153px;
    transform: rotate(0deg);
    transition-delay: 1.5s;
    border-right: 1px dashed #ccc;
}

.share-menu .share:hover.left .submenu li:nth-child(4) {
    opacity: 1;
    left: -204px;
    transform: rotate(0deg);
    transition-delay: 2s;
    border-right: 1px dashed #ccc;
}

.share-menu .share:hover.left .submenu li:nth-child(5) {
    opacity: 1;
    left: -255px;
    transform: rotate(0deg);
    transition-delay: 2.5s;
    border-right: 1px dashed #ccc;
}

.share-menu .share:hover.right .submenu li:nth-child(1) {
    opacity: 1;
    left: 50px;
    transform: rotate(0deg);
    transition-delay: 0.08s;
    border-left: 1px dashed #ccc;
}

.share-menu .share:hover.right .submenu li:nth-child(2) {
    opacity: 1;
    left: 100px;
    transform: rotate(0deg);
    transition-delay: 0.16s;
    border-left: 1px dashed #ccc;
}

.share-menu .share:hover.right .submenu li:nth-child(3) {
    opacity: 1;
    left: 150px;
    transform: rotate(0deg);
    transition-delay: 0.24s;
    border-left: 1px dashed #ccc;
}

.share-menu .share:hover.right .submenu li:nth-child(4) {
    opacity: 1;
    left: 200px;
    transform: rotate(0deg);
    transition-delay: 0.32s;
    border-left: 1px dashed #ccc;
}

.share-menu .share:hover.right .submenu li:nth-child(5) {
    opacity: 1;
    left: 250px;
    transform: rotate(0deg);
    transition-delay: 0.4s;
    border-left: 1px dashed #ccc;
}

.share-menu .share:hover.top .submenu li:nth-child(1) {
    opacity: 1;
    top: -51px;
    transition-delay: 0.08s;
    transform: rotateY(0deg);
    border-bottom: 1px dashed #d9d9d9;
}

.share-menu .share:hover.top .submenu li:nth-child(2) {
    opacity: 1;
    top: -102px;
    transition-delay: 0.16s;
    transform: rotateY(0deg);
    border-bottom: 1px dashed #d9d9d9;
}

.share-menu .share:hover.top .submenu li:nth-child(3) {
    opacity: 1;
    top: -153px;
    transition-delay: 0.24s;
    transform: rotateY(0deg);
    border-bottom: 1px dashed #d9d9d9;
}

.share-menu .share:hover.top .submenu li:nth-child(4) {
    opacity: 1;
    top: -204px;
    transition-delay: 0.32s;
    transform: rotateY(0deg);
    border-bottom: 1px dashed #d9d9d9;
}

.share-menu .share:hover.top .submenu li:nth-child(5) {
    opacity: 1;
    top: -255px;
    transition-delay: 0.4s;
    transform: rotateY(0deg);
    border-bottom: 1px dashed #d9d9d9;
}

.share-menu .submenu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.share-menu .submenu li {
    transition: all ease-in-out 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.share-menu .submenu li a {
    color: #212121;
}

.share-menu .submenu li:hover i {
    color: #fff;
}

.share-menu .submenu li:hover .facebook i {
    background-color: #3b5999;
}

.share-menu .submenu li:hover .telegram i {
    background-color: #55acee;
}

.share-menu .submenu li:hover .whatsapp i {
    background-color: #28b272;
}

.share-menu .submenu li:hover .instagram i {
    background-color: #e4405f;
}

.share-menu .submenu li:nth-child(1) {
    transform: rotateX(45deg);
}

.share-menu .submenu li:nth-child(2) {
    transform: rotateX(90deg);
}

.share-menu .submenu li:nth-child(3) {
    transform: rotateX(135deg);
}

.share-menu .submenu li:nth-child(4) {
    transform: rotateX(180deg);
}

.share-menu.topLeft {
    top: 18px;
    left: 0px;
    float: left;
}

.share-menu.topRight {
    top: 10px;
    right: 10px;
}

.share-menu.bottomLeft {
    bottom: 10px;
    left: 10px;
}

.share-menu.bottomRight {
    bottom: 10px;
    right: 10px;
}

.list-categories li {
    position: relative;
}

.list-categories li:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 42%;
    height: 100%;
    background: #eff3f9;
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: skew(-25deg);
    -ms-transform: skew(-25deg);
    transform: skew(-25deg);
    z-index: -1;
}

/*--------- Pager2 ---------*/
.Pager2 .pagination .page-item .page-link:hover {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    border-radius: .125rem;
    background-color: #eee;
}

.Pager2 .pagination.pg-blue .page-item.active .page-link:hover {
    background-color: #cf2a27;
}

.Pager2 .pagination .page-item.active .page-link {
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    border-radius: .125rem;
    background-color: #cf2a27;
    color: #fff;
}

.Pager2 .pagination .page-item .page-link {
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    outline: 0;
    border: 0;
    background-color: transparent;
    font-size: .9rem;
    color: black;
}

.Pager2 .pagination .page-item.active .page-link {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
}

.Pager2 .page-link {
    border: none !important;
}

.Pager2 .page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0;
}

/* animation top slider */
.context {
    width: 100%;
    position: absolute;
    top: 50vh;

}

.context h1 {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 50px;
    backdrop-filter: blur(10px);
}

.top-slider.w-pattern:before {
    background: url('../img/root/pattern-3.png');
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.4;
}

.video-slide .btn-video {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.video-slide .btn-video .fa-play,
.video-slide .btn-video .fa-pause {
    width: 80px;
    height: 80px;
    background: rgba(133, 133, 137, 0.4);
    border-radius: 100%;
    text-align: center;
    padding-top: 27px;
    font-size: 30px;
    color: #fff;
    display: none;
    transition: transform 150ms linear;
}

.video-slide .btn-video .fa-play {
    padding-left: 5px;
}

.video-slide:hover .btn-video.pause .fa-play {
    display: none;
}

.video-slide:hover .btn-video.play .fa-pause {
    display: none;
}

.video-slide:hover .btn-video.pause .fa-play {
    display: block;
}

.video-slide:hover .btn-video.play .fa-pause {
    display: block;
}


.area {
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
    width: 100%;
    height: 70vh;
    background-image: linear-gradient(to right top, #d16ba5, #c777b9, #ba83ca, #aa8fd8, #9a9ae1, #8aa7ec, #79b3f4, #69bff8, #52cffe, #41dfff, #46eefa, #5ffbf1);
    background-image: linear-gradient(109.6deg, rgba(156, 252, 248, 1) 11.2%, rgba(110, 123, 251, 1) 91.1%);
    background-image: linear-gradient(to right, #fc5c7d, #6a82fb);
    background: linear-gradient(to right, #4389A2, #5C258D);
    background-image: linear-gradient(to right top, #6d327c, #485DA6, #00a1ba, #00BF98, #36C486);
    background: linear-gradient(to right, #4ba5ff, #302c6f);
    background: linear-gradient(to right, #682b9f, #a60f20);
    background-image: linear-gradient(to top, #37beff, #383568);
    background-image: linear-gradient(to top, #728ffb, #383568);
    z-index: 2;
}

.area-bg-dark {
    padding: 100px 0;
    height: 100%;
    background-image: linear-gradient(to top, #1b2027, #313d4c);
}

.area .section-header-title {
    padding-bottom: 12px;
    margin-bottom: 60px;
    border-color: rgba(255, 255, 255, 0.19);
}

.area .banner {
    /* padding: 10em 0 8em 0; */
    text-align: center;
    /*width: 50%;*/
    min-width: 650px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    z-index: 4;
}

.area .banner .title {
    z-index: 5;
}

.area .banner .banner-border {
    width: 100%;
    margin: 0 auto;
    height: 47px;
    border: 4px solid #ffffff73 !important;
    border-bottom: 0 !important;
    border-start-start-radius: 10px;
    border-start-end-radius: 10px;
}

.area .banner .banner-title {
    margin: 0;
    font-size: 35px;
    color: #FFFFFF;
    text-align: center;
    font-weight: 300;
    padding: 10px 20px;
    line-height: 1.5;
    font-weight: bold;
    text-shadow: 0 0 2px #000;
}

.area .banner .banner-border.banner-border-bottom {
    border-top: 0 !important;
    border-bottom: 4px solid #ffffff73 !important;
    border-end-start-radius: 10px;
    border-end-end-radius: 10px;
    border-start-start-radius: 0px;
    border-start-end-radius: 0px;
}

.area .circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
}

.area .circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 80px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.area .circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.area .circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.area .circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.area .circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.area .circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.area .circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.area .circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.area .circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.area .circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.area .circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

/* ---- */

/* Ribbon */
.ribbon {
    width: 200px;
    height: 58px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    position: relative;
    right: -15px;

}

.ribbon.ribbon-rotate {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -10px;
    right: -10px;
    overflow: hidden;
}

.ribbon::before,
.ribbon::after {
    position: absolute;
    content: "";
    z-index: 0;
    display: block;
    border: 7px solid #76100e;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.ribbon.ribbon-rotate::before,
.ribbon.ribbon-rotate::after {
    z-index: -1;
    border-top-color: transparent;
    border-bottom-color: unset;
}

.ribbon::before {
    top: 0px;
    left: 14px;
}

.ribbon::after {
    bottom: 0;
    right: 0px;
}

.ribbon.ribbon-left {
    left: -15px;
    right: unset;
}

.ribbon.ribbon-left::before {
    bottom: 0px;
    left: 0;
    top: unset;
    border-left-color: transparent;
    border-right-color: unset;
}

.ribbon.ribbon-left::after {
    display: none;
}

.ribbon.ribbon-rotate::after {
    bottom: 14px;
    right: 0px;
}

.ribbon span {
    position: absolute;
    top: 0px;
    left: 0;
    width: 200px;
    background: #b50703;
    padding: 10px 0;
    color: #fff;
    text-align: center;
    font-size: 17px;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

.ribbon.ribbon-blue span {
    background: #115da6;
}

.ribbon-blue::before,
.ribbon-blue::after {
    border-color: #111d44;
    border-color: #111d44;
    border-bottom-color: transparent;
    border-right-color: transparent;
}

.ribbon.ribbon-rotate span {
    top: 30px;
    left: 0;
    transform: rotate(45deg);
}

.navbar-topbar .navbar-nav > .nav-item > .nav-link:active,
.navbar-topbar .navbar-nav > .nav-item > .nav-link:hover,
.navbar-topbar .navbar-nav > .nav-item > .nav-link:focus,
.navbar-topbar .navbar-nav > .nav-item > .nav-link:focus-visible {
    outline: none;
}

.header-title-2,
.list-category .header-title {
    color: #555;
    position: relative;
    font-size: 16px;
    padding: 0;
    margin-bottom: 15px;
    border-radius: 6px;
}

.header-title-2 .border,
.list-category .header-title .border {
    width: 100%;
    height: 1px;
    position: absolute;
    right: 0;
    left: 0;
    top: 13px;
    background: #dee1f0;
    z-index: -1;
}

.header-title-2 .title,
.list-category .header-title .title {
    background: #fff;
    padding: 10px 0px 10px 15px;
    font-size: 16px;
}

.header-title-2 .icon,
.list-category .header-title .icon {
    font-size: 13px;
    color: #4c4c4c;
}

.list-category .header-title-3 {
    border-bottom: 1px solid #dee1f0;
    padding-bottom: 10px;
    border-radius: 0;
    padding-top: 5px;
    margin-bottom: 12px;
}

.list-categories-1,
.list-category .list-group {
    margin: 0;
    font-size: 14px;
    list-style: none;
    padding: 0;
}

.list-categories-1 li,
.list-category .list-group li {
    margin-bottom: 0;
    padding: 10px;
    border: 0;
    background: #eff3f9;
    position: relative;
    margin-top: 7px;
    border-right: 3px solid #dadde1;
    border-radius: 4px;
}

.list-categories-1 li a,
.list-category .list-group li a {
    font-size: 14px;
    display: block;
}

.list-categories-1 li .icon,
.list-category .list-group li .icon {
    font-size: 7px;
    margin-left: 10px;
    color: #b3b6bb;
}

.list-categories-1 li .count,
.list-category .list-group li .count {
    /* background: #c3342f; */
    float: left;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    text-align: center;
    padding-top: 2px;
    background: #dce1e9;
    position: relative;
    top: -2px;
    color: #aba3a3;
}

.list-categories-1 li.active,
.list-category .list-group li.active,
.list-categories-1 li:hover,
.list-category .list-group li:hover {
    border-right: 3px solid #c9302b;
}

.list-categories-1 li.active .icon,
.list-category .list-group li.active .icon,
.list-categories-1 li:hover .icon,
.list-category .list-group li:hover .icon {
    color: #c6322d;
}

.list-categories-1 li.active .count,
.list-category .list-group li.active .count,
.list-categories-1 li:hover .count,
.list-category .list-group li:hover .count {
    color: #0e0e0e;
}

.list-category .list-group .list-item.item-exit {
    background: #cf2a27;
    color: #fff;
    border-color: #0000004f;
}

.list-category .list-group .list-item.item-exit a {
    color: #fff;
}

.list-category .list-group .list-item.item-exit:hover {
    background: #a7211e;
}

.list-simple .header-title {
    background: #eff3f9;
    padding: 0;
    color: #555;
    font-size: 16px;
    border-radius: 6px 6px 0 0;
    margin-bottom: 0;
    position: relative;
    padding: 10px 15px;
    font-size: 14px;
    text-align: right;
    padding-right: 0;
}

.list-simple .header-title .title {
    /* border-bottom: 3px solid #c3342f; */
    padding-bottom: 10px;
    padding-right: 15px;
    font-size: 18px;
    padding-left: 10px;
}

.list-simple .list-group {
    margin: 0px;
    font-size: 14px;
    list-style: none;
    padding: 0;
}

.list-simple .list-group li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    padding: 10px;
    /* background: #eff3f9; */
    position: relative;
    border-radius: 0px;
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.list-simple .list-group li a {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.list-simple .list-group li:last-child {
    border-bottom: 0;
}

.list-simple .list-group li .icon {
    font-size: 7px;
    margin-left: 10px;
    color: #b3b6bb;
}

.list-simple .list-group li .title {
    font-weight: normal;
}

.list-simple .list-group li:hover {
    background: #f7f7f9;
}

.list-simple .list-group li:hover .title {
    color: #000;
}

.list-simple .list-group li:hover .icon {
    color: #c6322d;
}

.breadcrumbs {
    text-align: right;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 15px;
    margin-top: 9px;
    border-radius: 6px;
    font-size: 14px;
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    display: flex;
}

.breadcrumbs li {
    display: inline-block;
    color: #fff;
    white-space: nowrap;
}

.breadcrumbs li a {
    color: rgba(255, 255, 255, 0.52);
}

.breadcrumbs li a:hover {
    color: #fff;
}

.breadcrumbs li a:after {
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 10px;
    margin: 5px;
    color: rgba(255, 255, 255, 0.52);
}

.breadcrumbs li:last-child a:after {
    display: none;
}

.title-logo {
    width: 16px;
}

/* pulse map */
/* .pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -5px 0 0 -5px;
	width: 10px;
	height: 10px;
	background: rgba(60, 141, 197, 0.8);
	border-radius: 999px;
}

.pulse::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	background: rgba(111, 183, 233, 0.2);
	opacity: 0;
	border-radius: 999px;
	-webkit-animation: animation-pulse 800ms linear infinite;
	-moz-animation: animation-pulse 800ms linear infinite;
	-o-animation: animation-pulse 800ms linear infinite;
	animation: animation-pulse 800ms linear infinite;
} */

.badge-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 66px solid #888;
    border-top-color: #302c6f;
    border-left: 66px solid transparent;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

.badge-corner .title {
    position: absolute;
    top: -58px;
    left: -59px;
    font-size: 12px;
    color: #fff;
    transform: rotate(45deg);
    /* font-weight: bold; */
    line-height: 1;
    text-align: center;
    width: 50px;
    height: 50px;
}

.badge-corner .line {
    width: 4px;
    background: #cf2a27;
    position: absolute;
    left: 15px;
    right: 30px;
    top: -89px;
    height: 119px;
    transform: rotate(-45deg);
}

.badge-light {
    background: #eff3f9;
    font-weight: normal;
    color: #555;
}

.ml-0 {
    margin-left: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.justify-left {
    justify-content: left;
}

.tender-content .title {
    font-size: 20px;
    line-height: 2;
}

.tender-content .tender-content-header .title {
    padding-left: 74px
}

.tender-content .share-menu.topLeft {
    left: 0;
}

.tender-content .tender-info {
    /* border-top: 3px solid #cf2a27;
	box-shadow: rgba(0, 0, 0, 0.22) 0px 2px 5px 0px; */
    margin: 0 auto;
    min-height: 130px;
    margin-bottom: 30px;
    position: relative;
    float: left;
    margin-right: 25px;
    margin-bottom: 15px;
}

.list-tender-info {
    list-style: none;
    padding: 0;
    text-align: center;
    color: #555;
    background: #fff;
    font-size: 16px;
    height: 100%;
    margin: 0;
    flex-direction: unset;
    display: block;
    border-right: 4px solid #c3342f;
    /* border-left: 3px solid #cf2a27; */
    box-shadow: rgba(0, 0, 0, 0.22) 0px 2px 5px 0px;
    border-radius: 8px;
}

.list-tender-info li {
    border-bottom: 1px dotted #c4c4c4;
    padding: 0 !important;
    margin: 0;
}

.list-tender-info li:nth-child(even) {
    background: #eceff3;
}

.list-tender-info li:last-child {
    border-bottom: 0;
}

.list-tender-info li .title {
    padding: 10px 15px;
    /* display: block; */
    border-left: 1px dotted #c4c4c4;
    font-size: 15px;
    /* font-weight: bold; */
    text-align: right;
}

.list-tender-info li .icon {
    font-size: 7px;
    color: #cf2a27;
    margin-left: 3px;
    position: relative;
    top: -1px;
}

.list-tender-info li .text {
    padding: 10px 20px;
    text-align: left;
    justify-content: left;
    -webkit-box-align: center;
    align-items: center;
}

/* page not found */
.page-not-found {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
}

.page-not-found .page-not-found-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.9;
    z-index: -1;
}

.page-not-found .notfound-info {
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
    max-height: 100%;
    background: rgba(255, 255, 255, 0.75);
    border: 20px solid rgba(16, 16, 50, 0.65);
    padding: 60px 20px 80px;
    border-radius: 50px;
}

.page-not-found .title {
    margin-bottom: 30px;
    font-size: 150px;
    color: rgba(16, 16, 50, 0.65);
    /* color: #383764; */
    font-family: fantasy;
    font-weight: bold;
}

.page-not-found .title-2 {
    color: rgba(16, 16, 50, 0.65);
}

.page-not-found .btn-back {
    color: #383764;
    font-size: 18px;
    margin-top: 30px;
    width: 100%;
    border: 2px solid #383666;
    font-weight: bold;
    padding: 15px;
    background: transparent;
}

.page-not-found .btn-back:hover {
    background: #fff;
    border-color: #383764;
    color: #100f28;
}

/* ---- */
.card-attach {
    border-right: 3px solid #c6322d;
    box-shadow: rgba(0, 0, 0, 0.22) 0px 2px 5px 0px;
    padding: 15px;
    background: #fff;
    cursor: pointer;
}

.card-attach .card-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
    padding: 0 0 15px;
    background: transparent;
    border-radius: 0;
}

.card-attach .card-header .icon {
    display: inline-block;
    background-image: linear-gradient(to top right, #781915, #cd3832);
    border-radius: 100%;
    width: 25px;
    height: 25px;
}

.card-attach .card-header .icon svg {
    height: 25px;
    fill: #ffffff;
}

.card-attach .card-body {
    padding: 0;
    direction: ltr;
}

.card-attach .card-body .badge {
    float: right;
    position: relative;
    top: 8px;
}

.card-attach .card-body .text-size {
    font-weight: bold;
    font-size: 24px;
    margin-right: 7px;
}

.card .card-body-flex {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.card .card-body-flex .top-content {
    flex-shrink: 0;
    flex-grow: 1;
}

.card .card-body-flex .bottom-content {
    flex-shrink: 0;
}

.btn-gray-light {
    background: #eff3f9;
    color: #575757;
    border: 1px solid #eee;
    display: block;
    width: 100%;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: normal;
}

.btn-gray-light:hover,
.btn-gray-light:focus,
.btn-gray-light:active {
    background: #e1e8f1;
    color: #000;
    border-color: #e4e5ed;
}

.btn-back {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: normal;
    border-radius: 4px;
    min-width: 120px;
    text-align: center;
    display: inline-block;
    color: #666;
    background: #eff3f9;
}

.btn-back:hover,
.btn-back:focus,
.btn-back:active {
    background: #d3d8df;
}

.btn-show {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: normal;
    border-radius: 4px;
    min-width: 120px;
    text-align: center;
    display: inline-block;
    color: #fff;
    background: #2e82ff;

}

.btn-show:hover,
.btn-show:focus,
.btn-show:active {
    background: #0c57c7;
    color: #fff;
}

.btn-save {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: normal;
    border-radius: 4px;
    min-width: 120px;
    text-align: center;
    display: inline-block;
    color: #fff;
    background: #168f35;

}

.btn-save:hover,
.btn-save:focus,
.btn-save:active {
    background: #106826;
    color: #fff;
}

.point {
    width: 40px;
    height: 40px;
    background: rgba(25, 118, 210, 0.4);
    border-radius: 50%;
    animation: blink 1s ease-in-out infinite none;
}

.washington {
    position: absolute;
    top: 180px;
    left: 670px;
}

.sanfrancisco {
    position: absolute;
    top: 200px;
    left: 20px;
}

.texas {
    position: absolute;
    top: 360px;
    left: 340px;
}

/* Dark Mode */
body.page-dark {
    background: #212224;
}

body.page-dark .navbar-topbar.navbar-dark {
    background-color: #303133;
    border-bottom: 3px solid #d22725;
}

body.page-dark .navbar-dark .dropdown-menu {
    background-color: #393a3c;
}

body.page-dark .navbar-top .navbar-nav:not(.nav-social) > .nav-item > .dropdown-menu > .navbar-nav > .nav-item > .nav-link {
    color: #fafafa;
}

body.page-dark .navbar-top .navbar-nav .dropdown-menu ul.nav .nav-item .nav-link:hover {
    background: #56575a;
}

body.page-dark .area .circles {
    z-index: -1;
}

body.page-dark .area .circles li {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0, .2);
}

body.page-dark .navbar-top .navbar-brand,
body.page-dark .navbar-top .navbar-brand:after {
    background: #212224;
}

body.page-dark .area-bg-dark {
    background: rgba(0, 0, 0, 0.24);
    padding: 70px 0 30px;
}

body.page-dark .input-group-search {
    width: 100%;
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

body.page-dark .input-group-search .form {
    display: inline-block;
    width: calc(100% - 60px);
    background: #fff;
}

body.page-dark .input-group-search input.search {
    height: 50px;
    background: #56575a;
    border: 0;
    padding: 15px;
    color: #fff;
}

body.page-dark .input-group-search .btn {
    padding: 15px 20px;
    height: 50px;
    width: 60px;
    float: left;
    background: #393a3c;
    font-size: 16px;
    color: #dddddd;
    display: inline-block;
    border: 0;
}

body.page-dark .input-group-search .btn:hover,
body.page-dark .input-group-search .btn:focus,
body.page-dark .input-group-search .btn:active {
    transform: unset;
    background: #2e2f31;
}

body.page-dark .header-title {
    background: #393a3c;
    color: #fff;
    padding: 15px 0px;
}

body.page-dark .list-category .header-title-3 {
    background: transparent;
    border-color: #56575a;
}

body.page-dark .list-category .header-title-3 .title {
    background: transparent;
    color: #fff;
    font-size: 18px;
}

body.page-dark .list-category .header-title-3 .title .icon {
    color: #fff;
}

body.page-dark .section-header .section-header-title {
    color: #fff;
    border-color: #56575a;
}

body.page-dark .section-header .section-header-title.title-mini .title {
    font-size: 22px;
    padding-bottom: 13px;
}

body.page-dark .list-category .list-group .list-item {
    background: #393a3c;
    color: #fff;
    border-color: #727272;
}

body.page-dark .list-category .list-group .list-item .list-link {
    color: #fff;
}

body.page-dark .list-category .list-group .list-item .icon {
    color: #727272;
}

body.page-dark .list-category .list-group .list-item.active {
    border-color: #c9302b;
}

body.page-dark .list-category .list-group .list-item.active .icon {
    color: #c9302b;
}

body.page-dark .share-menu .share i {
    background: #2e2f31;
    color: #fff;
    border-color: #56585a;
}

body.page-dark .summary {
    background: #393a3c;
    color: #c7c7c7;
    border: 0;
    border-right: 3px solid #d00502;
}

body.page-dark .card-img-right-mini {
    background: #303133;
    margin: 0;
    border-color: #393a3c !important;
}

body.page-dark .card-img-right-mini .card-title {
    color: #fdfdfd;
}

body.page-dark .card-img-right-mini .card-time {
    color: #bfbfbf;
}

body.page-dark ul.nav-fill {
    justify-content: center;
}

body.page-dark ul.nav-pills .nav-item {
    margin: 0 1px;
}

body.page-dark ul.nav-pills .nav-item .nav-link {
    background: #2e2f31;
    border-radius: 2px;
    color: #fff;
    padding: 12px;
    min-width: 150px;
    display: block;
    text-align: center;
    height: 50px;
}

body.page-dark ul.nav-pills .nav-item .nav-link.active {
    background: #393a3c;
}

body.page-dark .card-img-top-md {
    background: #303133;
}

body.page-dark .card-img-top-md .card-title {
    color: #eee;
}

body.page-dark .card-img-top-md .card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    padding: 12px 0 0;
}

body.page-dark .card-img-top-md .card-time {
    color: #bfbfbf;
}

body.page-dark .btn-border-transparent {
    width: 100%;
    color: #959595;
    border: 1px solid #464749;
    border-radius: 4px;
}

body.page-dark .btn-border-transparent:hover {
    background: #303133;
    color: #fff;
}

/* ------*/
.pin {
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50% 50% 50% 0;
    border-radius: 50% 50% 50% 0;
    background: green;
    position: absolute;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 50%;
    top: 50%;
    margin: -20px 0 0 -20px;
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    -ms-animation-name: bounce;
    animation-name: bounce;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    -ms-animation-duration: 1s;
    animation-duration: 1s;
}

.pin:after {
    content: '';
    background: #fff;
    position: absolute;
    left: 0;
    right: 37%;
    top: 37%;
    bottom: 0;
    width: 10px;
    border-radius: 100%;
    height: 10px;
}

.pulse {
    background: rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 14px;
    width: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: 11px 0px 0px -12px;
    -webkit-transform: rotateX(55deg);
    -moz-transform: rotateX(55deg);
    -o-transform: rotateX(55deg);
    -ms-transform: rotateX(55deg);
    transform: rotateX(55deg);
    /* z-index: -2; */
}

.pulse:after {
    content: "";
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 50px;
    width: 70px;
    position: absolute;
    margin: -13px 0 0 -13px;
    -webkit-animation: pulsate 1s ease-out;
    -moz-animation: pulsate 1s ease-out;
    -o-animation: pulsate 1s ease-out;
    -ms-animation: pulsate 1s ease-out;
    animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -webkit-box-shadow: 0 0 1px 2px #89849b;
    box-shadow: 0 0 1px 2px #89849b;
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1s;
    -o-animation-delay: 1.1s;
    -ms-animation-delay: 1.1s;
    animation-delay: 1.1s;
    left: -16px;
}

/*-----*/

.flex-center {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.flex-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.height-70vh {
    height: 70vh;
}

.summary {
    padding: 15px;
    font-size: 14px;
    color: #555;
    margin-bottom: 50px;
    border: 1px solid #f6f2f2;
    border-right: 3px solid #d00502;
    border-radius: 8px;
    background: #f9f9f9;
}

.bg-tender-bottom img {
    object-fit: contain;
    height: 35%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.section-w-rectangle .layout-content .layout-content-img .img-large {
    --img-height: 100%;
    transform: translateY(0px);
    transition-duration: 500ms;
    opacity: 1;
    border-radius: 50px;
    overflow: hidden;
}

.section-w-rectangle .layout-content .layout-content-img .img-small {
    width: 70%;
    height: auto;
    /* min-height: 420px; */
    min-height: 80%;
    top: 25%;
    right: -200px;
}

.section-w-rectangle .layout-content .layout-content-img .img-small img {
    box-shadow: 5px 5px 20px 0 rgba(0, 0, 0, 0.4);
    margin: 0 auto 0 -87px;
    border: 10px solid #fff;
    border-radius: 50px;
}

.section-w-rectangle .shape-rectangle {
    height: 173px;
    width: calc(((100% - 1140px) / 2) + 400px);
    margin: 60px auto 0 0;
    color: #111111;
    background-color: #cf2a27;
    position: absolute;
    left: 0;
    z-index: -1;
    top: 30%;
}

.section-w-rectangle.shape-right .shape-rectangle {
    left: unset;
    right: 0;
}

.section-w-rectangle .layout-content .layout-content-img .img-small.left {
    left: -200px;
    right: unset;
}

.hover-zoom-img:hover {
    background: #f7f7f7;
}

.hover-zoom-img img {
    transition: all 150ms linear;
}

.hover-zoom-img:hover img {
    transform: scale(1.1);
}

.hover-zoom-img:hover .img-16-9 {
    transform: scale(1.1);
}

.hover-zoom-img:hover .img-16-9 {
    transition: all 150ms linear;
}

.hover-zoom-img:hover .img-16-9 img {
    transform: translate(-50%, -50%);
}

.hover-zoom-img:hover .card-title {
    color: #333;
}

.border-5-white {
    border: 10px solid #fff;
}

a {
    cursor: pointer;
}

img {
    font-size: 10px;
    color: #ccc;
}

/* ---- */
.section-divider .top-waves {
    position: absolute;
    top: 0;
    transform: rotate(180deg);
    bottom: unset;
}

.section-divider .background-img {
    background: url('../img/saba117.jpg');
    background-attachment: fixed;
    background-size: cover;
}

.section-divider .background-color {
    background-color: #000;
    opacity: .7;
}

.section-divider .bottom-waves {
    position: absolute;
    bottom: 0;
}

.section-divider .text-feature .icon {
    font-size: 25px;
    color: #cf2a27;
    position: relative;
    top: 3px;
}

.bg-shape-3 {
    background-image: url('../img/root/bg-shape-3.png');
    background-color: #f0f3f6;
    background-position: center;
    background-size: cover;
}

.text-ellipsis {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* Footer */
.footer {
    position: relative;
    color: #000;
    background: url('../img/root/footer-bg-3a820.jpg?rev=2');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.footer-bg-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.15;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.footer .footer-top-waves {
    top: -100px;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.footer .section-title-footer {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.footer .about-img-small {
    position: absolute;
    top: 0;
    --img-height: 100%;
    width: 180px;
}

.footer .about-img-large {
    --img-height: 70%;
    transform: translateY(0px);
    transition-duration: 500ms;
    opacity: 1;
    width: 60%;
    float: left;
}

.footer .text-img-saba {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
}

.footer .footer-list {
    font-size: 14px;
    padding: 0;
}

.footer .footer-list .icon {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.42);
    width: 20px;
    height: 20px;
    margin-left: 5px;
}

.footer .footer-list .icon-small {
    font-size: 10px;
    margin-left: 8px;
    position: relative;
    top: 6px;
    color: #80848a;
}

.footer .footer-list .ltr-num {
    direction: ltr;
    float: left;
}

.ltr {
    direction: ltr;
}

.rtl {
    direction: rtl;
}

.footer .text-img-saba > img {
    left: 0;
    right: unset;
}

.footer .text-img-saba .title {
    background: #cf2a27;
    /* position: absolute; */
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    padding: 5px 15px;
    font-size: 14px;
    width: 100%;
    display: block;
}

.footer .text-img-saba .logo {
    background: #302c6f;
    display: block;
    text-align: center;
    color: #fff;
    padding: 9px 15px;
    font-size: 14px;
    width: 100%;
    height: 51px;
}

.footer .text-img-saba .logo img {
    height: 31px;
    max-width: 100%;
    position: relative;
    object-fit: contain;
}

.footer .footer-logo {
    margin-bottom: 0px;
    margin-top: 80px;
}

.footer .footer-logo .logo-saba {
    width: 100%;
    margin: 0 auto;
    height: 120px;
}

.footer .footer-logo .shoar {
    text-align: center;
    margin-top: 20px;
    display: inline-block;
    float: left;
}

.footer .footer-logo .shoar img {
    max-height: 120px;
}

.footer .footer-border-bottom {
    background: #cf2a27;
    width: 100%;
    height: 5px;
}

.footer .footer-copyright {
    background: #302c6f;
    width: 100%;
    height: 50px;
}

.footer .footer-copyright p {
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 13px 15px 10px;
    font-size: 13px;
}

.border-b-dashed {
    border-bottom: 1px dashed #c4c4c4;
}

.tender-item-icon {
    width: 12px;
    height: 12px;
    transform: rotate(-90deg);
}

.tender-item-icon .line-top {
    fill: #b1b1b1;
}

.tender-item-icon .line-bottom {
    fill: #878889;
}

.form-tender .modal-dialog {
    width: 700px;
    max-width: 100%;
}

.form-tender .modal-dialog .modal-header {
    padding: 15px;
}

.form-tender .modal-dialog .modal-header .close {
    padding: 10px 15px;
}

.form-tender .modal-tender-img {
    max-width: 100%;
    height: 250px;
}

.form-basic .list-information {
    border-color: #e5e8ea;
}

.list-information .list-item {
    width: 100%;
    display: block;
    padding: 15px;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.list-information .list-item:nth-child(even) {
    background: #f9f9f9;
}

.list-information .text {
    float: left;
}

.list-information .title {
}

.custom-form-label {
    width: 100%;
}

.form-basic .custom-form-label .label {
    color: #555;
    font-size: 14px;
    display: block;
}

.form-basic .star {
    color: #d50000;
    font-size: 12px;
    position: relative;
    top: 4px;
    margin-right: 5px;
}

.form-basic .form-control {
    background: #fafafa;
    border-radius: 8px;
    padding: 5px 15px;
    box-shadow: unset;
    border: 1px solid #eff3f9;
    font-size: 14px;
    height: 38px;
    text-align: right;
}

.form-basic .form-control::placeholder {
    color: #a0a4ad;
}

.form-basic .form-control-vercode {
    display: block;
    width: 100%;
    border-radius: 8px;
    height: 38px;
    border: 1px solid #eee;
}

.form-basic textarea.form-control {
    background: #fafafa;
    padding: 5px 15px;
    box-shadow: unset;
    border: 1px solid #eff3f9;
    font-size: 14px;
    height: 100px;
    border-radius: 8px;
}

.form-basic select.form-control,
.contact-form .form-basic select.form-control,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('../img/arrow-select.svg');
    background-repeat: no-repeat;
    background-position-y: 6px;
}

.head-banner {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.head-banner .banner-img {
    object-fit: cover;
    object-position: 50% 50%;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.head-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: block;
    background-color: #000;
    opacity: .4;
}

.last-no-mb:last-child {
    margin-bottom: 0 !important;
}

.contact-list {
    /* border: 1px solid #eee; */
    padding: 0;
    list-style: none;
    line-height: 2;
    font-size: 0;
    background-image: url('../img/root/bg-shape-3.png');
    background-color: #f0f3f6;
    background-position: bottom;
    background-size: cover;
}

.contact-list .item {
    font-size: 16px;
    border-bottom: 1px solid #f0f3f6;
    display: block;
    position: relative;
    /* padding: 15px 80px 15px 15px; */
    padding-right: 80px;
    margin-bottom: 10px;
    box-shadow: 0 0 1px rgba(12, 26, 75, 0.24), 0 3px 8px -1px rgba(50, 50, 71, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.contact-list .item .wrapper-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 80px;
    background: #f0f3f6;
}

.contact-list .item .icon {
    text-align: center;
    font-size: 20px;
    background: #eff3f9;
    height: 48px;
    width: 48px;
    border-radius: 100%;
    color: #323069;
    display: flex;
    /* color: #5f6670; */
}

.contact-list .item .texts {
    display: block;
    border-radius: 2px;
    padding: 15px;
    color: #17161a;
    font-size: 15px;
}

.contact-list .item .texts:after {
    display: block;
    clear: both;
    content: "";
}

.contact-list .item .texts .text {
    float: left;
}

.contact-form {
    background-image: url('../img/root/bg-shape-3.png');
    background-color: #f0f3f6;
    background-position: bottom;
    background-size: cover;
}

.contact-form .form-basic .custom-form-label .label {
    font-size: 15px;
}

.form-contact-us .btn-primary,
.contact-form form .btn-primary {
    padding: 10px 15px;
    min-width: 150px;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
}

.contact-form .form-basic .form-control,
.contact-form .form-basic textarea.form-control {
    background: rgba(250, 250, 250, 0.72);
}

.btn-lightblue {
    height: 50px;
    width: 180px;
    background: #4f66e8;
    border: 0;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 5px;
    text-align: center;
    padding: 15px;
    display: block;
    margin: 20px auto;
}

.btn-lightblue:active,
.btn-lightblue:focus,
.btn-lightblue:hover {
    background: #3c52c7;
    color: #fff;
}

/* Login */
.section-login {
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    position: relative;
}

.section-login .bg-login {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    /* background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e); */
    filter: unset;
    width: 100%;
    height: 100%;
}

.section-login .box-login {
    position: relative;
    width: 650px;
}

.section-login .panel-login {
    background: linear-gradient(to bottom, #0f0c29, #302b63, #24243e);
    padding: 0;
    box-shadow: 1px 2px 15px 0px rgba(0, 0, 0, 0.17);
    border: 0;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.section-login .box-login .panel-heading {
    padding-top: 25px;
}

.section-login .box-login .title {
    color: #fff;
    padding: 25px 15px;
    text-align: center;
    font-size: 20px;
    margin: 0;
}

.section-login .panel-body {
    border-radius: 60% / 10%;
    background: #fff;
    padding: 50px 30px 30px;
    border-end-end-radius: 0;
    border-end-start-radius: 0;
}

.section-login .form-btn .btn-dark-blue {
    width: 100%;
    text-align: center;
    display: block;
    padding: 10px 15px;
    background: #383568;
    display: block;
    border-radius: 6px;
    color: #fff;
}

.box-login .square {
    position: absolute;
    backdrop-filter: blur(5px);
    box-shadow: 0 25px 45px rgba(34, 32, 124, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(51, 67, 183, 0.14);
    border-bottom: 1px solid rgba(43, 39, 104, 0.12);
    background: rgba(83, 53, 157, 0.1);
    border-radius: 10px;
    animation: animate 10s linear infinite;
    animation-delay: calc(-1s * var(--i));
}


.box-login .square:nth-child(1) {
    top: -50px;
    right: -60px;
    width: 100px;
    height: 100px;
}

.box-login .square:nth-child(2) {
    top: 150px;
    left: -100px;
    width: 120px;
    height: 120px;
    z-index: 2;
}

.box-login .square:nth-child(3) {
    bottom: -40px;
    right: -40px;
    width: 70px;
    height: 70px;
    z-index: 0;
}

.box-login .square:nth-child(4) {
    bottom: -60px;
    left: 40px;
    width: 50px;
    height: 50px;
    z-index: 2;
}

.box-login .square:nth-child(5) {
    top: -50px;
    left: 120px;
    width: 50px;
    height: 50px;
    z-index: 0;
}

.box-login label {
    width: 100%;
    margin-bottom: 10px;
}

.box-login form .col-sm-11 {
    width: 100%;
}

.box-login form .form-control {
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 10px 15px;
    background: #f0f0f9;
    border: 1px solid #e1e1e7;
}

.box-login form [name="remember"] {
    margin-left: 7px;
    position: relative;
    top: 3px;
}

.box-login .form {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
}

.box-login .form h2 {
    position: relative;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.box-login .form h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background: #fff;
}

.box-login .form .inputBox {
    width: 100%;
    margin-top: 20px;
}

.box-login .help-block {
    color: #5c0f0f;
    background: #ffdede;
    display: block;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 15px;
}

.box-login .form .inputBox input {
    margin-bottom: 10px;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    outline: none;
    padding: 10px 20px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    letter-spacing: 1px;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.box-login .form .inputBox input[type="submit"] {
    background: #fff;
    color: #666;
    max-width: 100px;
    cursor: pointer;
    margin-bottom: 20px;
    font-weight: 600;
}


/* paginate */
.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination li {
    width: 35px;
    height: 35px;
    border: 1px solid #e7e7e8;
    text-align: center;
    border-radius: 100%;
    margin: 0 5px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    color: #fff;
}

.pagination li a {
    color: #666;
}

.pagination li.disabled {
    opacity: 1;
    color: #bcbbbd;
    border-color: #f3eeee;
}

.pagination li:hover {
    background: #eef2f6;
}

.pagination li a {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.pagination li.active {
    background: #cf2a27;
    border: 0;
}

.pagination li.active:hover {
    background: #ad1d18;
    border: 0;
}

.pagination li.active a {
    color: #fff;
}

.paginate-note {
    text-align: center;
    font-size: 12px;
    color: #9397ad;
}

.pagination li:first-child,
.pagination li:first-child a,
.pagination li:first-child span,
.pagination li:last-child,
.pagination li:last-child a,
.pagination li:last-child span {
    font-family: monospace;
}

/* Card Profile */

.card-profile {
    box-shadow: 0 10px 20px black;
    background-size: cover;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}

.card-profile .image {
    height: 150px;
    width: 150px;
    background-size: cover;
    border-radius: 50%;
    border: 8px solid white;
    position: relative;
    top: 180px;
    right: -40px;
    margin-left: 170px;
    box-shadow: 0 2px 15px #3a3636;
    border-width: 5px;
    transform: rotate(-25deg);
    overflow: hidden;
}

.card-profile .shape {
    height: 250px;
    width: 400px;
    background-image: url('../img/root/cubes.png');;
    background-color: #302c6f;
    margin-left: -20px;
    position: relative;
    top: -170px;
    transform: rotate(25deg);
    background-size: initial;
    background-repeat: repeat;
}

.card-profile .title-1 {
    font-size: 20px;
    border-bottom: 1px solid #eee;
    outline: 0;
    padding-bottom: 15px;
    margin: 0;
    margin-top: -50px;
    padding-top: 60px;
}

.card-profile .title-2 {
    font-size: 16px;
    background: #302c6f;
    padding: 15px;
    margin: 0;
    color: #fff;
}

/* navbar */
.navbar-top .navbar-nav .dropdown-menu ul.nav {
    padding: 15px;
}

.navbar-top .navbar-nav .dropdown-menu {
    padding: 0;
}

.navbar-top .navbar-nav .dropdown-menu ul.nav .nav-item .nav-link:hover {
    background: #f5f5f7;
}

.section__slider .container__center {
    width: 100%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.item-dropdown .icon {
    font-size: 12px;
    position: absolute;
    top: 26px;
    left: 2px;
    display: block;
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: 2.5rem;
    }

    h2,
    .h2 {
        font-size: 2rem;
    }

    h3,
    .h3 {
        font-size: 1.75rem;
    }

    h4,
    .h4 {
        font-size: 1.5rem;
    }

    legend {
        font-size: 1.5rem;
    }

    .display-1 {
        font-size: 5rem;
    }

    .display-2 {
        font-size: 4.5rem;
    }

    .display-3 {
        font-size: 4rem;
    }

    .display-4 {
        font-size: 3.5rem;
    }

    .display-5 {
        font-size: 3rem;
    }
}

@media (min-width: 620px) {

    .container-sm,
    .container {
        max-width: 540px;
    }
}

@media (min-width: 828px) {

    .container-md,
    .container-sm,
    .container {
        max-width: 720px;
    }
}

@media (min-width: 991px) {

    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1350px;
    }
}

@media (min-width: 620px) {
    .col-sm {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-sm-auto > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-sm-1 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-sm-2 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-sm-3 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-sm-4 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-sm-5 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-sm-6 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .row-cols-sm-7 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 14.2857142857%;
    }

    .col-sm-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-sm-0 {
        margin-right: 0;
    }

    .offset-sm-1 {
        margin-right: 8.33333333%;
    }

    .offset-sm-2 {
        margin-right: 16.66666667%;
    }

    .offset-sm-3 {
        margin-right: 25%;
    }

    .offset-sm-4 {
        margin-right: 33.33333333%;
    }

    .offset-sm-5 {
        margin-right: 41.66666667%;
    }

    .offset-sm-6 {
        margin-right: 50%;
    }

    .offset-sm-7 {
        margin-right: 58.33333333%;
    }

    .offset-sm-8 {
        margin-right: 66.66666667%;
    }

    .offset-sm-9 {
        margin-right: 75%;
    }

    .offset-sm-10 {
        margin-right: 83.33333333%;
    }

    .offset-sm-11 {
        margin-right: 91.66666667%;
    }

    .g-sm-0,
    .gx-sm-0 {
        --bs-gutter-x: 0;
    }

    .g-sm-0,
    .gy-sm-0 {
        --bs-gutter-y: 0;
    }

    .g-sm-1,
    .gx-sm-1 {
        --bs-gutter-x: 1px;
    }

    .g-sm-1,
    .gy-sm-1 {
        --bs-gutter-y: 1px;
    }

    .g-sm-2,
    .gx-sm-2 {
        --bs-gutter-x: 2px;
    }

    .g-sm-2,
    .gy-sm-2 {
        --bs-gutter-y: 2px;
    }

    .g-sm-3,
    .gx-sm-3 {
        --bs-gutter-x: 3px;
    }

    .g-sm-3,
    .gy-sm-3 {
        --bs-gutter-y: 3px;
    }

    .g-sm-4,
    .gx-sm-4 {
        --bs-gutter-x: 4px;
    }

    .g-sm-4,
    .gy-sm-4 {
        --bs-gutter-y: 4px;
    }

    .g-sm-5,
    .gx-sm-5 {
        --bs-gutter-x: 5px;
    }

    .g-sm-5,
    .gy-sm-5 {
        --bs-gutter-y: 5px;
    }

    .g-sm-6,
    .gx-sm-6 {
        --bs-gutter-x: 6px;
    }

    .g-sm-6,
    .gy-sm-6 {
        --bs-gutter-y: 6px;
    }

    .g-sm-7,
    .gx-sm-7 {
        --bs-gutter-x: 7px;
    }

    .g-sm-7,
    .gy-sm-7 {
        --bs-gutter-y: 7px;
    }

    .g-sm-8,
    .gx-sm-8 {
        --bs-gutter-x: 8px;
    }

    .g-sm-8,
    .gy-sm-8 {
        --bs-gutter-y: 8px;
    }

    .g-sm-9,
    .gx-sm-9 {
        --bs-gutter-x: 9px;
    }

    .g-sm-9,
    .gy-sm-9 {
        --bs-gutter-y: 9px;
    }

    .g-sm-10,
    .gx-sm-10 {
        --bs-gutter-x: 10px;
    }

    .g-sm-10,
    .gy-sm-10 {
        --bs-gutter-y: 10px;
    }

    .g-sm-11,
    .gx-sm-11 {
        --bs-gutter-x: 11px;
    }

    .g-sm-11,
    .gy-sm-11 {
        --bs-gutter-y: 11px;
    }

    .g-sm-12,
    .gx-sm-12 {
        --bs-gutter-x: 12px;
    }

    .g-sm-12,
    .gy-sm-12 {
        --bs-gutter-y: 12px;
    }

    .g-sm-13,
    .gx-sm-13 {
        --bs-gutter-x: 13px;
    }

    .g-sm-13,
    .gy-sm-13 {
        --bs-gutter-y: 13px;
    }

    .g-sm-15,
    .gx-sm-15 {
        --bs-gutter-x: 15px;
    }

    .g-sm-15,
    .gy-sm-15 {
        --bs-gutter-y: 15px;
    }

    .g-sm-17,
    .gx-sm-17 {
        --bs-gutter-x: 17px;
    }

    .g-sm-17,
    .gy-sm-17 {
        --bs-gutter-y: 17px;
    }

    .g-sm-18,
    .gx-sm-18 {
        --bs-gutter-x: 18px;
    }

    .g-sm-18,
    .gy-sm-18 {
        --bs-gutter-y: 18px;
    }

    .g-sm-20,
    .gx-sm-20 {
        --bs-gutter-x: 20px;
    }

    .g-sm-20,
    .gy-sm-20 {
        --bs-gutter-y: 20px;
    }

    .g-sm-25,
    .gx-sm-25 {
        --bs-gutter-x: 25px;
    }

    .g-sm-25,
    .gy-sm-25 {
        --bs-gutter-y: 25px;
    }

    .g-sm-30,
    .gx-sm-30 {
        --bs-gutter-x: 30px;
    }

    .g-sm-30,
    .gy-sm-30 {
        --bs-gutter-y: 30px;
    }

    .g-sm-35,
    .gx-sm-35 {
        --bs-gutter-x: 35px;
    }

    .g-sm-35,
    .gy-sm-35 {
        --bs-gutter-y: 35px;
    }

    .g-sm-40,
    .gx-sm-40 {
        --bs-gutter-x: 40px;
    }

    .g-sm-40,
    .gy-sm-40 {
        --bs-gutter-y: 40px;
    }

    .g-sm-45,
    .gx-sm-45 {
        --bs-gutter-x: 45px;
    }

    .g-sm-45,
    .gy-sm-45 {
        --bs-gutter-y: 45px;
    }

    .g-sm-50,
    .gx-sm-50 {
        --bs-gutter-x: 50px;
    }

    .g-sm-50,
    .gy-sm-50 {
        --bs-gutter-y: 50px;
    }

    .g-sm-55,
    .gx-sm-55 {
        --bs-gutter-x: 55px;
    }

    .g-sm-55,
    .gy-sm-55 {
        --bs-gutter-y: 55px;
    }

    .g-sm-60,
    .gx-sm-60 {
        --bs-gutter-x: 60px;
    }

    .g-sm-60,
    .gy-sm-60 {
        --bs-gutter-y: 60px;
    }

    .g-sm-65,
    .gx-sm-65 {
        --bs-gutter-x: 65px;
    }

    .g-sm-65,
    .gy-sm-65 {
        --bs-gutter-y: 65px;
    }

    .g-sm-70,
    .gx-sm-70 {
        --bs-gutter-x: 70px;
    }

    .g-sm-70,
    .gy-sm-70 {
        --bs-gutter-y: 70px;
    }

    .g-sm-75,
    .gx-sm-75 {
        --bs-gutter-x: 75px;
    }

    .g-sm-75,
    .gy-sm-75 {
        --bs-gutter-y: 75px;
    }

    .g-sm-80,
    .gx-sm-80 {
        --bs-gutter-x: 80px;
    }

    .g-sm-80,
    .gy-sm-80 {
        --bs-gutter-y: 80px;
    }

    .g-sm-90,
    .gx-sm-90 {
        --bs-gutter-x: 90px;
    }

    .g-sm-90,
    .gy-sm-90 {
        --bs-gutter-y: 90px;
    }

    .g-sm-95,
    .gx-sm-95 {
        --bs-gutter-x: 95px;
    }

    .g-sm-95,
    .gy-sm-95 {
        --bs-gutter-y: 95px;
    }

    .g-sm-100,
    .gx-sm-100 {
        --bs-gutter-x: 100px;
    }

    .g-sm-100,
    .gy-sm-100 {
        --bs-gutter-y: 100px;
    }

    .g-sm-110,
    .gx-sm-110 {
        --bs-gutter-x: 110px;
    }

    .g-sm-110,
    .gy-sm-110 {
        --bs-gutter-y: 110px;
    }

    .g-sm-115,
    .gx-sm-115 {
        --bs-gutter-x: 115px;
    }

    .g-sm-115,
    .gy-sm-115 {
        --bs-gutter-y: 115px;
    }

    .g-sm-120,
    .gx-sm-120 {
        --bs-gutter-x: 120px;
    }

    .g-sm-120,
    .gy-sm-120 {
        --bs-gutter-y: 120px;
    }

    .g-sm-130,
    .gx-sm-130 {
        --bs-gutter-x: 130px;
    }

    .g-sm-130,
    .gy-sm-130 {
        --bs-gutter-y: 130px;
    }

    .g-sm-150,
    .gx-sm-150 {
        --bs-gutter-x: 150px;
    }

    .g-sm-150,
    .gy-sm-150 {
        --bs-gutter-y: 150px;
    }

    .g-sm-160,
    .gx-sm-160 {
        --bs-gutter-x: 160px;
    }

    .g-sm-160,
    .gy-sm-160 {
        --bs-gutter-y: 160px;
    }

    .g-sm-180,
    .gx-sm-180 {
        --bs-gutter-x: 180px;
    }

    .g-sm-180,
    .gy-sm-180 {
        --bs-gutter-y: 180px;
    }

    .g-sm-190,
    .gx-sm-190 {
        --bs-gutter-x: 190px;
    }

    .g-sm-190,
    .gy-sm-190 {
        --bs-gutter-y: 190px;
    }

    .g-sm-200,
    .gx-sm-200 {
        --bs-gutter-x: 200px;
    }

    .g-sm-200,
    .gy-sm-200 {
        --bs-gutter-y: 200px;
    }

    .g-sm-210,
    .gx-sm-210 {
        --bs-gutter-x: 210px;
    }

    .g-sm-210,
    .gy-sm-210 {
        --bs-gutter-y: 210px;
    }

    .g-sm-235,
    .gx-sm-235 {
        --bs-gutter-x: 235px;
    }

    .g-sm-235,
    .gy-sm-235 {
        --bs-gutter-y: 235px;
    }

    .g-sm-240,
    .gx-sm-240 {
        --bs-gutter-x: 240px;
    }

    .g-sm-240,
    .gy-sm-240 {
        --bs-gutter-y: 240px;
    }

    .g-sm-270,
    .gx-sm-270 {
        --bs-gutter-x: 270px;
    }

    .g-sm-270,
    .gy-sm-270 {
        --bs-gutter-y: 270px;
    }

    .g-sm-290,
    .gx-sm-290 {
        --bs-gutter-x: 290px;
    }

    .g-sm-290,
    .gy-sm-290 {
        --bs-gutter-y: 290px;
    }

    .g-sm-300,
    .gx-sm-300 {
        --bs-gutter-x: 300px;
    }

    .g-sm-300,
    .gy-sm-300 {
        --bs-gutter-y: 300px;
    }
}

@media (min-width: 828px) {
    .col-md {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-md-auto > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-md-1 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-md-2 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-md-3 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-md-4 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-md-5 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-md-6 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .row-cols-md-7 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 14.2857142857%;
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-md-0 {
        margin-right: 0;
    }

    .offset-md-1 {
        margin-right: 8.33333333%;
    }

    .offset-md-2 {
        margin-right: 16.66666667%;
    }

    .offset-md-3 {
        margin-right: 25%;
    }

    .offset-md-4 {
        margin-right: 33.33333333%;
    }

    .offset-md-5 {
        margin-right: 41.66666667%;
    }

    .offset-md-6 {
        margin-right: 50%;
    }

    .offset-md-7 {
        margin-right: 58.33333333%;
    }

    .offset-md-8 {
        margin-right: 66.66666667%;
    }

    .offset-md-9 {
        margin-right: 75%;
    }

    .offset-md-10 {
        margin-right: 83.33333333%;
    }

    .offset-md-11 {
        margin-right: 91.66666667%;
    }

    .g-md-0,
    .gx-md-0 {
        --bs-gutter-x: 0;
    }

    .g-md-0,
    .gy-md-0 {
        --bs-gutter-y: 0;
    }

    .g-md-1,
    .gx-md-1 {
        --bs-gutter-x: 1px;
    }

    .g-md-1,
    .gy-md-1 {
        --bs-gutter-y: 1px;
    }

    .g-md-2,
    .gx-md-2 {
        --bs-gutter-x: 2px;
    }

    .g-md-2,
    .gy-md-2 {
        --bs-gutter-y: 2px;
    }

    .g-md-3,
    .gx-md-3 {
        --bs-gutter-x: 3px;
    }

    .g-md-3,
    .gy-md-3 {
        --bs-gutter-y: 3px;
    }

    .g-md-4,
    .gx-md-4 {
        --bs-gutter-x: 4px;
    }

    .g-md-4,
    .gy-md-4 {
        --bs-gutter-y: 4px;
    }

    .g-md-5,
    .gx-md-5 {
        --bs-gutter-x: 5px;
    }

    .g-md-5,
    .gy-md-5 {
        --bs-gutter-y: 5px;
    }

    .g-md-6,
    .gx-md-6 {
        --bs-gutter-x: 6px;
    }

    .g-md-6,
    .gy-md-6 {
        --bs-gutter-y: 6px;
    }

    .g-md-7,
    .gx-md-7 {
        --bs-gutter-x: 7px;
    }

    .g-md-7,
    .gy-md-7 {
        --bs-gutter-y: 7px;
    }

    .g-md-8,
    .gx-md-8 {
        --bs-gutter-x: 8px;
    }

    .g-md-8,
    .gy-md-8 {
        --bs-gutter-y: 8px;
    }

    .g-md-9,
    .gx-md-9 {
        --bs-gutter-x: 9px;
    }

    .g-md-9,
    .gy-md-9 {
        --bs-gutter-y: 9px;
    }

    .g-md-10,
    .gx-md-10 {
        --bs-gutter-x: 10px;
    }

    .g-md-10,
    .gy-md-10 {
        --bs-gutter-y: 10px;
    }

    .g-md-11,
    .gx-md-11 {
        --bs-gutter-x: 11px;
    }

    .g-md-11,
    .gy-md-11 {
        --bs-gutter-y: 11px;
    }

    .g-md-12,
    .gx-md-12 {
        --bs-gutter-x: 12px;
    }

    .g-md-12,
    .gy-md-12 {
        --bs-gutter-y: 12px;
    }

    .g-md-13,
    .gx-md-13 {
        --bs-gutter-x: 13px;
    }

    .g-md-13,
    .gy-md-13 {
        --bs-gutter-y: 13px;
    }

    .g-md-15,
    .gx-md-15 {
        --bs-gutter-x: 15px;
    }

    .g-md-15,
    .gy-md-15 {
        --bs-gutter-y: 15px;
    }

    .g-md-17,
    .gx-md-17 {
        --bs-gutter-x: 17px;
    }

    .g-md-17,
    .gy-md-17 {
        --bs-gutter-y: 17px;
    }

    .g-md-18,
    .gx-md-18 {
        --bs-gutter-x: 18px;
    }

    .g-md-18,
    .gy-md-18 {
        --bs-gutter-y: 18px;
    }

    .g-md-20,
    .gx-md-20 {
        --bs-gutter-x: 20px;
    }

    .g-md-20,
    .gy-md-20 {
        --bs-gutter-y: 20px;
    }

    .g-md-25,
    .gx-md-25 {
        --bs-gutter-x: 25px;
    }

    .g-md-25,
    .gy-md-25 {
        --bs-gutter-y: 25px;
    }

    .g-md-30,
    .gx-md-30 {
        --bs-gutter-x: 30px;
    }

    .g-md-30,
    .gy-md-30 {
        --bs-gutter-y: 30px;
    }

    .g-md-35,
    .gx-md-35 {
        --bs-gutter-x: 35px;
    }

    .g-md-35,
    .gy-md-35 {
        --bs-gutter-y: 35px;
    }

    .g-md-40,
    .gx-md-40 {
        --bs-gutter-x: 40px;
    }

    .g-md-40,
    .gy-md-40 {
        --bs-gutter-y: 40px;
    }

    .g-md-45,
    .gx-md-45 {
        --bs-gutter-x: 45px;
    }

    .g-md-45,
    .gy-md-45 {
        --bs-gutter-y: 45px;
    }

    .g-md-50,
    .gx-md-50 {
        --bs-gutter-x: 50px;
    }

    .g-md-50,
    .gy-md-50 {
        --bs-gutter-y: 50px;
    }

    .g-md-55,
    .gx-md-55 {
        --bs-gutter-x: 55px;
    }

    .g-md-55,
    .gy-md-55 {
        --bs-gutter-y: 55px;
    }

    .g-md-60,
    .gx-md-60 {
        --bs-gutter-x: 60px;
    }

    .g-md-60,
    .gy-md-60 {
        --bs-gutter-y: 60px;
    }

    .g-md-65,
    .gx-md-65 {
        --bs-gutter-x: 65px;
    }

    .g-md-65,
    .gy-md-65 {
        --bs-gutter-y: 65px;
    }

    .g-md-70,
    .gx-md-70 {
        --bs-gutter-x: 70px;
    }

    .g-md-70,
    .gy-md-70 {
        --bs-gutter-y: 70px;
    }

    .g-md-75,
    .gx-md-75 {
        --bs-gutter-x: 75px;
    }

    .g-md-75,
    .gy-md-75 {
        --bs-gutter-y: 75px;
    }

    .g-md-80,
    .gx-md-80 {
        --bs-gutter-x: 80px;
    }

    .g-md-80,
    .gy-md-80 {
        --bs-gutter-y: 80px;
    }

    .g-md-90,
    .gx-md-90 {
        --bs-gutter-x: 90px;
    }

    .g-md-90,
    .gy-md-90 {
        --bs-gutter-y: 90px;
    }

    .g-md-95,
    .gx-md-95 {
        --bs-gutter-x: 95px;
    }

    .g-md-95,
    .gy-md-95 {
        --bs-gutter-y: 95px;
    }

    .g-md-100,
    .gx-md-100 {
        --bs-gutter-x: 100px;
    }

    .g-md-100,
    .gy-md-100 {
        --bs-gutter-y: 100px;
    }

    .g-md-110,
    .gx-md-110 {
        --bs-gutter-x: 110px;
    }

    .g-md-110,
    .gy-md-110 {
        --bs-gutter-y: 110px;
    }

    .g-md-115,
    .gx-md-115 {
        --bs-gutter-x: 115px;
    }

    .g-md-115,
    .gy-md-115 {
        --bs-gutter-y: 115px;
    }

    .g-md-120,
    .gx-md-120 {
        --bs-gutter-x: 120px;
    }

    .g-md-120,
    .gy-md-120 {
        --bs-gutter-y: 120px;
    }

    .g-md-130,
    .gx-md-130 {
        --bs-gutter-x: 130px;
    }

    .g-md-130,
    .gy-md-130 {
        --bs-gutter-y: 130px;
    }

    .g-md-150,
    .gx-md-150 {
        --bs-gutter-x: 150px;
    }

    .g-md-150,
    .gy-md-150 {
        --bs-gutter-y: 150px;
    }

    .g-md-160,
    .gx-md-160 {
        --bs-gutter-x: 160px;
    }

    .g-md-160,
    .gy-md-160 {
        --bs-gutter-y: 160px;
    }

    .g-md-180,
    .gx-md-180 {
        --bs-gutter-x: 180px;
    }

    .g-md-180,
    .gy-md-180 {
        --bs-gutter-y: 180px;
    }

    .g-md-190,
    .gx-md-190 {
        --bs-gutter-x: 190px;
    }

    .g-md-190,
    .gy-md-190 {
        --bs-gutter-y: 190px;
    }

    .g-md-200,
    .gx-md-200 {
        --bs-gutter-x: 200px;
    }

    .g-md-200,
    .gy-md-200 {
        --bs-gutter-y: 200px;
    }

    .g-md-210,
    .gx-md-210 {
        --bs-gutter-x: 210px;
    }

    .g-md-210,
    .gy-md-210 {
        --bs-gutter-y: 210px;
    }

    .g-md-235,
    .gx-md-235 {
        --bs-gutter-x: 235px;
    }

    .g-md-235,
    .gy-md-235 {
        --bs-gutter-y: 235px;
    }

    .g-md-240,
    .gx-md-240 {
        --bs-gutter-x: 240px;
    }

    .g-md-240,
    .gy-md-240 {
        --bs-gutter-y: 240px;
    }

    .g-md-270,
    .gx-md-270 {
        --bs-gutter-x: 270px;
    }

    .g-md-270,
    .gy-md-270 {
        --bs-gutter-y: 270px;
    }

    .g-md-290,
    .gx-md-290 {
        --bs-gutter-x: 290px;
    }

    .g-md-290,
    .gy-md-290 {
        --bs-gutter-y: 290px;
    }

    .g-md-300,
    .gx-md-300 {
        --bs-gutter-x: 300px;
    }

    .g-md-300,
    .gy-md-300 {
        --bs-gutter-y: 300px;
    }
}

@media (min-width: 1024px) {
    .col-lg {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-lg-auto > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-lg-1 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-lg-2 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-lg-3 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-lg-4 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-lg-5 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-lg-6 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .row-cols-lg-7 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 14.2857142857%;
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-lg-0 {
        margin-right: 0;
    }

    .offset-lg-1 {
        margin-right: 8.33333333%;
    }

    .offset-lg-2 {
        margin-right: 16.66666667%;
    }

    .offset-lg-3 {
        margin-right: 25%;
    }

    .offset-lg-4 {
        margin-right: 33.33333333%;
    }

    .offset-lg-5 {
        margin-right: 41.66666667%;
    }

    .offset-lg-6 {
        margin-right: 50%;
    }

    .offset-lg-7 {
        margin-right: 58.33333333%;
    }

    .offset-lg-8 {
        margin-right: 66.66666667%;
    }

    .offset-lg-9 {
        margin-right: 75%;
    }

    .offset-lg-10 {
        margin-right: 83.33333333%;
    }

    .offset-lg-11 {
        margin-right: 91.66666667%;
    }

    .g-lg-0,
    .gx-lg-0 {
        --bs-gutter-x: 0;
    }

    .g-lg-0,
    .gy-lg-0 {
        --bs-gutter-y: 0;
    }

    .g-lg-1,
    .gx-lg-1 {
        --bs-gutter-x: 1px;
    }

    .g-lg-1,
    .gy-lg-1 {
        --bs-gutter-y: 1px;
    }

    .g-lg-2,
    .gx-lg-2 {
        --bs-gutter-x: 2px;
    }

    .g-lg-2,
    .gy-lg-2 {
        --bs-gutter-y: 2px;
    }

    .g-lg-3,
    .gx-lg-3 {
        --bs-gutter-x: 3px;
    }

    .g-lg-3,
    .gy-lg-3 {
        --bs-gutter-y: 3px;
    }

    .g-lg-4,
    .gx-lg-4 {
        --bs-gutter-x: 4px;
    }

    .g-lg-4,
    .gy-lg-4 {
        --bs-gutter-y: 4px;
    }

    .g-lg-5,
    .gx-lg-5 {
        --bs-gutter-x: 5px;
    }

    .g-lg-5,
    .gy-lg-5 {
        --bs-gutter-y: 5px;
    }

    .g-lg-6,
    .gx-lg-6 {
        --bs-gutter-x: 6px;
    }

    .g-lg-6,
    .gy-lg-6 {
        --bs-gutter-y: 6px;
    }

    .g-lg-7,
    .gx-lg-7 {
        --bs-gutter-x: 7px;
    }

    .g-lg-7,
    .gy-lg-7 {
        --bs-gutter-y: 7px;
    }

    .g-lg-8,
    .gx-lg-8 {
        --bs-gutter-x: 8px;
    }

    .g-lg-8,
    .gy-lg-8 {
        --bs-gutter-y: 8px;
    }

    .g-lg-9,
    .gx-lg-9 {
        --bs-gutter-x: 9px;
    }

    .g-lg-9,
    .gy-lg-9 {
        --bs-gutter-y: 9px;
    }

    .g-lg-10,
    .gx-lg-10 {
        --bs-gutter-x: 10px;
    }

    .g-lg-10,
    .gy-lg-10 {
        --bs-gutter-y: 10px;
    }

    .g-lg-11,
    .gx-lg-11 {
        --bs-gutter-x: 11px;
    }

    .g-lg-11,
    .gy-lg-11 {
        --bs-gutter-y: 11px;
    }

    .g-lg-12,
    .gx-lg-12 {
        --bs-gutter-x: 12px;
    }

    .g-lg-12,
    .gy-lg-12 {
        --bs-gutter-y: 12px;
    }

    .g-lg-13,
    .gx-lg-13 {
        --bs-gutter-x: 13px;
    }

    .g-lg-13,
    .gy-lg-13 {
        --bs-gutter-y: 13px;
    }

    .g-lg-15,
    .gx-lg-15 {
        --bs-gutter-x: 15px;
    }

    .g-lg-15,
    .gy-lg-15 {
        --bs-gutter-y: 15px;
    }

    .g-lg-17,
    .gx-lg-17 {
        --bs-gutter-x: 17px;
    }

    .g-lg-17,
    .gy-lg-17 {
        --bs-gutter-y: 17px;
    }

    .g-lg-18,
    .gx-lg-18 {
        --bs-gutter-x: 18px;
    }

    .g-lg-18,
    .gy-lg-18 {
        --bs-gutter-y: 18px;
    }

    .g-lg-20,
    .gx-lg-20 {
        --bs-gutter-x: 20px;
    }

    .g-lg-20,
    .gy-lg-20 {
        --bs-gutter-y: 20px;
    }

    .g-lg-25,
    .gx-lg-25 {
        --bs-gutter-x: 25px;
    }

    .g-lg-25,
    .gy-lg-25 {
        --bs-gutter-y: 25px;
    }

    .g-lg-30,
    .gx-lg-30 {
        --bs-gutter-x: 30px;
    }

    .g-lg-30,
    .gy-lg-30 {
        --bs-gutter-y: 30px;
    }

    .g-lg-35,
    .gx-lg-35 {
        --bs-gutter-x: 35px;
    }

    .g-lg-35,
    .gy-lg-35 {
        --bs-gutter-y: 35px;
    }

    .g-lg-40,
    .gx-lg-40 {
        --bs-gutter-x: 40px;
    }

    .g-lg-40,
    .gy-lg-40 {
        --bs-gutter-y: 40px;
    }

    .g-lg-45,
    .gx-lg-45 {
        --bs-gutter-x: 45px;
    }

    .g-lg-45,
    .gy-lg-45 {
        --bs-gutter-y: 45px;
    }

    .g-lg-50,
    .gx-lg-50 {
        --bs-gutter-x: 50px;
    }

    .g-lg-50,
    .gy-lg-50 {
        --bs-gutter-y: 50px;
    }

    .g-lg-55,
    .gx-lg-55 {
        --bs-gutter-x: 55px;
    }

    .g-lg-55,
    .gy-lg-55 {
        --bs-gutter-y: 55px;
    }

    .g-lg-60,
    .gx-lg-60 {
        --bs-gutter-x: 60px;
    }

    .g-lg-60,
    .gy-lg-60 {
        --bs-gutter-y: 60px;
    }

    .g-lg-65,
    .gx-lg-65 {
        --bs-gutter-x: 65px;
    }

    .g-lg-65,
    .gy-lg-65 {
        --bs-gutter-y: 65px;
    }

    .g-lg-70,
    .gx-lg-70 {
        --bs-gutter-x: 70px;
    }

    .g-lg-70,
    .gy-lg-70 {
        --bs-gutter-y: 70px;
    }

    .g-lg-75,
    .gx-lg-75 {
        --bs-gutter-x: 75px;
    }

    .g-lg-75,
    .gy-lg-75 {
        --bs-gutter-y: 75px;
    }

    .g-lg-80,
    .gx-lg-80 {
        --bs-gutter-x: 80px;
    }

    .g-lg-80,
    .gy-lg-80 {
        --bs-gutter-y: 80px;
    }

    .g-lg-90,
    .gx-lg-90 {
        --bs-gutter-x: 90px;
    }

    .g-lg-90,
    .gy-lg-90 {
        --bs-gutter-y: 90px;
    }

    .g-lg-95,
    .gx-lg-95 {
        --bs-gutter-x: 95px;
    }

    .g-lg-95,
    .gy-lg-95 {
        --bs-gutter-y: 95px;
    }

    .g-lg-100,
    .gx-lg-100 {
        --bs-gutter-x: 100px;
    }

    .g-lg-100,
    .gy-lg-100 {
        --bs-gutter-y: 100px;
    }

    .g-lg-110,
    .gx-lg-110 {
        --bs-gutter-x: 110px;
    }

    .g-lg-110,
    .gy-lg-110 {
        --bs-gutter-y: 110px;
    }

    .g-lg-115,
    .gx-lg-115 {
        --bs-gutter-x: 115px;
    }

    .g-lg-115,
    .gy-lg-115 {
        --bs-gutter-y: 115px;
    }

    .g-lg-120,
    .gx-lg-120 {
        --bs-gutter-x: 120px;
    }

    .g-lg-120,
    .gy-lg-120 {
        --bs-gutter-y: 120px;
    }

    .g-lg-130,
    .gx-lg-130 {
        --bs-gutter-x: 130px;
    }

    .g-lg-130,
    .gy-lg-130 {
        --bs-gutter-y: 130px;
    }

    .g-lg-150,
    .gx-lg-150 {
        --bs-gutter-x: 150px;
    }

    .g-lg-150,
    .gy-lg-150 {
        --bs-gutter-y: 150px;
    }

    .g-lg-160,
    .gx-lg-160 {
        --bs-gutter-x: 160px;
    }

    .g-lg-160,
    .gy-lg-160 {
        --bs-gutter-y: 160px;
    }

    .g-lg-180,
    .gx-lg-180 {
        --bs-gutter-x: 180px;
    }

    .g-lg-180,
    .gy-lg-180 {
        --bs-gutter-y: 180px;
    }

    .g-lg-190,
    .gx-lg-190 {
        --bs-gutter-x: 190px;
    }

    .g-lg-190,
    .gy-lg-190 {
        --bs-gutter-y: 190px;
    }

    .g-lg-200,
    .gx-lg-200 {
        --bs-gutter-x: 200px;
    }

    .g-lg-200,
    .gy-lg-200 {
        --bs-gutter-y: 200px;
    }

    .g-lg-210,
    .gx-lg-210 {
        --bs-gutter-x: 210px;
    }

    .g-lg-210,
    .gy-lg-210 {
        --bs-gutter-y: 210px;
    }

    .g-lg-235,
    .gx-lg-235 {
        --bs-gutter-x: 235px;
    }

    .g-lg-235,
    .gy-lg-235 {
        --bs-gutter-y: 235px;
    }

    .g-lg-240,
    .gx-lg-240 {
        --bs-gutter-x: 240px;
    }

    .g-lg-240,
    .gy-lg-240 {
        --bs-gutter-y: 240px;
    }

    .g-lg-270,
    .gx-lg-270 {
        --bs-gutter-x: 270px;
    }

    .g-lg-270,
    .gy-lg-270 {
        --bs-gutter-y: 270px;
    }

    .g-lg-290,
    .gx-lg-290 {
        --bs-gutter-x: 290px;
    }

    .g-lg-290,
    .gy-lg-290 {
        --bs-gutter-y: 290px;
    }

    .g-lg-300,
    .gx-lg-300 {
        --bs-gutter-x: 300px;
    }

    .g-lg-300,
    .gy-lg-300 {
        --bs-gutter-y: 300px;
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-xl-auto > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xl-1 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xl-2 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xl-3 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xl-4 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xl-5 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xl-6 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .row-cols-xl-7 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 14.2857142857%;
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xl-0 {
        margin-right: 0;
    }

    .offset-xl-1 {
        margin-right: 8.33333333%;
    }

    .offset-xl-2 {
        margin-right: 16.66666667%;
    }

    .offset-xl-3 {
        margin-right: 25%;
    }

    .offset-xl-4 {
        margin-right: 33.33333333%;
    }

    .offset-xl-5 {
        margin-right: 41.66666667%;
    }

    .offset-xl-6 {
        margin-right: 50%;
    }

    .offset-xl-7 {
        margin-right: 58.33333333%;
    }

    .offset-xl-8 {
        margin-right: 66.66666667%;
    }

    .offset-xl-9 {
        margin-right: 75%;
    }

    .offset-xl-10 {
        margin-right: 83.33333333%;
    }

    .offset-xl-11 {
        margin-right: 91.66666667%;
    }

    .g-xl-0,
    .gx-xl-0 {
        --bs-gutter-x: 0;
    }

    .g-xl-0,
    .gy-xl-0 {
        --bs-gutter-y: 0;
    }

    .g-xl-1,
    .gx-xl-1 {
        --bs-gutter-x: 1px;
    }

    .g-xl-1,
    .gy-xl-1 {
        --bs-gutter-y: 1px;
    }

    .g-xl-2,
    .gx-xl-2 {
        --bs-gutter-x: 2px;
    }

    .g-xl-2,
    .gy-xl-2 {
        --bs-gutter-y: 2px;
    }

    .g-xl-3,
    .gx-xl-3 {
        --bs-gutter-x: 3px;
    }

    .g-xl-3,
    .gy-xl-3 {
        --bs-gutter-y: 3px;
    }

    .g-xl-4,
    .gx-xl-4 {
        --bs-gutter-x: 4px;
    }

    .g-xl-4,
    .gy-xl-4 {
        --bs-gutter-y: 4px;
    }

    .g-xl-5,
    .gx-xl-5 {
        --bs-gutter-x: 5px;
    }

    .g-xl-5,
    .gy-xl-5 {
        --bs-gutter-y: 5px;
    }

    .g-xl-6,
    .gx-xl-6 {
        --bs-gutter-x: 6px;
    }

    .g-xl-6,
    .gy-xl-6 {
        --bs-gutter-y: 6px;
    }

    .g-xl-7,
    .gx-xl-7 {
        --bs-gutter-x: 7px;
    }

    .g-xl-7,
    .gy-xl-7 {
        --bs-gutter-y: 7px;
    }

    .g-xl-8,
    .gx-xl-8 {
        --bs-gutter-x: 8px;
    }

    .g-xl-8,
    .gy-xl-8 {
        --bs-gutter-y: 8px;
    }

    .g-xl-9,
    .gx-xl-9 {
        --bs-gutter-x: 9px;
    }

    .g-xl-9,
    .gy-xl-9 {
        --bs-gutter-y: 9px;
    }

    .g-xl-10,
    .gx-xl-10 {
        --bs-gutter-x: 10px;
    }

    .g-xl-10,
    .gy-xl-10 {
        --bs-gutter-y: 10px;
    }

    .g-xl-11,
    .gx-xl-11 {
        --bs-gutter-x: 11px;
    }

    .g-xl-11,
    .gy-xl-11 {
        --bs-gutter-y: 11px;
    }

    .g-xl-12,
    .gx-xl-12 {
        --bs-gutter-x: 12px;
    }

    .g-xl-12,
    .gy-xl-12 {
        --bs-gutter-y: 12px;
    }

    .g-xl-13,
    .gx-xl-13 {
        --bs-gutter-x: 13px;
    }

    .g-xl-13,
    .gy-xl-13 {
        --bs-gutter-y: 13px;
    }

    .g-xl-15,
    .gx-xl-15 {
        --bs-gutter-x: 15px;
    }

    .g-xl-15,
    .gy-xl-15 {
        --bs-gutter-y: 15px;
    }

    .g-xl-17,
    .gx-xl-17 {
        --bs-gutter-x: 17px;
    }

    .g-xl-17,
    .gy-xl-17 {
        --bs-gutter-y: 17px;
    }

    .g-xl-18,
    .gx-xl-18 {
        --bs-gutter-x: 18px;
    }

    .g-xl-18,
    .gy-xl-18 {
        --bs-gutter-y: 18px;
    }

    .g-xl-20,
    .gx-xl-20 {
        --bs-gutter-x: 20px;
    }

    .g-xl-20,
    .gy-xl-20 {
        --bs-gutter-y: 20px;
    }

    .g-xl-25,
    .gx-xl-25 {
        --bs-gutter-x: 25px;
    }

    .g-xl-25,
    .gy-xl-25 {
        --bs-gutter-y: 25px;
    }

    .g-xl-30,
    .gx-xl-30 {
        --bs-gutter-x: 30px;
    }

    .g-xl-30,
    .gy-xl-30 {
        --bs-gutter-y: 30px;
    }

    .g-xl-35,
    .gx-xl-35 {
        --bs-gutter-x: 35px;
    }

    .g-xl-35,
    .gy-xl-35 {
        --bs-gutter-y: 35px;
    }

    .g-xl-40,
    .gx-xl-40 {
        --bs-gutter-x: 40px;
    }

    .g-xl-40,
    .gy-xl-40 {
        --bs-gutter-y: 40px;
    }

    .g-xl-45,
    .gx-xl-45 {
        --bs-gutter-x: 45px;
    }

    .g-xl-45,
    .gy-xl-45 {
        --bs-gutter-y: 45px;
    }

    .g-xl-50,
    .gx-xl-50 {
        --bs-gutter-x: 50px;
    }

    .g-xl-50,
    .gy-xl-50 {
        --bs-gutter-y: 50px;
    }

    .g-xl-55,
    .gx-xl-55 {
        --bs-gutter-x: 55px;
    }

    .g-xl-55,
    .gy-xl-55 {
        --bs-gutter-y: 55px;
    }

    .g-xl-60,
    .gx-xl-60 {
        --bs-gutter-x: 60px;
    }

    .g-xl-60,
    .gy-xl-60 {
        --bs-gutter-y: 60px;
    }

    .g-xl-65,
    .gx-xl-65 {
        --bs-gutter-x: 65px;
    }

    .g-xl-65,
    .gy-xl-65 {
        --bs-gutter-y: 65px;
    }

    .g-xl-70,
    .gx-xl-70 {
        --bs-gutter-x: 70px;
    }

    .g-xl-70,
    .gy-xl-70 {
        --bs-gutter-y: 70px;
    }

    .g-xl-75,
    .gx-xl-75 {
        --bs-gutter-x: 75px;
    }

    .g-xl-75,
    .gy-xl-75 {
        --bs-gutter-y: 75px;
    }

    .g-xl-80,
    .gx-xl-80 {
        --bs-gutter-x: 80px;
    }

    .g-xl-80,
    .gy-xl-80 {
        --bs-gutter-y: 80px;
    }

    .g-xl-90,
    .gx-xl-90 {
        --bs-gutter-x: 90px;
    }

    .g-xl-90,
    .gy-xl-90 {
        --bs-gutter-y: 90px;
    }

    .g-xl-95,
    .gx-xl-95 {
        --bs-gutter-x: 95px;
    }

    .g-xl-95,
    .gy-xl-95 {
        --bs-gutter-y: 95px;
    }

    .g-xl-100,
    .gx-xl-100 {
        --bs-gutter-x: 100px;
    }

    .g-xl-100,
    .gy-xl-100 {
        --bs-gutter-y: 100px;
    }

    .g-xl-110,
    .gx-xl-110 {
        --bs-gutter-x: 110px;
    }

    .g-xl-110,
    .gy-xl-110 {
        --bs-gutter-y: 110px;
    }

    .g-xl-115,
    .gx-xl-115 {
        --bs-gutter-x: 115px;
    }

    .g-xl-115,
    .gy-xl-115 {
        --bs-gutter-y: 115px;
    }

    .g-xl-120,
    .gx-xl-120 {
        --bs-gutter-x: 120px;
    }

    .g-xl-120,
    .gy-xl-120 {
        --bs-gutter-y: 120px;
    }

    .g-xl-130,
    .gx-xl-130 {
        --bs-gutter-x: 130px;
    }

    .g-xl-130,
    .gy-xl-130 {
        --bs-gutter-y: 130px;
    }

    .g-xl-150,
    .gx-xl-150 {
        --bs-gutter-x: 150px;
    }

    .g-xl-150,
    .gy-xl-150 {
        --bs-gutter-y: 150px;
    }

    .g-xl-160,
    .gx-xl-160 {
        --bs-gutter-x: 160px;
    }

    .g-xl-160,
    .gy-xl-160 {
        --bs-gutter-y: 160px;
    }

    .g-xl-180,
    .gx-xl-180 {
        --bs-gutter-x: 180px;
    }

    .g-xl-180,
    .gy-xl-180 {
        --bs-gutter-y: 180px;
    }

    .g-xl-190,
    .gx-xl-190 {
        --bs-gutter-x: 190px;
    }

    .g-xl-190,
    .gy-xl-190 {
        --bs-gutter-y: 190px;
    }

    .g-xl-200,
    .gx-xl-200 {
        --bs-gutter-x: 200px;
    }

    .g-xl-200,
    .gy-xl-200 {
        --bs-gutter-y: 200px;
    }

    .g-xl-210,
    .gx-xl-210 {
        --bs-gutter-x: 210px;
    }

    .g-xl-210,
    .gy-xl-210 {
        --bs-gutter-y: 210px;
    }

    .g-xl-235,
    .gx-xl-235 {
        --bs-gutter-x: 235px;
    }

    .g-xl-235,
    .gy-xl-235 {
        --bs-gutter-y: 235px;
    }

    .g-xl-240,
    .gx-xl-240 {
        --bs-gutter-x: 240px;
    }

    .g-xl-240,
    .gy-xl-240 {
        --bs-gutter-y: 240px;
    }

    .g-xl-270,
    .gx-xl-270 {
        --bs-gutter-x: 270px;
    }

    .g-xl-270,
    .gy-xl-270 {
        --bs-gutter-y: 270px;
    }

    .g-xl-290,
    .gx-xl-290 {
        --bs-gutter-x: 290px;
    }

    .g-xl-290,
    .gy-xl-290 {
        --bs-gutter-y: 290px;
    }

    .g-xl-300,
    .gx-xl-300 {
        --bs-gutter-x: 300px;
    }

    .g-xl-300,
    .gy-xl-300 {
        --bs-gutter-y: 300px;
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xxl-1 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xxl-2 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xxl-3 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xxl-4 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xxl-5 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xxl-6 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .row-cols-xxl-7 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 14.2857142857%;
    }

    .col-xxl-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 100%;
    }

    .offset-xxl-0 {
        margin-right: 0;
    }

    .offset-xxl-1 {
        margin-right: 8.33333333%;
    }

    .offset-xxl-2 {
        margin-right: 16.66666667%;
    }

    .offset-xxl-3 {
        margin-right: 25%;
    }

    .offset-xxl-4 {
        margin-right: 33.33333333%;
    }

    .offset-xxl-5 {
        margin-right: 41.66666667%;
    }

    .offset-xxl-6 {
        margin-right: 50%;
    }

    .offset-xxl-7 {
        margin-right: 58.33333333%;
    }

    .offset-xxl-8 {
        margin-right: 66.66666667%;
    }

    .offset-xxl-9 {
        margin-right: 75%;
    }

    .offset-xxl-10 {
        margin-right: 83.33333333%;
    }

    .offset-xxl-11 {
        margin-right: 91.66666667%;
    }

    .g-xxl-0,
    .gx-xxl-0 {
        --bs-gutter-x: 0;
    }

    .g-xxl-0,
    .gy-xxl-0 {
        --bs-gutter-y: 0;
    }

    .g-xxl-1,
    .gx-xxl-1 {
        --bs-gutter-x: 1px;
    }

    .g-xxl-1,
    .gy-xxl-1 {
        --bs-gutter-y: 1px;
    }

    .g-xxl-2,
    .gx-xxl-2 {
        --bs-gutter-x: 2px;
    }

    .g-xxl-2,
    .gy-xxl-2 {
        --bs-gutter-y: 2px;
    }

    .g-xxl-3,
    .gx-xxl-3 {
        --bs-gutter-x: 3px;
    }

    .g-xxl-3,
    .gy-xxl-3 {
        --bs-gutter-y: 3px;
    }

    .g-xxl-4,
    .gx-xxl-4 {
        --bs-gutter-x: 4px;
    }

    .g-xxl-4,
    .gy-xxl-4 {
        --bs-gutter-y: 4px;
    }

    .g-xxl-5,
    .gx-xxl-5 {
        --bs-gutter-x: 5px;
    }

    .g-xxl-5,
    .gy-xxl-5 {
        --bs-gutter-y: 5px;
    }

    .g-xxl-6,
    .gx-xxl-6 {
        --bs-gutter-x: 6px;
    }

    .g-xxl-6,
    .gy-xxl-6 {
        --bs-gutter-y: 6px;
    }

    .g-xxl-7,
    .gx-xxl-7 {
        --bs-gutter-x: 7px;
    }

    .g-xxl-7,
    .gy-xxl-7 {
        --bs-gutter-y: 7px;
    }

    .g-xxl-8,
    .gx-xxl-8 {
        --bs-gutter-x: 8px;
    }

    .g-xxl-8,
    .gy-xxl-8 {
        --bs-gutter-y: 8px;
    }

    .g-xxl-9,
    .gx-xxl-9 {
        --bs-gutter-x: 9px;
    }

    .g-xxl-9,
    .gy-xxl-9 {
        --bs-gutter-y: 9px;
    }

    .g-xxl-10,
    .gx-xxl-10 {
        --bs-gutter-x: 10px;
    }

    .g-xxl-10,
    .gy-xxl-10 {
        --bs-gutter-y: 10px;
    }

    .g-xxl-11,
    .gx-xxl-11 {
        --bs-gutter-x: 11px;
    }

    .g-xxl-11,
    .gy-xxl-11 {
        --bs-gutter-y: 11px;
    }

    .g-xxl-12,
    .gx-xxl-12 {
        --bs-gutter-x: 12px;
    }

    .g-xxl-12,
    .gy-xxl-12 {
        --bs-gutter-y: 12px;
    }

    .g-xxl-13,
    .gx-xxl-13 {
        --bs-gutter-x: 13px;
    }

    .g-xxl-13,
    .gy-xxl-13 {
        --bs-gutter-y: 13px;
    }

    .g-xxl-15,
    .gx-xxl-15 {
        --bs-gutter-x: 15px;
    }

    .g-xxl-15,
    .gy-xxl-15 {
        --bs-gutter-y: 15px;
    }

    .g-xxl-17,
    .gx-xxl-17 {
        --bs-gutter-x: 17px;
    }

    .g-xxl-17,
    .gy-xxl-17 {
        --bs-gutter-y: 17px;
    }

    .g-xxl-18,
    .gx-xxl-18 {
        --bs-gutter-x: 18px;
    }

    .g-xxl-18,
    .gy-xxl-18 {
        --bs-gutter-y: 18px;
    }

    .g-xxl-20,
    .gx-xxl-20 {
        --bs-gutter-x: 20px;
    }

    .g-xxl-20,
    .gy-xxl-20 {
        --bs-gutter-y: 20px;
    }

    .g-xxl-25,
    .gx-xxl-25 {
        --bs-gutter-x: 25px;
    }

    .g-xxl-25,
    .gy-xxl-25 {
        --bs-gutter-y: 25px;
    }

    .g-xxl-30,
    .gx-xxl-30 {
        --bs-gutter-x: 30px;
    }

    .g-xxl-30,
    .gy-xxl-30 {
        --bs-gutter-y: 30px;
    }

    .g-xxl-35,
    .gx-xxl-35 {
        --bs-gutter-x: 35px;
    }

    .g-xxl-35,
    .gy-xxl-35 {
        --bs-gutter-y: 35px;
    }

    .g-xxl-40,
    .gx-xxl-40 {
        --bs-gutter-x: 40px;
    }

    .g-xxl-40,
    .gy-xxl-40 {
        --bs-gutter-y: 40px;
    }

    .g-xxl-45,
    .gx-xxl-45 {
        --bs-gutter-x: 45px;
    }

    .g-xxl-45,
    .gy-xxl-45 {
        --bs-gutter-y: 45px;
    }

    .g-xxl-50,
    .gx-xxl-50 {
        --bs-gutter-x: 50px;
    }

    .g-xxl-50,
    .gy-xxl-50 {
        --bs-gutter-y: 50px;
    }

    .g-xxl-55,
    .gx-xxl-55 {
        --bs-gutter-x: 55px;
    }

    .g-xxl-55,
    .gy-xxl-55 {
        --bs-gutter-y: 55px;
    }

    .g-xxl-60,
    .gx-xxl-60 {
        --bs-gutter-x: 60px;
    }

    .g-xxl-60,
    .gy-xxl-60 {
        --bs-gutter-y: 60px;
    }

    .g-xxl-65,
    .gx-xxl-65 {
        --bs-gutter-x: 65px;
    }

    .g-xxl-65,
    .gy-xxl-65 {
        --bs-gutter-y: 65px;
    }

    .g-xxl-70,
    .gx-xxl-70 {
        --bs-gutter-x: 70px;
    }

    .g-xxl-70,
    .gy-xxl-70 {
        --bs-gutter-y: 70px;
    }

    .g-xxl-75,
    .gx-xxl-75 {
        --bs-gutter-x: 75px;
    }

    .g-xxl-75,
    .gy-xxl-75 {
        --bs-gutter-y: 75px;
    }

    .g-xxl-80,
    .gx-xxl-80 {
        --bs-gutter-x: 80px;
    }

    .g-xxl-80,
    .gy-xxl-80 {
        --bs-gutter-y: 80px;
    }

    .g-xxl-90,
    .gx-xxl-90 {
        --bs-gutter-x: 90px;
    }

    .g-xxl-90,
    .gy-xxl-90 {
        --bs-gutter-y: 90px;
    }

    .g-xxl-95,
    .gx-xxl-95 {
        --bs-gutter-x: 95px;
    }

    .g-xxl-95,
    .gy-xxl-95 {
        --bs-gutter-y: 95px;
    }

    .g-xxl-100,
    .gx-xxl-100 {
        --bs-gutter-x: 100px;
    }

    .g-xxl-100,
    .gy-xxl-100 {
        --bs-gutter-y: 100px;
    }

    .g-xxl-110,
    .gx-xxl-110 {
        --bs-gutter-x: 110px;
    }

    .g-xxl-110,
    .gy-xxl-110 {
        --bs-gutter-y: 110px;
    }

    .g-xxl-115,
    .gx-xxl-115 {
        --bs-gutter-x: 115px;
    }

    .g-xxl-115,
    .gy-xxl-115 {
        --bs-gutter-y: 115px;
    }

    .g-xxl-120,
    .gx-xxl-120 {
        --bs-gutter-x: 120px;
    }

    .g-xxl-120,
    .gy-xxl-120 {
        --bs-gutter-y: 120px;
    }

    .g-xxl-130,
    .gx-xxl-130 {
        --bs-gutter-x: 130px;
    }

    .g-xxl-130,
    .gy-xxl-130 {
        --bs-gutter-y: 130px;
    }

    .g-xxl-150,
    .gx-xxl-150 {
        --bs-gutter-x: 150px;
    }

    .g-xxl-150,
    .gy-xxl-150 {
        --bs-gutter-y: 150px;
    }

    .g-xxl-160,
    .gx-xxl-160 {
        --bs-gutter-x: 160px;
    }

    .g-xxl-160,
    .gy-xxl-160 {
        --bs-gutter-y: 160px;
    }

    .g-xxl-180,
    .gx-xxl-180 {
        --bs-gutter-x: 180px;
    }

    .g-xxl-180,
    .gy-xxl-180 {
        --bs-gutter-y: 180px;
    }

    .g-xxl-190,
    .gx-xxl-190 {
        --bs-gutter-x: 190px;
    }

    .g-xxl-190,
    .gy-xxl-190 {
        --bs-gutter-y: 190px;
    }

    .g-xxl-200,
    .gx-xxl-200 {
        --bs-gutter-x: 200px;
    }

    .g-xxl-200,
    .gy-xxl-200 {
        --bs-gutter-y: 200px;
    }

    .g-xxl-210,
    .gx-xxl-210 {
        --bs-gutter-x: 210px;
    }

    .g-xxl-210,
    .gy-xxl-210 {
        --bs-gutter-y: 210px;
    }

    .g-xxl-235,
    .gx-xxl-235 {
        --bs-gutter-x: 235px;
    }

    .g-xxl-235,
    .gy-xxl-235 {
        --bs-gutter-y: 235px;
    }

    .g-xxl-240,
    .gx-xxl-240 {
        --bs-gutter-x: 240px;
    }

    .g-xxl-240,
    .gy-xxl-240 {
        --bs-gutter-y: 240px;
    }

    .g-xxl-270,
    .gx-xxl-270 {
        --bs-gutter-x: 270px;
    }

    .g-xxl-270,
    .gy-xxl-270 {
        --bs-gutter-y: 270px;
    }

    .g-xxl-290,
    .gx-xxl-290 {
        --bs-gutter-x: 290px;
    }

    .g-xxl-290,
    .gy-xxl-290 {
        --bs-gutter-y: 290px;
    }

    .g-xxl-300,
    .gx-xxl-300 {
        --bs-gutter-x: 300px;
    }

    .g-xxl-300,
    .gy-xxl-300 {
        --bs-gutter-y: 300px;
    }
}

@media (max-width: 619.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 827.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1023.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (min-width: 620px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem);
    }

    .modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 1024px) {

    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px;
    }
}

@media (max-width: 619.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 827.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 1023.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-header {
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }

    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }
}

@media (min-width: 620px) {
    .sticky-sm-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 828px) {
    .sticky-md-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 1024px) {
    .sticky-lg-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 1200px) {
    .sticky-xl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 1400px) {
    .sticky-xxl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

@media (min-width: 620px) {
    .float-sm-start {
        float: right !important;
    }

    .float-sm-end {
        float: left !important;
    }

    .float-sm-none {
        float: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-grid {
        display: grid !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .d-sm-none {
        display: none !important;
    }

    .flex-sm-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .flex-sm-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .gap-sm-0 {
        gap: 0 !important;
    }

    .gap-sm-1 {
        gap: 1px !important;
    }

    .gap-sm-2 {
        gap: 2px !important;
    }

    .gap-sm-3 {
        gap: 3px !important;
    }

    .gap-sm-4 {
        gap: 4px !important;
    }

    .gap-sm-5 {
        gap: 5px !important;
    }

    .gap-sm-6 {
        gap: 6px !important;
    }

    .gap-sm-7 {
        gap: 7px !important;
    }

    .gap-sm-8 {
        gap: 8px !important;
    }

    .gap-sm-9 {
        gap: 9px !important;
    }

    .gap-sm-10 {
        gap: 10px !important;
    }

    .gap-sm-11 {
        gap: 11px !important;
    }

    .gap-sm-12 {
        gap: 12px !important;
    }

    .gap-sm-13 {
        gap: 13px !important;
    }

    .gap-sm-15 {
        gap: 15px !important;
    }

    .gap-sm-17 {
        gap: 17px !important;
    }

    .gap-sm-18 {
        gap: 18px !important;
    }

    .gap-sm-20 {
        gap: 20px !important;
    }

    .gap-sm-25 {
        gap: 25px !important;
    }

    .gap-sm-30 {
        gap: 30px !important;
    }

    .gap-sm-35 {
        gap: 35px !important;
    }

    .gap-sm-40 {
        gap: 40px !important;
    }

    .gap-sm-45 {
        gap: 45px !important;
    }

    .gap-sm-50 {
        gap: 50px !important;
    }

    .gap-sm-55 {
        gap: 55px !important;
    }

    .gap-sm-60 {
        gap: 60px !important;
    }

    .gap-sm-65 {
        gap: 65px !important;
    }

    .gap-sm-70 {
        gap: 70px !important;
    }

    .gap-sm-75 {
        gap: 75px !important;
    }

    .gap-sm-80 {
        gap: 80px !important;
    }

    .gap-sm-90 {
        gap: 90px !important;
    }

    .gap-sm-95 {
        gap: 95px !important;
    }

    .gap-sm-100 {
        gap: 100px !important;
    }

    .gap-sm-110 {
        gap: 110px !important;
    }

    .gap-sm-115 {
        gap: 115px !important;
    }

    .gap-sm-120 {
        gap: 120px !important;
    }

    .gap-sm-130 {
        gap: 130px !important;
    }

    .gap-sm-150 {
        gap: 150px !important;
    }

    .gap-sm-160 {
        gap: 160px !important;
    }

    .gap-sm-180 {
        gap: 180px !important;
    }

    .gap-sm-190 {
        gap: 190px !important;
    }

    .gap-sm-200 {
        gap: 200px !important;
    }

    .gap-sm-210 {
        gap: 210px !important;
    }

    .gap-sm-235 {
        gap: 235px !important;
    }

    .gap-sm-240 {
        gap: 240px !important;
    }

    .gap-sm-270 {
        gap: 270px !important;
    }

    .gap-sm-290 {
        gap: 290px !important;
    }

    .gap-sm-300 {
        gap: 300px !important;
    }

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .justify-content-sm-evenly {
        -webkit-box-pack: space-evenly !important;
        -webkit-justify-content: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    .order-sm-first {
        -webkit-box-ordinal-group: 0 !important;
        -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }

    .order-sm-0 {
        -webkit-box-ordinal-group: 1 !important;
        -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }

    .order-sm-1 {
        -webkit-box-ordinal-group: 2 !important;
        -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .order-sm-2 {
        -webkit-box-ordinal-group: 3 !important;
        -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }

    .order-sm-3 {
        -webkit-box-ordinal-group: 4 !important;
        -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }

    .order-sm-4 {
        -webkit-box-ordinal-group: 5 !important;
        -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }

    .order-sm-5 {
        -webkit-box-ordinal-group: 6 !important;
        -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }

    .order-sm-last {
        -webkit-box-ordinal-group: 7 !important;
        -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }

    .m-sm-0 {
        margin: 0 !important;
    }

    .m-sm-1 {
        margin: 1px !important;
    }

    .m-sm-2 {
        margin: 2px !important;
    }

    .m-sm-3 {
        margin: 3px !important;
    }

    .m-sm-4 {
        margin: 4px !important;
    }

    .m-sm-5 {
        margin: 5px !important;
    }

    .m-sm-6 {
        margin: 6px !important;
    }

    .m-sm-7 {
        margin: 7px !important;
    }

    .m-sm-8 {
        margin: 8px !important;
    }

    .m-sm-9 {
        margin: 9px !important;
    }

    .m-sm-10 {
        margin: 10px !important;
    }

    .m-sm-11 {
        margin: 11px !important;
    }

    .m-sm-12 {
        margin: 12px !important;
    }

    .m-sm-13 {
        margin: 13px !important;
    }

    .m-sm-15 {
        margin: 15px !important;
    }

    .m-sm-17 {
        margin: 17px !important;
    }

    .m-sm-18 {
        margin: 18px !important;
    }

    .m-sm-20 {
        margin: 20px !important;
    }

    .m-sm-25 {
        margin: 25px !important;
    }

    .m-sm-30 {
        margin: 30px !important;
    }

    .m-sm-35 {
        margin: 35px !important;
    }

    .m-sm-40 {
        margin: 40px !important;
    }

    .m-sm-45 {
        margin: 45px !important;
    }

    .m-sm-50 {
        margin: 50px !important;
    }

    .m-sm-55 {
        margin: 55px !important;
    }

    .m-sm-60 {
        margin: 60px !important;
    }

    .m-sm-65 {
        margin: 65px !important;
    }

    .m-sm-70 {
        margin: 70px !important;
    }

    .m-sm-75 {
        margin: 75px !important;
    }

    .m-sm-80 {
        margin: 80px !important;
    }

    .m-sm-90 {
        margin: 90px !important;
    }

    .m-sm-95 {
        margin: 95px !important;
    }

    .m-sm-100 {
        margin: 100px !important;
    }

    .m-sm-110 {
        margin: 110px !important;
    }

    .m-sm-115 {
        margin: 115px !important;
    }

    .m-sm-120 {
        margin: 120px !important;
    }

    .m-sm-130 {
        margin: 130px !important;
    }

    .m-sm-150 {
        margin: 150px !important;
    }

    .m-sm-160 {
        margin: 160px !important;
    }

    .m-sm-180 {
        margin: 180px !important;
    }

    .m-sm-190 {
        margin: 190px !important;
    }

    .m-sm-200 {
        margin: 200px !important;
    }

    .m-sm-210 {
        margin: 210px !important;
    }

    .m-sm-235 {
        margin: 235px !important;
    }

    .m-sm-240 {
        margin: 240px !important;
    }

    .m-sm-270 {
        margin: 270px !important;
    }

    .m-sm-290 {
        margin: 290px !important;
    }

    .m-sm-300 {
        margin: 300px !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mx-sm-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-sm-1 {
        margin-left: 1px !important;
        margin-right: 1px !important;
    }

    .mx-sm-2 {
        margin-left: 2px !important;
        margin-right: 2px !important;
    }

    .mx-sm-3 {
        margin-left: 3px !important;
        margin-right: 3px !important;
    }

    .mx-sm-4 {
        margin-left: 4px !important;
        margin-right: 4px !important;
    }

    .mx-sm-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .mx-sm-6 {
        margin-left: 6px !important;
        margin-right: 6px !important;
    }

    .mx-sm-7 {
        margin-left: 7px !important;
        margin-right: 7px !important;
    }

    .mx-sm-8 {
        margin-left: 8px !important;
        margin-right: 8px !important;
    }

    .mx-sm-9 {
        margin-left: 9px !important;
        margin-right: 9px !important;
    }

    .mx-sm-10 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .mx-sm-11 {
        margin-left: 11px !important;
        margin-right: 11px !important;
    }

    .mx-sm-12 {
        margin-left: 12px !important;
        margin-right: 12px !important;
    }

    .mx-sm-13 {
        margin-left: 13px !important;
        margin-right: 13px !important;
    }

    .mx-sm-15 {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .mx-sm-17 {
        margin-left: 17px !important;
        margin-right: 17px !important;
    }

    .mx-sm-18 {
        margin-left: 18px !important;
        margin-right: 18px !important;
    }

    .mx-sm-20 {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .mx-sm-25 {
        margin-left: 25px !important;
        margin-right: 25px !important;
    }

    .mx-sm-30 {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .mx-sm-35 {
        margin-left: 35px !important;
        margin-right: 35px !important;
    }

    .mx-sm-40 {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .mx-sm-45 {
        margin-left: 45px !important;
        margin-right: 45px !important;
    }

    .mx-sm-50 {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .mx-sm-55 {
        margin-left: 55px !important;
        margin-right: 55px !important;
    }

    .mx-sm-60 {
        margin-left: 60px !important;
        margin-right: 60px !important;
    }

    .mx-sm-65 {
        margin-left: 65px !important;
        margin-right: 65px !important;
    }

    .mx-sm-70 {
        margin-left: 70px !important;
        margin-right: 70px !important;
    }

    .mx-sm-75 {
        margin-left: 75px !important;
        margin-right: 75px !important;
    }

    .mx-sm-80 {
        margin-left: 80px !important;
        margin-right: 80px !important;
    }

    .mx-sm-90 {
        margin-left: 90px !important;
        margin-right: 90px !important;
    }

    .mx-sm-95 {
        margin-left: 95px !important;
        margin-right: 95px !important;
    }

    .mx-sm-100 {
        margin-left: 100px !important;
        margin-right: 100px !important;
    }

    .mx-sm-110 {
        margin-left: 110px !important;
        margin-right: 110px !important;
    }

    .mx-sm-115 {
        margin-left: 115px !important;
        margin-right: 115px !important;
    }

    .mx-sm-120 {
        margin-left: 120px !important;
        margin-right: 120px !important;
    }

    .mx-sm-130 {
        margin-left: 130px !important;
        margin-right: 130px !important;
    }

    .mx-sm-150 {
        margin-left: 150px !important;
        margin-right: 150px !important;
    }

    .mx-sm-160 {
        margin-left: 160px !important;
        margin-right: 160px !important;
    }

    .mx-sm-180 {
        margin-left: 180px !important;
        margin-right: 180px !important;
    }

    .mx-sm-190 {
        margin-left: 190px !important;
        margin-right: 190px !important;
    }

    .mx-sm-200 {
        margin-left: 200px !important;
        margin-right: 200px !important;
    }

    .mx-sm-210 {
        margin-left: 210px !important;
        margin-right: 210px !important;
    }

    .mx-sm-235 {
        margin-left: 235px !important;
        margin-right: 235px !important;
    }

    .mx-sm-240 {
        margin-left: 240px !important;
        margin-right: 240px !important;
    }

    .mx-sm-270 {
        margin-left: 270px !important;
        margin-right: 270px !important;
    }

    .mx-sm-290 {
        margin-left: 290px !important;
        margin-right: 290px !important;
    }

    .mx-sm-300 {
        margin-left: 300px !important;
        margin-right: 300px !important;
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-sm-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-sm-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important;
    }

    .my-sm-2 {
        margin-top: 2px !important;
        margin-bottom: 2px !important;
    }

    .my-sm-3 {
        margin-top: 3px !important;
        margin-bottom: 3px !important;
    }

    .my-sm-4 {
        margin-top: 4px !important;
        margin-bottom: 4px !important;
    }

    .my-sm-5 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .my-sm-6 {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .my-sm-7 {
        margin-top: 7px !important;
        margin-bottom: 7px !important;
    }

    .my-sm-8 {
        margin-top: 8px !important;
        margin-bottom: 8px !important;
    }

    .my-sm-9 {
        margin-top: 9px !important;
        margin-bottom: 9px !important;
    }

    .my-sm-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .my-sm-11 {
        margin-top: 11px !important;
        margin-bottom: 11px !important;
    }

    .my-sm-12 {
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }

    .my-sm-13 {
        margin-top: 13px !important;
        margin-bottom: 13px !important;
    }

    .my-sm-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .my-sm-17 {
        margin-top: 17px !important;
        margin-bottom: 17px !important;
    }

    .my-sm-18 {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
    }

    .my-sm-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .my-sm-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important;
    }

    .my-sm-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .my-sm-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important;
    }

    .my-sm-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .my-sm-45 {
        margin-top: 45px !important;
        margin-bottom: 45px !important;
    }

    .my-sm-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .my-sm-55 {
        margin-top: 55px !important;
        margin-bottom: 55px !important;
    }

    .my-sm-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .my-sm-65 {
        margin-top: 65px !important;
        margin-bottom: 65px !important;
    }

    .my-sm-70 {
        margin-top: 70px !important;
        margin-bottom: 70px !important;
    }

    .my-sm-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important;
    }

    .my-sm-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important;
    }

    .my-sm-90 {
        margin-top: 90px !important;
        margin-bottom: 90px !important;
    }

    .my-sm-95 {
        margin-top: 95px !important;
        margin-bottom: 95px !important;
    }

    .my-sm-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important;
    }

    .my-sm-110 {
        margin-top: 110px !important;
        margin-bottom: 110px !important;
    }

    .my-sm-115 {
        margin-top: 115px !important;
        margin-bottom: 115px !important;
    }

    .my-sm-120 {
        margin-top: 120px !important;
        margin-bottom: 120px !important;
    }

    .my-sm-130 {
        margin-top: 130px !important;
        margin-bottom: 130px !important;
    }

    .my-sm-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important;
    }

    .my-sm-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important;
    }

    .my-sm-180 {
        margin-top: 180px !important;
        margin-bottom: 180px !important;
    }

    .my-sm-190 {
        margin-top: 190px !important;
        margin-bottom: 190px !important;
    }

    .my-sm-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important;
    }

    .my-sm-210 {
        margin-top: 210px !important;
        margin-bottom: 210px !important;
    }

    .my-sm-235 {
        margin-top: 235px !important;
        margin-bottom: 235px !important;
    }

    .my-sm-240 {
        margin-top: 240px !important;
        margin-bottom: 240px !important;
    }

    .my-sm-270 {
        margin-top: 270px !important;
        margin-bottom: 270px !important;
    }

    .my-sm-290 {
        margin-top: 290px !important;
        margin-bottom: 290px !important;
    }

    .my-sm-300 {
        margin-top: 300px !important;
        margin-bottom: 300px !important;
    }

    .my-sm-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mt-sm-1 {
        margin-top: 1px !important;
    }

    .mt-sm-2 {
        margin-top: 2px !important;
    }

    .mt-sm-3 {
        margin-top: 3px !important;
    }

    .mt-sm-4 {
        margin-top: 4px !important;
    }

    .mt-sm-5 {
        margin-top: 5px !important;
    }

    .mt-sm-6 {
        margin-top: 6px !important;
    }

    .mt-sm-7 {
        margin-top: 7px !important;
    }

    .mt-sm-8 {
        margin-top: 8px !important;
    }

    .mt-sm-9 {
        margin-top: 9px !important;
    }

    .mt-sm-10 {
        margin-top: 10px !important;
    }

    .mt-sm-11 {
        margin-top: 11px !important;
    }

    .mt-sm-12 {
        margin-top: 12px !important;
    }

    .mt-sm-13 {
        margin-top: 13px !important;
    }

    .mt-sm-15 {
        margin-top: 15px !important;
    }

    .mt-sm-17 {
        margin-top: 17px !important;
    }

    .mt-sm-18 {
        margin-top: 18px !important;
    }

    .mt-sm-20 {
        margin-top: 20px !important;
    }

    .mt-sm-25 {
        margin-top: 25px !important;
    }

    .mt-sm-30 {
        margin-top: 30px !important;
    }

    .mt-sm-35 {
        margin-top: 35px !important;
    }

    .mt-sm-40 {
        margin-top: 40px !important;
    }

    .mt-sm-45 {
        margin-top: 45px !important;
    }

    .mt-sm-50 {
        margin-top: 50px !important;
    }

    .mt-sm-55 {
        margin-top: 55px !important;
    }

    .mt-sm-60 {
        margin-top: 60px !important;
    }

    .mt-sm-65 {
        margin-top: 65px !important;
    }

    .mt-sm-70 {
        margin-top: 70px !important;
    }

    .mt-sm-75 {
        margin-top: 75px !important;
    }

    .mt-sm-80 {
        margin-top: 80px !important;
    }

    .mt-sm-90 {
        margin-top: 90px !important;
    }

    .mt-sm-95 {
        margin-top: 95px !important;
    }

    .mt-sm-100 {
        margin-top: 100px !important;
    }

    .mt-sm-110 {
        margin-top: 110px !important;
    }

    .mt-sm-115 {
        margin-top: 115px !important;
    }

    .mt-sm-120 {
        margin-top: 120px !important;
    }

    .mt-sm-130 {
        margin-top: 130px !important;
    }

    .mt-sm-150 {
        margin-top: 150px !important;
    }

    .mt-sm-160 {
        margin-top: 160px !important;
    }

    .mt-sm-180 {
        margin-top: 180px !important;
    }

    .mt-sm-190 {
        margin-top: 190px !important;
    }

    .mt-sm-200 {
        margin-top: 200px !important;
    }

    .mt-sm-210 {
        margin-top: 210px !important;
    }

    .mt-sm-235 {
        margin-top: 235px !important;
    }

    .mt-sm-240 {
        margin-top: 240px !important;
    }

    .mt-sm-270 {
        margin-top: 270px !important;
    }

    .mt-sm-290 {
        margin-top: 290px !important;
    }

    .mt-sm-300 {
        margin-top: 300px !important;
    }

    .mt-sm-auto {
        margin-top: auto !important;
    }

    .me-sm-0 {
        margin-left: 0 !important;
    }

    .me-sm-1 {
        margin-left: 1px !important;
    }

    .me-sm-2 {
        margin-left: 2px !important;
    }

    .me-sm-3 {
        margin-left: 3px !important;
    }

    .me-sm-4 {
        margin-left: 4px !important;
    }

    .me-sm-5 {
        margin-left: 5px !important;
    }

    .me-sm-6 {
        margin-left: 6px !important;
    }

    .me-sm-7 {
        margin-left: 7px !important;
    }

    .me-sm-8 {
        margin-left: 8px !important;
    }

    .me-sm-9 {
        margin-left: 9px !important;
    }

    .me-sm-10 {
        margin-left: 10px !important;
    }

    .me-sm-11 {
        margin-left: 11px !important;
    }

    .me-sm-12 {
        margin-left: 12px !important;
    }

    .me-sm-13 {
        margin-left: 13px !important;
    }

    .me-sm-15 {
        margin-left: 15px !important;
    }

    .me-sm-17 {
        margin-left: 17px !important;
    }

    .me-sm-18 {
        margin-left: 18px !important;
    }

    .me-sm-20 {
        margin-left: 20px !important;
    }

    .me-sm-25 {
        margin-left: 25px !important;
    }

    .me-sm-30 {
        margin-left: 30px !important;
    }

    .me-sm-35 {
        margin-left: 35px !important;
    }

    .me-sm-40 {
        margin-left: 40px !important;
    }

    .me-sm-45 {
        margin-left: 45px !important;
    }

    .me-sm-50 {
        margin-left: 50px !important;
    }

    .me-sm-55 {
        margin-left: 55px !important;
    }

    .me-sm-60 {
        margin-left: 60px !important;
    }

    .me-sm-65 {
        margin-left: 65px !important;
    }

    .me-sm-70 {
        margin-left: 70px !important;
    }

    .me-sm-75 {
        margin-left: 75px !important;
    }

    .me-sm-80 {
        margin-left: 80px !important;
    }

    .me-sm-90 {
        margin-left: 90px !important;
    }

    .me-sm-95 {
        margin-left: 95px !important;
    }

    .me-sm-100 {
        margin-left: 100px !important;
    }

    .me-sm-110 {
        margin-left: 110px !important;
    }

    .me-sm-115 {
        margin-left: 115px !important;
    }

    .me-sm-120 {
        margin-left: 120px !important;
    }

    .me-sm-130 {
        margin-left: 130px !important;
    }

    .me-sm-150 {
        margin-left: 150px !important;
    }

    .me-sm-160 {
        margin-left: 160px !important;
    }

    .me-sm-180 {
        margin-left: 180px !important;
    }

    .me-sm-190 {
        margin-left: 190px !important;
    }

    .me-sm-200 {
        margin-left: 200px !important;
    }

    .me-sm-210 {
        margin-left: 210px !important;
    }

    .me-sm-235 {
        margin-left: 235px !important;
    }

    .me-sm-240 {
        margin-left: 240px !important;
    }

    .me-sm-270 {
        margin-left: 270px !important;
    }

    .me-sm-290 {
        margin-left: 290px !important;
    }

    .me-sm-300 {
        margin-left: 300px !important;
    }

    .me-sm-auto {
        margin-left: auto !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mb-sm-1 {
        margin-bottom: 1px !important;
    }

    .mb-sm-2 {
        margin-bottom: 2px !important;
    }

    .mb-sm-3 {
        margin-bottom: 3px !important;
    }

    .mb-sm-4 {
        margin-bottom: 4px !important;
    }

    .mb-sm-5 {
        margin-bottom: 5px !important;
    }

    .mb-sm-6 {
        margin-bottom: 6px !important;
    }

    .mb-sm-7 {
        margin-bottom: 7px !important;
    }

    .mb-sm-8 {
        margin-bottom: 8px !important;
    }

    .mb-sm-9 {
        margin-bottom: 9px !important;
    }

    .mb-sm-10 {
        margin-bottom: 10px !important;
    }

    .mb-sm-11 {
        margin-bottom: 11px !important;
    }

    .mb-sm-12 {
        margin-bottom: 12px !important;
    }

    .mb-sm-13 {
        margin-bottom: 13px !important;
    }

    .mb-sm-15 {
        margin-bottom: 15px !important;
    }

    .mb-sm-17 {
        margin-bottom: 17px !important;
    }

    .mb-sm-18 {
        margin-bottom: 18px !important;
    }

    .mb-sm-20 {
        margin-bottom: 20px !important;
    }

    .mb-sm-25 {
        margin-bottom: 25px !important;
    }

    .mb-sm-30 {
        margin-bottom: 30px !important;
    }

    .mb-sm-35 {
        margin-bottom: 35px !important;
    }

    .mb-sm-40 {
        margin-bottom: 40px !important;
    }

    .mb-sm-45 {
        margin-bottom: 45px !important;
    }

    .mb-sm-50 {
        margin-bottom: 50px !important;
    }

    .mb-sm-55 {
        margin-bottom: 55px !important;
    }

    .mb-sm-60 {
        margin-bottom: 60px !important;
    }

    .mb-sm-65 {
        margin-bottom: 65px !important;
    }

    .mb-sm-70 {
        margin-bottom: 70px !important;
    }

    .mb-sm-75 {
        margin-bottom: 75px !important;
    }

    .mb-sm-80 {
        margin-bottom: 80px !important;
    }

    .mb-sm-90 {
        margin-bottom: 90px !important;
    }

    .mb-sm-95 {
        margin-bottom: 95px !important;
    }

    .mb-sm-100 {
        margin-bottom: 100px !important;
    }

    .mb-sm-110 {
        margin-bottom: 110px !important;
    }

    .mb-sm-115 {
        margin-bottom: 115px !important;
    }

    .mb-sm-120 {
        margin-bottom: 120px !important;
    }

    .mb-sm-130 {
        margin-bottom: 130px !important;
    }

    .mb-sm-150 {
        margin-bottom: 150px !important;
    }

    .mb-sm-160 {
        margin-bottom: 160px !important;
    }

    .mb-sm-180 {
        margin-bottom: 180px !important;
    }

    .mb-sm-190 {
        margin-bottom: 190px !important;
    }

    .mb-sm-200 {
        margin-bottom: 200px !important;
    }

    .mb-sm-210 {
        margin-bottom: 210px !important;
    }

    .mb-sm-235 {
        margin-bottom: 235px !important;
    }

    .mb-sm-240 {
        margin-bottom: 240px !important;
    }

    .mb-sm-270 {
        margin-bottom: 270px !important;
    }

    .mb-sm-290 {
        margin-bottom: 290px !important;
    }

    .mb-sm-300 {
        margin-bottom: 300px !important;
    }

    .mb-sm-auto {
        margin-bottom: auto !important;
    }

    .ms-sm-0 {
        margin-right: 0 !important;
    }

    .ms-sm-1 {
        margin-right: 1px !important;
    }

    .ms-sm-2 {
        margin-right: 2px !important;
    }

    .ms-sm-3 {
        margin-right: 3px !important;
    }

    .ms-sm-4 {
        margin-right: 4px !important;
    }

    .ms-sm-5 {
        margin-right: 5px !important;
    }

    .ms-sm-6 {
        margin-right: 6px !important;
    }

    .ms-sm-7 {
        margin-right: 7px !important;
    }

    .ms-sm-8 {
        margin-right: 8px !important;
    }

    .ms-sm-9 {
        margin-right: 9px !important;
    }

    .ms-sm-10 {
        margin-right: 10px !important;
    }

    .ms-sm-11 {
        margin-right: 11px !important;
    }

    .ms-sm-12 {
        margin-right: 12px !important;
    }

    .ms-sm-13 {
        margin-right: 13px !important;
    }

    .ms-sm-15 {
        margin-right: 15px !important;
    }

    .ms-sm-17 {
        margin-right: 17px !important;
    }

    .ms-sm-18 {
        margin-right: 18px !important;
    }

    .ms-sm-20 {
        margin-right: 20px !important;
    }

    .ms-sm-25 {
        margin-right: 25px !important;
    }

    .ms-sm-30 {
        margin-right: 30px !important;
    }

    .ms-sm-35 {
        margin-right: 35px !important;
    }

    .ms-sm-40 {
        margin-right: 40px !important;
    }

    .ms-sm-45 {
        margin-right: 45px !important;
    }

    .ms-sm-50 {
        margin-right: 50px !important;
    }

    .ms-sm-55 {
        margin-right: 55px !important;
    }

    .ms-sm-60 {
        margin-right: 60px !important;
    }

    .ms-sm-65 {
        margin-right: 65px !important;
    }

    .ms-sm-70 {
        margin-right: 70px !important;
    }

    .ms-sm-75 {
        margin-right: 75px !important;
    }

    .ms-sm-80 {
        margin-right: 80px !important;
    }

    .ms-sm-90 {
        margin-right: 90px !important;
    }

    .ms-sm-95 {
        margin-right: 95px !important;
    }

    .ms-sm-100 {
        margin-right: 100px !important;
    }

    .ms-sm-110 {
        margin-right: 110px !important;
    }

    .ms-sm-115 {
        margin-right: 115px !important;
    }

    .ms-sm-120 {
        margin-right: 120px !important;
    }

    .ms-sm-130 {
        margin-right: 130px !important;
    }

    .ms-sm-150 {
        margin-right: 150px !important;
    }

    .ms-sm-160 {
        margin-right: 160px !important;
    }

    .ms-sm-180 {
        margin-right: 180px !important;
    }

    .ms-sm-190 {
        margin-right: 190px !important;
    }

    .ms-sm-200 {
        margin-right: 200px !important;
    }

    .ms-sm-210 {
        margin-right: 210px !important;
    }

    .ms-sm-235 {
        margin-right: 235px !important;
    }

    .ms-sm-240 {
        margin-right: 240px !important;
    }

    .ms-sm-270 {
        margin-right: 270px !important;
    }

    .ms-sm-290 {
        margin-right: 290px !important;
    }

    .ms-sm-300 {
        margin-right: 300px !important;
    }

    .ms-sm-auto {
        margin-right: auto !important;
    }

    .m-sm-n1 {
        margin: -1px !important;
    }

    .m-sm-n2 {
        margin: -2px !important;
    }

    .m-sm-n3 {
        margin: -3px !important;
    }

    .m-sm-n4 {
        margin: -4px !important;
    }

    .m-sm-n5 {
        margin: -5px !important;
    }

    .m-sm-n6 {
        margin: -6px !important;
    }

    .m-sm-n7 {
        margin: -7px !important;
    }

    .m-sm-n8 {
        margin: -8px !important;
    }

    .m-sm-n9 {
        margin: -9px !important;
    }

    .m-sm-n10 {
        margin: -10px !important;
    }

    .m-sm-n11 {
        margin: -11px !important;
    }

    .m-sm-n12 {
        margin: -12px !important;
    }

    .m-sm-n13 {
        margin: -13px !important;
    }

    .m-sm-n15 {
        margin: -15px !important;
    }

    .m-sm-n17 {
        margin: -17px !important;
    }

    .m-sm-n18 {
        margin: -18px !important;
    }

    .m-sm-n20 {
        margin: -20px !important;
    }

    .m-sm-n25 {
        margin: -25px !important;
    }

    .m-sm-n30 {
        margin: -30px !important;
    }

    .m-sm-n35 {
        margin: -35px !important;
    }

    .m-sm-n40 {
        margin: -40px !important;
    }

    .m-sm-n45 {
        margin: -45px !important;
    }

    .m-sm-n50 {
        margin: -50px !important;
    }

    .m-sm-n55 {
        margin: -55px !important;
    }

    .m-sm-n60 {
        margin: -60px !important;
    }

    .m-sm-n65 {
        margin: -65px !important;
    }

    .m-sm-n70 {
        margin: -70px !important;
    }

    .m-sm-n75 {
        margin: -75px !important;
    }

    .m-sm-n80 {
        margin: -80px !important;
    }

    .m-sm-n90 {
        margin: -90px !important;
    }

    .m-sm-n95 {
        margin: -95px !important;
    }

    .m-sm-n100 {
        margin: -100px !important;
    }

    .m-sm-n110 {
        margin: -110px !important;
    }

    .m-sm-n115 {
        margin: -115px !important;
    }

    .m-sm-n120 {
        margin: -120px !important;
    }

    .m-sm-n130 {
        margin: -130px !important;
    }

    .m-sm-n150 {
        margin: -150px !important;
    }

    .m-sm-n160 {
        margin: -160px !important;
    }

    .m-sm-n180 {
        margin: -180px !important;
    }

    .m-sm-n190 {
        margin: -190px !important;
    }

    .m-sm-n200 {
        margin: -200px !important;
    }

    .m-sm-n210 {
        margin: -210px !important;
    }

    .m-sm-n235 {
        margin: -235px !important;
    }

    .m-sm-n240 {
        margin: -240px !important;
    }

    .m-sm-n270 {
        margin: -270px !important;
    }

    .m-sm-n290 {
        margin: -290px !important;
    }

    .m-sm-n300 {
        margin: -300px !important;
    }

    .mx-sm-n1 {
        margin-left: -1px !important;
        margin-right: -1px !important;
    }

    .mx-sm-n2 {
        margin-left: -2px !important;
        margin-right: -2px !important;
    }

    .mx-sm-n3 {
        margin-left: -3px !important;
        margin-right: -3px !important;
    }

    .mx-sm-n4 {
        margin-left: -4px !important;
        margin-right: -4px !important;
    }

    .mx-sm-n5 {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .mx-sm-n6 {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .mx-sm-n7 {
        margin-left: -7px !important;
        margin-right: -7px !important;
    }

    .mx-sm-n8 {
        margin-left: -8px !important;
        margin-right: -8px !important;
    }

    .mx-sm-n9 {
        margin-left: -9px !important;
        margin-right: -9px !important;
    }

    .mx-sm-n10 {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .mx-sm-n11 {
        margin-left: -11px !important;
        margin-right: -11px !important;
    }

    .mx-sm-n12 {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }

    .mx-sm-n13 {
        margin-left: -13px !important;
        margin-right: -13px !important;
    }

    .mx-sm-n15 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .mx-sm-n17 {
        margin-left: -17px !important;
        margin-right: -17px !important;
    }

    .mx-sm-n18 {
        margin-left: -18px !important;
        margin-right: -18px !important;
    }

    .mx-sm-n20 {
        margin-left: -20px !important;
        margin-right: -20px !important;
    }

    .mx-sm-n25 {
        margin-left: -25px !important;
        margin-right: -25px !important;
    }

    .mx-sm-n30 {
        margin-left: -30px !important;
        margin-right: -30px !important;
    }

    .mx-sm-n35 {
        margin-left: -35px !important;
        margin-right: -35px !important;
    }

    .mx-sm-n40 {
        margin-left: -40px !important;
        margin-right: -40px !important;
    }

    .mx-sm-n45 {
        margin-left: -45px !important;
        margin-right: -45px !important;
    }

    .mx-sm-n50 {
        margin-left: -50px !important;
        margin-right: -50px !important;
    }

    .mx-sm-n55 {
        margin-left: -55px !important;
        margin-right: -55px !important;
    }

    .mx-sm-n60 {
        margin-left: -60px !important;
        margin-right: -60px !important;
    }

    .mx-sm-n65 {
        margin-left: -65px !important;
        margin-right: -65px !important;
    }

    .mx-sm-n70 {
        margin-left: -70px !important;
        margin-right: -70px !important;
    }

    .mx-sm-n75 {
        margin-left: -75px !important;
        margin-right: -75px !important;
    }

    .mx-sm-n80 {
        margin-left: -80px !important;
        margin-right: -80px !important;
    }

    .mx-sm-n90 {
        margin-left: -90px !important;
        margin-right: -90px !important;
    }

    .mx-sm-n95 {
        margin-left: -95px !important;
        margin-right: -95px !important;
    }

    .mx-sm-n100 {
        margin-left: -100px !important;
        margin-right: -100px !important;
    }

    .mx-sm-n110 {
        margin-left: -110px !important;
        margin-right: -110px !important;
    }

    .mx-sm-n115 {
        margin-left: -115px !important;
        margin-right: -115px !important;
    }

    .mx-sm-n120 {
        margin-left: -120px !important;
        margin-right: -120px !important;
    }

    .mx-sm-n130 {
        margin-left: -130px !important;
        margin-right: -130px !important;
    }

    .mx-sm-n150 {
        margin-left: -150px !important;
        margin-right: -150px !important;
    }

    .mx-sm-n160 {
        margin-left: -160px !important;
        margin-right: -160px !important;
    }

    .mx-sm-n180 {
        margin-left: -180px !important;
        margin-right: -180px !important;
    }

    .mx-sm-n190 {
        margin-left: -190px !important;
        margin-right: -190px !important;
    }

    .mx-sm-n200 {
        margin-left: -200px !important;
        margin-right: -200px !important;
    }

    .mx-sm-n210 {
        margin-left: -210px !important;
        margin-right: -210px !important;
    }

    .mx-sm-n235 {
        margin-left: -235px !important;
        margin-right: -235px !important;
    }

    .mx-sm-n240 {
        margin-left: -240px !important;
        margin-right: -240px !important;
    }

    .mx-sm-n270 {
        margin-left: -270px !important;
        margin-right: -270px !important;
    }

    .mx-sm-n290 {
        margin-left: -290px !important;
        margin-right: -290px !important;
    }

    .mx-sm-n300 {
        margin-left: -300px !important;
        margin-right: -300px !important;
    }

    .my-sm-n1 {
        margin-top: -1px !important;
        margin-bottom: -1px !important;
    }

    .my-sm-n2 {
        margin-top: -2px !important;
        margin-bottom: -2px !important;
    }

    .my-sm-n3 {
        margin-top: -3px !important;
        margin-bottom: -3px !important;
    }

    .my-sm-n4 {
        margin-top: -4px !important;
        margin-bottom: -4px !important;
    }

    .my-sm-n5 {
        margin-top: -5px !important;
        margin-bottom: -5px !important;
    }

    .my-sm-n6 {
        margin-top: -6px !important;
        margin-bottom: -6px !important;
    }

    .my-sm-n7 {
        margin-top: -7px !important;
        margin-bottom: -7px !important;
    }

    .my-sm-n8 {
        margin-top: -8px !important;
        margin-bottom: -8px !important;
    }

    .my-sm-n9 {
        margin-top: -9px !important;
        margin-bottom: -9px !important;
    }

    .my-sm-n10 {
        margin-top: -10px !important;
        margin-bottom: -10px !important;
    }

    .my-sm-n11 {
        margin-top: -11px !important;
        margin-bottom: -11px !important;
    }

    .my-sm-n12 {
        margin-top: -12px !important;
        margin-bottom: -12px !important;
    }

    .my-sm-n13 {
        margin-top: -13px !important;
        margin-bottom: -13px !important;
    }

    .my-sm-n15 {
        margin-top: -15px !important;
        margin-bottom: -15px !important;
    }

    .my-sm-n17 {
        margin-top: -17px !important;
        margin-bottom: -17px !important;
    }

    .my-sm-n18 {
        margin-top: -18px !important;
        margin-bottom: -18px !important;
    }

    .my-sm-n20 {
        margin-top: -20px !important;
        margin-bottom: -20px !important;
    }

    .my-sm-n25 {
        margin-top: -25px !important;
        margin-bottom: -25px !important;
    }

    .my-sm-n30 {
        margin-top: -30px !important;
        margin-bottom: -30px !important;
    }

    .my-sm-n35 {
        margin-top: -35px !important;
        margin-bottom: -35px !important;
    }

    .my-sm-n40 {
        margin-top: -40px !important;
        margin-bottom: -40px !important;
    }

    .my-sm-n45 {
        margin-top: -45px !important;
        margin-bottom: -45px !important;
    }

    .my-sm-n50 {
        margin-top: -50px !important;
        margin-bottom: -50px !important;
    }

    .my-sm-n55 {
        margin-top: -55px !important;
        margin-bottom: -55px !important;
    }

    .my-sm-n60 {
        margin-top: -60px !important;
        margin-bottom: -60px !important;
    }

    .my-sm-n65 {
        margin-top: -65px !important;
        margin-bottom: -65px !important;
    }

    .my-sm-n70 {
        margin-top: -70px !important;
        margin-bottom: -70px !important;
    }

    .my-sm-n75 {
        margin-top: -75px !important;
        margin-bottom: -75px !important;
    }

    .my-sm-n80 {
        margin-top: -80px !important;
        margin-bottom: -80px !important;
    }

    .my-sm-n90 {
        margin-top: -90px !important;
        margin-bottom: -90px !important;
    }

    .my-sm-n95 {
        margin-top: -95px !important;
        margin-bottom: -95px !important;
    }

    .my-sm-n100 {
        margin-top: -100px !important;
        margin-bottom: -100px !important;
    }

    .my-sm-n110 {
        margin-top: -110px !important;
        margin-bottom: -110px !important;
    }

    .my-sm-n115 {
        margin-top: -115px !important;
        margin-bottom: -115px !important;
    }

    .my-sm-n120 {
        margin-top: -120px !important;
        margin-bottom: -120px !important;
    }

    .my-sm-n130 {
        margin-top: -130px !important;
        margin-bottom: -130px !important;
    }

    .my-sm-n150 {
        margin-top: -150px !important;
        margin-bottom: -150px !important;
    }

    .my-sm-n160 {
        margin-top: -160px !important;
        margin-bottom: -160px !important;
    }

    .my-sm-n180 {
        margin-top: -180px !important;
        margin-bottom: -180px !important;
    }

    .my-sm-n190 {
        margin-top: -190px !important;
        margin-bottom: -190px !important;
    }

    .my-sm-n200 {
        margin-top: -200px !important;
        margin-bottom: -200px !important;
    }

    .my-sm-n210 {
        margin-top: -210px !important;
        margin-bottom: -210px !important;
    }

    .my-sm-n235 {
        margin-top: -235px !important;
        margin-bottom: -235px !important;
    }

    .my-sm-n240 {
        margin-top: -240px !important;
        margin-bottom: -240px !important;
    }

    .my-sm-n270 {
        margin-top: -270px !important;
        margin-bottom: -270px !important;
    }

    .my-sm-n290 {
        margin-top: -290px !important;
        margin-bottom: -290px !important;
    }

    .my-sm-n300 {
        margin-top: -300px !important;
        margin-bottom: -300px !important;
    }

    .mt-sm-n1 {
        margin-top: -1px !important;
    }

    .mt-sm-n2 {
        margin-top: -2px !important;
    }

    .mt-sm-n3 {
        margin-top: -3px !important;
    }

    .mt-sm-n4 {
        margin-top: -4px !important;
    }

    .mt-sm-n5 {
        margin-top: -5px !important;
    }

    .mt-sm-n6 {
        margin-top: -6px !important;
    }

    .mt-sm-n7 {
        margin-top: -7px !important;
    }

    .mt-sm-n8 {
        margin-top: -8px !important;
    }

    .mt-sm-n9 {
        margin-top: -9px !important;
    }

    .mt-sm-n10 {
        margin-top: -10px !important;
    }

    .mt-sm-n11 {
        margin-top: -11px !important;
    }

    .mt-sm-n12 {
        margin-top: -12px !important;
    }

    .mt-sm-n13 {
        margin-top: -13px !important;
    }

    .mt-sm-n15 {
        margin-top: -15px !important;
    }

    .mt-sm-n17 {
        margin-top: -17px !important;
    }

    .mt-sm-n18 {
        margin-top: -18px !important;
    }

    .mt-sm-n20 {
        margin-top: -20px !important;
    }

    .mt-sm-n25 {
        margin-top: -25px !important;
    }

    .mt-sm-n30 {
        margin-top: -30px !important;
    }

    .mt-sm-n35 {
        margin-top: -35px !important;
    }

    .mt-sm-n40 {
        margin-top: -40px !important;
    }

    .mt-sm-n45 {
        margin-top: -45px !important;
    }

    .mt-sm-n50 {
        margin-top: -50px !important;
    }

    .mt-sm-n55 {
        margin-top: -55px !important;
    }

    .mt-sm-n60 {
        margin-top: -60px !important;
    }

    .mt-sm-n65 {
        margin-top: -65px !important;
    }

    .mt-sm-n70 {
        margin-top: -70px !important;
    }

    .mt-sm-n75 {
        margin-top: -75px !important;
    }

    .mt-sm-n80 {
        margin-top: -80px !important;
    }

    .mt-sm-n90 {
        margin-top: -90px !important;
    }

    .mt-sm-n95 {
        margin-top: -95px !important;
    }

    .mt-sm-n100 {
        margin-top: -100px !important;
    }

    .mt-sm-n110 {
        margin-top: -110px !important;
    }

    .mt-sm-n115 {
        margin-top: -115px !important;
    }

    .mt-sm-n120 {
        margin-top: -120px !important;
    }

    .mt-sm-n130 {
        margin-top: -130px !important;
    }

    .mt-sm-n150 {
        margin-top: -150px !important;
    }

    .mt-sm-n160 {
        margin-top: -160px !important;
    }

    .mt-sm-n180 {
        margin-top: -180px !important;
    }

    .mt-sm-n190 {
        margin-top: -190px !important;
    }

    .mt-sm-n200 {
        margin-top: -200px !important;
    }

    .mt-sm-n210 {
        margin-top: -210px !important;
    }

    .mt-sm-n235 {
        margin-top: -235px !important;
    }

    .mt-sm-n240 {
        margin-top: -240px !important;
    }

    .mt-sm-n270 {
        margin-top: -270px !important;
    }

    .mt-sm-n290 {
        margin-top: -290px !important;
    }

    .mt-sm-n300 {
        margin-top: -300px !important;
    }

    .me-sm-n1 {
        margin-left: -1px !important;
    }

    .me-sm-n2 {
        margin-left: -2px !important;
    }

    .me-sm-n3 {
        margin-left: -3px !important;
    }

    .me-sm-n4 {
        margin-left: -4px !important;
    }

    .me-sm-n5 {
        margin-left: -5px !important;
    }

    .me-sm-n6 {
        margin-left: -6px !important;
    }

    .me-sm-n7 {
        margin-left: -7px !important;
    }

    .me-sm-n8 {
        margin-left: -8px !important;
    }

    .me-sm-n9 {
        margin-left: -9px !important;
    }

    .me-sm-n10 {
        margin-left: -10px !important;
    }

    .me-sm-n11 {
        margin-left: -11px !important;
    }

    .me-sm-n12 {
        margin-left: -12px !important;
    }

    .me-sm-n13 {
        margin-left: -13px !important;
    }

    .me-sm-n15 {
        margin-left: -15px !important;
    }

    .me-sm-n17 {
        margin-left: -17px !important;
    }

    .me-sm-n18 {
        margin-left: -18px !important;
    }

    .me-sm-n20 {
        margin-left: -20px !important;
    }

    .me-sm-n25 {
        margin-left: -25px !important;
    }

    .me-sm-n30 {
        margin-left: -30px !important;
    }

    .me-sm-n35 {
        margin-left: -35px !important;
    }

    .me-sm-n40 {
        margin-left: -40px !important;
    }

    .me-sm-n45 {
        margin-left: -45px !important;
    }

    .me-sm-n50 {
        margin-left: -50px !important;
    }

    .me-sm-n55 {
        margin-left: -55px !important;
    }

    .me-sm-n60 {
        margin-left: -60px !important;
    }

    .me-sm-n65 {
        margin-left: -65px !important;
    }

    .me-sm-n70 {
        margin-left: -70px !important;
    }

    .me-sm-n75 {
        margin-left: -75px !important;
    }

    .me-sm-n80 {
        margin-left: -80px !important;
    }

    .me-sm-n90 {
        margin-left: -90px !important;
    }

    .me-sm-n95 {
        margin-left: -95px !important;
    }

    .me-sm-n100 {
        margin-left: -100px !important;
    }

    .me-sm-n110 {
        margin-left: -110px !important;
    }

    .me-sm-n115 {
        margin-left: -115px !important;
    }

    .me-sm-n120 {
        margin-left: -120px !important;
    }

    .me-sm-n130 {
        margin-left: -130px !important;
    }

    .me-sm-n150 {
        margin-left: -150px !important;
    }

    .me-sm-n160 {
        margin-left: -160px !important;
    }

    .me-sm-n180 {
        margin-left: -180px !important;
    }

    .me-sm-n190 {
        margin-left: -190px !important;
    }

    .me-sm-n200 {
        margin-left: -200px !important;
    }

    .me-sm-n210 {
        margin-left: -210px !important;
    }

    .me-sm-n235 {
        margin-left: -235px !important;
    }

    .me-sm-n240 {
        margin-left: -240px !important;
    }

    .me-sm-n270 {
        margin-left: -270px !important;
    }

    .me-sm-n290 {
        margin-left: -290px !important;
    }

    .me-sm-n300 {
        margin-left: -300px !important;
    }

    .mb-sm-n1 {
        margin-bottom: -1px !important;
    }

    .mb-sm-n2 {
        margin-bottom: -2px !important;
    }

    .mb-sm-n3 {
        margin-bottom: -3px !important;
    }

    .mb-sm-n4 {
        margin-bottom: -4px !important;
    }

    .mb-sm-n5 {
        margin-bottom: -5px !important;
    }

    .mb-sm-n6 {
        margin-bottom: -6px !important;
    }

    .mb-sm-n7 {
        margin-bottom: -7px !important;
    }

    .mb-sm-n8 {
        margin-bottom: -8px !important;
    }

    .mb-sm-n9 {
        margin-bottom: -9px !important;
    }

    .mb-sm-n10 {
        margin-bottom: -10px !important;
    }

    .mb-sm-n11 {
        margin-bottom: -11px !important;
    }

    .mb-sm-n12 {
        margin-bottom: -12px !important;
    }

    .mb-sm-n13 {
        margin-bottom: -13px !important;
    }

    .mb-sm-n15 {
        margin-bottom: -15px !important;
    }

    .mb-sm-n17 {
        margin-bottom: -17px !important;
    }

    .mb-sm-n18 {
        margin-bottom: -18px !important;
    }

    .mb-sm-n20 {
        margin-bottom: -20px !important;
    }

    .mb-sm-n25 {
        margin-bottom: -25px !important;
    }

    .mb-sm-n30 {
        margin-bottom: -30px !important;
    }

    .mb-sm-n35 {
        margin-bottom: -35px !important;
    }

    .mb-sm-n40 {
        margin-bottom: -40px !important;
    }

    .mb-sm-n45 {
        margin-bottom: -45px !important;
    }

    .mb-sm-n50 {
        margin-bottom: -50px !important;
    }

    .mb-sm-n55 {
        margin-bottom: -55px !important;
    }

    .mb-sm-n60 {
        margin-bottom: -60px !important;
    }

    .mb-sm-n65 {
        margin-bottom: -65px !important;
    }

    .mb-sm-n70 {
        margin-bottom: -70px !important;
    }

    .mb-sm-n75 {
        margin-bottom: -75px !important;
    }

    .mb-sm-n80 {
        margin-bottom: -80px !important;
    }

    .mb-sm-n90 {
        margin-bottom: -90px !important;
    }

    .mb-sm-n95 {
        margin-bottom: -95px !important;
    }

    .mb-sm-n100 {
        margin-bottom: -100px !important;
    }

    .mb-sm-n110 {
        margin-bottom: -110px !important;
    }

    .mb-sm-n115 {
        margin-bottom: -115px !important;
    }

    .mb-sm-n120 {
        margin-bottom: -120px !important;
    }

    .mb-sm-n130 {
        margin-bottom: -130px !important;
    }

    .mb-sm-n150 {
        margin-bottom: -150px !important;
    }

    .mb-sm-n160 {
        margin-bottom: -160px !important;
    }

    .mb-sm-n180 {
        margin-bottom: -180px !important;
    }

    .mb-sm-n190 {
        margin-bottom: -190px !important;
    }

    .mb-sm-n200 {
        margin-bottom: -200px !important;
    }

    .mb-sm-n210 {
        margin-bottom: -210px !important;
    }

    .mb-sm-n235 {
        margin-bottom: -235px !important;
    }

    .mb-sm-n240 {
        margin-bottom: -240px !important;
    }

    .mb-sm-n270 {
        margin-bottom: -270px !important;
    }

    .mb-sm-n290 {
        margin-bottom: -290px !important;
    }

    .mb-sm-n300 {
        margin-bottom: -300px !important;
    }

    .ms-sm-n1 {
        margin-right: -1px !important;
    }

    .ms-sm-n2 {
        margin-right: -2px !important;
    }

    .ms-sm-n3 {
        margin-right: -3px !important;
    }

    .ms-sm-n4 {
        margin-right: -4px !important;
    }

    .ms-sm-n5 {
        margin-right: -5px !important;
    }

    .ms-sm-n6 {
        margin-right: -6px !important;
    }

    .ms-sm-n7 {
        margin-right: -7px !important;
    }

    .ms-sm-n8 {
        margin-right: -8px !important;
    }

    .ms-sm-n9 {
        margin-right: -9px !important;
    }

    .ms-sm-n10 {
        margin-right: -10px !important;
    }

    .ms-sm-n11 {
        margin-right: -11px !important;
    }

    .ms-sm-n12 {
        margin-right: -12px !important;
    }

    .ms-sm-n13 {
        margin-right: -13px !important;
    }

    .ms-sm-n15 {
        margin-right: -15px !important;
    }

    .ms-sm-n17 {
        margin-right: -17px !important;
    }

    .ms-sm-n18 {
        margin-right: -18px !important;
    }

    .ms-sm-n20 {
        margin-right: -20px !important;
    }

    .ms-sm-n25 {
        margin-right: -25px !important;
    }

    .ms-sm-n30 {
        margin-right: -30px !important;
    }

    .ms-sm-n35 {
        margin-right: -35px !important;
    }

    .ms-sm-n40 {
        margin-right: -40px !important;
    }

    .ms-sm-n45 {
        margin-right: -45px !important;
    }

    .ms-sm-n50 {
        margin-right: -50px !important;
    }

    .ms-sm-n55 {
        margin-right: -55px !important;
    }

    .ms-sm-n60 {
        margin-right: -60px !important;
    }

    .ms-sm-n65 {
        margin-right: -65px !important;
    }

    .ms-sm-n70 {
        margin-right: -70px !important;
    }

    .ms-sm-n75 {
        margin-right: -75px !important;
    }

    .ms-sm-n80 {
        margin-right: -80px !important;
    }

    .ms-sm-n90 {
        margin-right: -90px !important;
    }

    .ms-sm-n95 {
        margin-right: -95px !important;
    }

    .ms-sm-n100 {
        margin-right: -100px !important;
    }

    .ms-sm-n110 {
        margin-right: -110px !important;
    }

    .ms-sm-n115 {
        margin-right: -115px !important;
    }

    .ms-sm-n120 {
        margin-right: -120px !important;
    }

    .ms-sm-n130 {
        margin-right: -130px !important;
    }

    .ms-sm-n150 {
        margin-right: -150px !important;
    }

    .ms-sm-n160 {
        margin-right: -160px !important;
    }

    .ms-sm-n180 {
        margin-right: -180px !important;
    }

    .ms-sm-n190 {
        margin-right: -190px !important;
    }

    .ms-sm-n200 {
        margin-right: -200px !important;
    }

    .ms-sm-n210 {
        margin-right: -210px !important;
    }

    .ms-sm-n235 {
        margin-right: -235px !important;
    }

    .ms-sm-n240 {
        margin-right: -240px !important;
    }

    .ms-sm-n270 {
        margin-right: -270px !important;
    }

    .ms-sm-n290 {
        margin-right: -290px !important;
    }

    .ms-sm-n300 {
        margin-right: -300px !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .p-sm-1 {
        padding: 1px !important;
    }

    .p-sm-2 {
        padding: 2px !important;
    }

    .p-sm-3 {
        padding: 3px !important;
    }

    .p-sm-4 {
        padding: 4px !important;
    }

    .p-sm-5 {
        padding: 5px !important;
    }

    .p-sm-6 {
        padding: 6px !important;
    }

    .p-sm-7 {
        padding: 7px !important;
    }

    .p-sm-8 {
        padding: 8px !important;
    }

    .p-sm-9 {
        padding: 9px !important;
    }

    .p-sm-10 {
        padding: 10px !important;
    }

    .p-sm-11 {
        padding: 11px !important;
    }

    .p-sm-12 {
        padding: 12px !important;
    }

    .p-sm-13 {
        padding: 13px !important;
    }

    .p-sm-15 {
        padding: 15px !important;
    }

    .p-sm-17 {
        padding: 17px !important;
    }

    .p-sm-18 {
        padding: 18px !important;
    }

    .p-sm-20 {
        padding: 20px !important;
    }

    .p-sm-25 {
        padding: 25px !important;
    }

    .p-sm-30 {
        padding: 30px !important;
    }

    .p-sm-35 {
        padding: 35px !important;
    }

    .p-sm-40 {
        padding: 40px !important;
    }

    .p-sm-45 {
        padding: 45px !important;
    }

    .p-sm-50 {
        padding: 50px !important;
    }

    .p-sm-55 {
        padding: 55px !important;
    }

    .p-sm-60 {
        padding: 60px !important;
    }

    .p-sm-65 {
        padding: 65px !important;
    }

    .p-sm-70 {
        padding: 70px !important;
    }

    .p-sm-75 {
        padding: 75px !important;
    }

    .p-sm-80 {
        padding: 80px !important;
    }

    .p-sm-90 {
        padding: 90px !important;
    }

    .p-sm-95 {
        padding: 95px !important;
    }

    .p-sm-100 {
        padding: 100px !important;
    }

    .p-sm-110 {
        padding: 110px !important;
    }

    .p-sm-115 {
        padding: 115px !important;
    }

    .p-sm-120 {
        padding: 120px !important;
    }

    .p-sm-130 {
        padding: 130px !important;
    }

    .p-sm-150 {
        padding: 150px !important;
    }

    .p-sm-160 {
        padding: 160px !important;
    }

    .p-sm-180 {
        padding: 180px !important;
    }

    .p-sm-190 {
        padding: 190px !important;
    }

    .p-sm-200 {
        padding: 200px !important;
    }

    .p-sm-210 {
        padding: 210px !important;
    }

    .p-sm-235 {
        padding: 235px !important;
    }

    .p-sm-240 {
        padding: 240px !important;
    }

    .p-sm-270 {
        padding: 270px !important;
    }

    .p-sm-290 {
        padding: 290px !important;
    }

    .p-sm-300 {
        padding: 300px !important;
    }

    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-sm-1 {
        padding-left: 1px !important;
        padding-right: 1px !important;
    }

    .px-sm-2 {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .px-sm-3 {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }

    .px-sm-4 {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .px-sm-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .px-sm-6 {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .px-sm-7 {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .px-sm-8 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .px-sm-9 {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .px-sm-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .px-sm-11 {
        padding-left: 11px !important;
        padding-right: 11px !important;
    }

    .px-sm-12 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .px-sm-13 {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .px-sm-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .px-sm-17 {
        padding-left: 17px !important;
        padding-right: 17px !important;
    }

    .px-sm-18 {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .px-sm-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .px-sm-25 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .px-sm-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .px-sm-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    .px-sm-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .px-sm-45 {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }

    .px-sm-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .px-sm-55 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }

    .px-sm-60 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    .px-sm-65 {
        padding-left: 65px !important;
        padding-right: 65px !important;
    }

    .px-sm-70 {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }

    .px-sm-75 {
        padding-left: 75px !important;
        padding-right: 75px !important;
    }

    .px-sm-80 {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .px-sm-90 {
        padding-left: 90px !important;
        padding-right: 90px !important;
    }

    .px-sm-95 {
        padding-left: 95px !important;
        padding-right: 95px !important;
    }

    .px-sm-100 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }

    .px-sm-110 {
        padding-left: 110px !important;
        padding-right: 110px !important;
    }

    .px-sm-115 {
        padding-left: 115px !important;
        padding-right: 115px !important;
    }

    .px-sm-120 {
        padding-left: 120px !important;
        padding-right: 120px !important;
    }

    .px-sm-130 {
        padding-left: 130px !important;
        padding-right: 130px !important;
    }

    .px-sm-150 {
        padding-left: 150px !important;
        padding-right: 150px !important;
    }

    .px-sm-160 {
        padding-left: 160px !important;
        padding-right: 160px !important;
    }

    .px-sm-180 {
        padding-left: 180px !important;
        padding-right: 180px !important;
    }

    .px-sm-190 {
        padding-left: 190px !important;
        padding-right: 190px !important;
    }

    .px-sm-200 {
        padding-left: 200px !important;
        padding-right: 200px !important;
    }

    .px-sm-210 {
        padding-left: 210px !important;
        padding-right: 210px !important;
    }

    .px-sm-235 {
        padding-left: 235px !important;
        padding-right: 235px !important;
    }

    .px-sm-240 {
        padding-left: 240px !important;
        padding-right: 240px !important;
    }

    .px-sm-270 {
        padding-left: 270px !important;
        padding-right: 270px !important;
    }

    .px-sm-290 {
        padding-left: 290px !important;
        padding-right: 290px !important;
    }

    .px-sm-300 {
        padding-left: 300px !important;
        padding-right: 300px !important;
    }

    .py-sm-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-sm-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important;
    }

    .py-sm-2 {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .py-sm-3 {
        padding-top: 3px !important;
        padding-bottom: 3px !important;
    }

    .py-sm-4 {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .py-sm-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .py-sm-6 {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .py-sm-7 {
        padding-top: 7px !important;
        padding-bottom: 7px !important;
    }

    .py-sm-8 {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .py-sm-9 {
        padding-top: 9px !important;
        padding-bottom: 9px !important;
    }

    .py-sm-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .py-sm-11 {
        padding-top: 11px !important;
        padding-bottom: 11px !important;
    }

    .py-sm-12 {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .py-sm-13 {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    .py-sm-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .py-sm-17 {
        padding-top: 17px !important;
        padding-bottom: 17px !important;
    }

    .py-sm-18 {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .py-sm-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .py-sm-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .py-sm-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .py-sm-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .py-sm-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .py-sm-45 {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .py-sm-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .py-sm-55 {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .py-sm-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .py-sm-65 {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .py-sm-70 {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .py-sm-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }

    .py-sm-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .py-sm-90 {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }

    .py-sm-95 {
        padding-top: 95px !important;
        padding-bottom: 95px !important;
    }

    .py-sm-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .py-sm-110 {
        padding-top: 110px !important;
        padding-bottom: 110px !important;
    }

    .py-sm-115 {
        padding-top: 115px !important;
        padding-bottom: 115px !important;
    }

    .py-sm-120 {
        padding-top: 120px !important;
        padding-bottom: 120px !important;
    }

    .py-sm-130 {
        padding-top: 130px !important;
        padding-bottom: 130px !important;
    }

    .py-sm-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }

    .py-sm-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important;
    }

    .py-sm-180 {
        padding-top: 180px !important;
        padding-bottom: 180px !important;
    }

    .py-sm-190 {
        padding-top: 190px !important;
        padding-bottom: 190px !important;
    }

    .py-sm-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important;
    }

    .py-sm-210 {
        padding-top: 210px !important;
        padding-bottom: 210px !important;
    }

    .py-sm-235 {
        padding-top: 235px !important;
        padding-bottom: 235px !important;
    }

    .py-sm-240 {
        padding-top: 240px !important;
        padding-bottom: 240px !important;
    }

    .py-sm-270 {
        padding-top: 270px !important;
        padding-bottom: 270px !important;
    }

    .py-sm-290 {
        padding-top: 290px !important;
        padding-bottom: 290px !important;
    }

    .py-sm-300 {
        padding-top: 300px !important;
        padding-bottom: 300px !important;
    }

    .pt-sm-0 {
        padding-top: 0 !important;
    }

    .pt-sm-1 {
        padding-top: 1px !important;
    }

    .pt-sm-2 {
        padding-top: 2px !important;
    }

    .pt-sm-3 {
        padding-top: 3px !important;
    }

    .pt-sm-4 {
        padding-top: 4px !important;
    }

    .pt-sm-5 {
        padding-top: 5px !important;
    }

    .pt-sm-6 {
        padding-top: 6px !important;
    }

    .pt-sm-7 {
        padding-top: 7px !important;
    }

    .pt-sm-8 {
        padding-top: 8px !important;
    }

    .pt-sm-9 {
        padding-top: 9px !important;
    }

    .pt-sm-10 {
        padding-top: 10px !important;
    }

    .pt-sm-11 {
        padding-top: 11px !important;
    }

    .pt-sm-12 {
        padding-top: 12px !important;
    }

    .pt-sm-13 {
        padding-top: 13px !important;
    }

    .pt-sm-15 {
        padding-top: 15px !important;
    }

    .pt-sm-17 {
        padding-top: 17px !important;
    }

    .pt-sm-18 {
        padding-top: 18px !important;
    }

    .pt-sm-20 {
        padding-top: 20px !important;
    }

    .pt-sm-25 {
        padding-top: 25px !important;
    }

    .pt-sm-30 {
        padding-top: 30px !important;
    }

    .pt-sm-35 {
        padding-top: 35px !important;
    }

    .pt-sm-40 {
        padding-top: 40px !important;
    }

    .pt-sm-45 {
        padding-top: 45px !important;
    }

    .pt-sm-50 {
        padding-top: 50px !important;
    }

    .pt-sm-55 {
        padding-top: 55px !important;
    }

    .pt-sm-60 {
        padding-top: 60px !important;
    }

    .pt-sm-65 {
        padding-top: 65px !important;
    }

    .pt-sm-70 {
        padding-top: 70px !important;
    }

    .pt-sm-75 {
        padding-top: 75px !important;
    }

    .pt-sm-80 {
        padding-top: 80px !important;
    }

    .pt-sm-90 {
        padding-top: 90px !important;
    }

    .pt-sm-95 {
        padding-top: 95px !important;
    }

    .pt-sm-100 {
        padding-top: 100px !important;
    }

    .pt-sm-110 {
        padding-top: 110px !important;
    }

    .pt-sm-115 {
        padding-top: 115px !important;
    }

    .pt-sm-120 {
        padding-top: 120px !important;
    }

    .pt-sm-130 {
        padding-top: 130px !important;
    }

    .pt-sm-150 {
        padding-top: 150px !important;
    }

    .pt-sm-160 {
        padding-top: 160px !important;
    }

    .pt-sm-180 {
        padding-top: 180px !important;
    }

    .pt-sm-190 {
        padding-top: 190px !important;
    }

    .pt-sm-200 {
        padding-top: 200px !important;
    }

    .pt-sm-210 {
        padding-top: 210px !important;
    }

    .pt-sm-235 {
        padding-top: 235px !important;
    }

    .pt-sm-240 {
        padding-top: 240px !important;
    }

    .pt-sm-270 {
        padding-top: 270px !important;
    }

    .pt-sm-290 {
        padding-top: 290px !important;
    }

    .pt-sm-300 {
        padding-top: 300px !important;
    }

    .pe-sm-0 {
        padding-left: 0 !important;
    }

    .pe-sm-1 {
        padding-left: 1px !important;
    }

    .pe-sm-2 {
        padding-left: 2px !important;
    }

    .pe-sm-3 {
        padding-left: 3px !important;
    }

    .pe-sm-4 {
        padding-left: 4px !important;
    }

    .pe-sm-5 {
        padding-left: 5px !important;
    }

    .pe-sm-6 {
        padding-left: 6px !important;
    }

    .pe-sm-7 {
        padding-left: 7px !important;
    }

    .pe-sm-8 {
        padding-left: 8px !important;
    }

    .pe-sm-9 {
        padding-left: 9px !important;
    }

    .pe-sm-10 {
        padding-left: 10px !important;
    }

    .pe-sm-11 {
        padding-left: 11px !important;
    }

    .pe-sm-12 {
        padding-left: 12px !important;
    }

    .pe-sm-13 {
        padding-left: 13px !important;
    }

    .pe-sm-15 {
        padding-left: 15px !important;
    }

    .pe-sm-17 {
        padding-left: 17px !important;
    }

    .pe-sm-18 {
        padding-left: 18px !important;
    }

    .pe-sm-20 {
        padding-left: 20px !important;
    }

    .pe-sm-25 {
        padding-left: 25px !important;
    }

    .pe-sm-30 {
        padding-left: 30px !important;
    }

    .pe-sm-35 {
        padding-left: 35px !important;
    }

    .pe-sm-40 {
        padding-left: 40px !important;
    }

    .pe-sm-45 {
        padding-left: 45px !important;
    }

    .pe-sm-50 {
        padding-left: 50px !important;
    }

    .pe-sm-55 {
        padding-left: 55px !important;
    }

    .pe-sm-60 {
        padding-left: 60px !important;
    }

    .pe-sm-65 {
        padding-left: 65px !important;
    }

    .pe-sm-70 {
        padding-left: 70px !important;
    }

    .pe-sm-75 {
        padding-left: 75px !important;
    }

    .pe-sm-80 {
        padding-left: 80px !important;
    }

    .pe-sm-90 {
        padding-left: 90px !important;
    }

    .pe-sm-95 {
        padding-left: 95px !important;
    }

    .pe-sm-100 {
        padding-left: 100px !important;
    }

    .pe-sm-110 {
        padding-left: 110px !important;
    }

    .pe-sm-115 {
        padding-left: 115px !important;
    }

    .pe-sm-120 {
        padding-left: 120px !important;
    }

    .pe-sm-130 {
        padding-left: 130px !important;
    }

    .pe-sm-150 {
        padding-left: 150px !important;
    }

    .pe-sm-160 {
        padding-left: 160px !important;
    }

    .pe-sm-180 {
        padding-left: 180px !important;
    }

    .pe-sm-190 {
        padding-left: 190px !important;
    }

    .pe-sm-200 {
        padding-left: 200px !important;
    }

    .pe-sm-210 {
        padding-left: 210px !important;
    }

    .pe-sm-235 {
        padding-left: 235px !important;
    }

    .pe-sm-240 {
        padding-left: 240px !important;
    }

    .pe-sm-270 {
        padding-left: 270px !important;
    }

    .pe-sm-290 {
        padding-left: 290px !important;
    }

    .pe-sm-300 {
        padding-left: 300px !important;
    }

    .pb-sm-0 {
        padding-bottom: 0 !important;
    }

    .pb-sm-1 {
        padding-bottom: 1px !important;
    }

    .pb-sm-2 {
        padding-bottom: 2px !important;
    }

    .pb-sm-3 {
        padding-bottom: 3px !important;
    }

    .pb-sm-4 {
        padding-bottom: 4px !important;
    }

    .pb-sm-5 {
        padding-bottom: 5px !important;
    }

    .pb-sm-6 {
        padding-bottom: 6px !important;
    }

    .pb-sm-7 {
        padding-bottom: 7px !important;
    }

    .pb-sm-8 {
        padding-bottom: 8px !important;
    }

    .pb-sm-9 {
        padding-bottom: 9px !important;
    }

    .pb-sm-10 {
        padding-bottom: 10px !important;
    }

    .pb-sm-11 {
        padding-bottom: 11px !important;
    }

    .pb-sm-12 {
        padding-bottom: 12px !important;
    }

    .pb-sm-13 {
        padding-bottom: 13px !important;
    }

    .pb-sm-15 {
        padding-bottom: 15px !important;
    }

    .pb-sm-17 {
        padding-bottom: 17px !important;
    }

    .pb-sm-18 {
        padding-bottom: 18px !important;
    }

    .pb-sm-20 {
        padding-bottom: 20px !important;
    }

    .pb-sm-25 {
        padding-bottom: 25px !important;
    }

    .pb-sm-30 {
        padding-bottom: 30px !important;
    }

    .pb-sm-35 {
        padding-bottom: 35px !important;
    }

    .pb-sm-40 {
        padding-bottom: 40px !important;
    }

    .pb-sm-45 {
        padding-bottom: 45px !important;
    }

    .pb-sm-50 {
        padding-bottom: 50px !important;
    }

    .pb-sm-55 {
        padding-bottom: 55px !important;
    }

    .pb-sm-60 {
        padding-bottom: 60px !important;
    }

    .pb-sm-65 {
        padding-bottom: 65px !important;
    }

    .pb-sm-70 {
        padding-bottom: 70px !important;
    }

    .pb-sm-75 {
        padding-bottom: 75px !important;
    }

    .pb-sm-80 {
        padding-bottom: 80px !important;
    }

    .pb-sm-90 {
        padding-bottom: 90px !important;
    }

    .pb-sm-95 {
        padding-bottom: 95px !important;
    }

    .pb-sm-100 {
        padding-bottom: 100px !important;
    }

    .pb-sm-110 {
        padding-bottom: 110px !important;
    }

    .pb-sm-115 {
        padding-bottom: 115px !important;
    }

    .pb-sm-120 {
        padding-bottom: 120px !important;
    }

    .pb-sm-130 {
        padding-bottom: 130px !important;
    }

    .pb-sm-150 {
        padding-bottom: 150px !important;
    }

    .pb-sm-160 {
        padding-bottom: 160px !important;
    }

    .pb-sm-180 {
        padding-bottom: 180px !important;
    }

    .pb-sm-190 {
        padding-bottom: 190px !important;
    }

    .pb-sm-200 {
        padding-bottom: 200px !important;
    }

    .pb-sm-210 {
        padding-bottom: 210px !important;
    }

    .pb-sm-235 {
        padding-bottom: 235px !important;
    }

    .pb-sm-240 {
        padding-bottom: 240px !important;
    }

    .pb-sm-270 {
        padding-bottom: 270px !important;
    }

    .pb-sm-290 {
        padding-bottom: 290px !important;
    }

    .pb-sm-300 {
        padding-bottom: 300px !important;
    }

    .ps-sm-0 {
        padding-right: 0 !important;
    }

    .ps-sm-1 {
        padding-right: 1px !important;
    }

    .ps-sm-2 {
        padding-right: 2px !important;
    }

    .ps-sm-3 {
        padding-right: 3px !important;
    }

    .ps-sm-4 {
        padding-right: 4px !important;
    }

    .ps-sm-5 {
        padding-right: 5px !important;
    }

    .ps-sm-6 {
        padding-right: 6px !important;
    }

    .ps-sm-7 {
        padding-right: 7px !important;
    }

    .ps-sm-8 {
        padding-right: 8px !important;
    }

    .ps-sm-9 {
        padding-right: 9px !important;
    }

    .ps-sm-10 {
        padding-right: 10px !important;
    }

    .ps-sm-11 {
        padding-right: 11px !important;
    }

    .ps-sm-12 {
        padding-right: 12px !important;
    }

    .ps-sm-13 {
        padding-right: 13px !important;
    }

    .ps-sm-15 {
        padding-right: 15px !important;
    }

    .ps-sm-17 {
        padding-right: 17px !important;
    }

    .ps-sm-18 {
        padding-right: 18px !important;
    }

    .ps-sm-20 {
        padding-right: 20px !important;
    }

    .ps-sm-25 {
        padding-right: 25px !important;
    }

    .ps-sm-30 {
        padding-right: 30px !important;
    }

    .ps-sm-35 {
        padding-right: 35px !important;
    }

    .ps-sm-40 {
        padding-right: 40px !important;
    }

    .ps-sm-45 {
        padding-right: 45px !important;
    }

    .ps-sm-50 {
        padding-right: 50px !important;
    }

    .ps-sm-55 {
        padding-right: 55px !important;
    }

    .ps-sm-60 {
        padding-right: 60px !important;
    }

    .ps-sm-65 {
        padding-right: 65px !important;
    }

    .ps-sm-70 {
        padding-right: 70px !important;
    }

    .ps-sm-75 {
        padding-right: 75px !important;
    }

    .ps-sm-80 {
        padding-right: 80px !important;
    }

    .ps-sm-90 {
        padding-right: 90px !important;
    }

    .ps-sm-95 {
        padding-right: 95px !important;
    }

    .ps-sm-100 {
        padding-right: 100px !important;
    }

    .ps-sm-110 {
        padding-right: 110px !important;
    }

    .ps-sm-115 {
        padding-right: 115px !important;
    }

    .ps-sm-120 {
        padding-right: 120px !important;
    }

    .ps-sm-130 {
        padding-right: 130px !important;
    }

    .ps-sm-150 {
        padding-right: 150px !important;
    }

    .ps-sm-160 {
        padding-right: 160px !important;
    }

    .ps-sm-180 {
        padding-right: 180px !important;
    }

    .ps-sm-190 {
        padding-right: 190px !important;
    }

    .ps-sm-200 {
        padding-right: 200px !important;
    }

    .ps-sm-210 {
        padding-right: 210px !important;
    }

    .ps-sm-235 {
        padding-right: 235px !important;
    }

    .ps-sm-240 {
        padding-right: 240px !important;
    }

    .ps-sm-270 {
        padding-right: 270px !important;
    }

    .ps-sm-290 {
        padding-right: 290px !important;
    }

    .ps-sm-300 {
        padding-right: 300px !important;
    }

    .text-sm-start {
        text-align: right !important;
    }

    .text-sm-end {
        text-align: left !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 828px) {
    .float-md-start {
        float: right !important;
    }

    .float-md-end {
        float: left !important;
    }

    .float-md-none {
        float: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-grid {
        display: grid !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .d-md-none {
        display: none !important;
    }

    .flex-md-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .flex-md-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .gap-md-0 {
        gap: 0 !important;
    }

    .gap-md-1 {
        gap: 1px !important;
    }

    .gap-md-2 {
        gap: 2px !important;
    }

    .gap-md-3 {
        gap: 3px !important;
    }

    .gap-md-4 {
        gap: 4px !important;
    }

    .gap-md-5 {
        gap: 5px !important;
    }

    .gap-md-6 {
        gap: 6px !important;
    }

    .gap-md-7 {
        gap: 7px !important;
    }

    .gap-md-8 {
        gap: 8px !important;
    }

    .gap-md-9 {
        gap: 9px !important;
    }

    .gap-md-10 {
        gap: 10px !important;
    }

    .gap-md-11 {
        gap: 11px !important;
    }

    .gap-md-12 {
        gap: 12px !important;
    }

    .gap-md-13 {
        gap: 13px !important;
    }

    .gap-md-15 {
        gap: 15px !important;
    }

    .gap-md-17 {
        gap: 17px !important;
    }

    .gap-md-18 {
        gap: 18px !important;
    }

    .gap-md-20 {
        gap: 20px !important;
    }

    .gap-md-25 {
        gap: 25px !important;
    }

    .gap-md-30 {
        gap: 30px !important;
    }

    .gap-md-35 {
        gap: 35px !important;
    }

    .gap-md-40 {
        gap: 40px !important;
    }

    .gap-md-45 {
        gap: 45px !important;
    }

    .gap-md-50 {
        gap: 50px !important;
    }

    .gap-md-55 {
        gap: 55px !important;
    }

    .gap-md-60 {
        gap: 60px !important;
    }

    .gap-md-65 {
        gap: 65px !important;
    }

    .gap-md-70 {
        gap: 70px !important;
    }

    .gap-md-75 {
        gap: 75px !important;
    }

    .gap-md-80 {
        gap: 80px !important;
    }

    .gap-md-90 {
        gap: 90px !important;
    }

    .gap-md-95 {
        gap: 95px !important;
    }

    .gap-md-100 {
        gap: 100px !important;
    }

    .gap-md-110 {
        gap: 110px !important;
    }

    .gap-md-115 {
        gap: 115px !important;
    }

    .gap-md-120 {
        gap: 120px !important;
    }

    .gap-md-130 {
        gap: 130px !important;
    }

    .gap-md-150 {
        gap: 150px !important;
    }

    .gap-md-160 {
        gap: 160px !important;
    }

    .gap-md-180 {
        gap: 180px !important;
    }

    .gap-md-190 {
        gap: 190px !important;
    }

    .gap-md-200 {
        gap: 200px !important;
    }

    .gap-md-210 {
        gap: 210px !important;
    }

    .gap-md-235 {
        gap: 235px !important;
    }

    .gap-md-240 {
        gap: 240px !important;
    }

    .gap-md-270 {
        gap: 270px !important;
    }

    .gap-md-290 {
        gap: 290px !important;
    }

    .gap-md-300 {
        gap: 300px !important;
    }

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .justify-content-md-evenly {
        -webkit-box-pack: space-evenly !important;
        -webkit-justify-content: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    .order-md-first {
        -webkit-box-ordinal-group: 0 !important;
        -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }

    .order-md-0 {
        -webkit-box-ordinal-group: 1 !important;
        -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }

    .order-md-1 {
        -webkit-box-ordinal-group: 2 !important;
        -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .order-md-2 {
        -webkit-box-ordinal-group: 3 !important;
        -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }

    .order-md-3 {
        -webkit-box-ordinal-group: 4 !important;
        -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }

    .order-md-4 {
        -webkit-box-ordinal-group: 5 !important;
        -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }

    .order-md-5 {
        -webkit-box-ordinal-group: 6 !important;
        -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }

    .order-md-last {
        -webkit-box-ordinal-group: 7 !important;
        -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }

    .m-md-0 {
        margin: 0 !important;
    }

    .m-md-1 {
        margin: 1px !important;
    }

    .m-md-2 {
        margin: 2px !important;
    }

    .m-md-3 {
        margin: 3px !important;
    }

    .m-md-4 {
        margin: 4px !important;
    }

    .m-md-5 {
        margin: 5px !important;
    }

    .m-md-6 {
        margin: 6px !important;
    }

    .m-md-7 {
        margin: 7px !important;
    }

    .m-md-8 {
        margin: 8px !important;
    }

    .m-md-9 {
        margin: 9px !important;
    }

    .m-md-10 {
        margin: 10px !important;
    }

    .m-md-11 {
        margin: 11px !important;
    }

    .m-md-12 {
        margin: 12px !important;
    }

    .m-md-13 {
        margin: 13px !important;
    }

    .m-md-15 {
        margin: 15px !important;
    }

    .m-md-17 {
        margin: 17px !important;
    }

    .m-md-18 {
        margin: 18px !important;
    }

    .m-md-20 {
        margin: 20px !important;
    }

    .m-md-25 {
        margin: 25px !important;
    }

    .m-md-30 {
        margin: 30px !important;
    }

    .m-md-35 {
        margin: 35px !important;
    }

    .m-md-40 {
        margin: 40px !important;
    }

    .m-md-45 {
        margin: 45px !important;
    }

    .m-md-50 {
        margin: 50px !important;
    }

    .m-md-55 {
        margin: 55px !important;
    }

    .m-md-60 {
        margin: 60px !important;
    }

    .m-md-65 {
        margin: 65px !important;
    }

    .m-md-70 {
        margin: 70px !important;
    }

    .m-md-75 {
        margin: 75px !important;
    }

    .m-md-80 {
        margin: 80px !important;
    }

    .m-md-90 {
        margin: 90px !important;
    }

    .m-md-95 {
        margin: 95px !important;
    }

    .m-md-100 {
        margin: 100px !important;
    }

    .m-md-110 {
        margin: 110px !important;
    }

    .m-md-115 {
        margin: 115px !important;
    }

    .m-md-120 {
        margin: 120px !important;
    }

    .m-md-130 {
        margin: 130px !important;
    }

    .m-md-150 {
        margin: 150px !important;
    }

    .m-md-160 {
        margin: 160px !important;
    }

    .m-md-180 {
        margin: 180px !important;
    }

    .m-md-190 {
        margin: 190px !important;
    }

    .m-md-200 {
        margin: 200px !important;
    }

    .m-md-210 {
        margin: 210px !important;
    }

    .m-md-235 {
        margin: 235px !important;
    }

    .m-md-240 {
        margin: 240px !important;
    }

    .m-md-270 {
        margin: 270px !important;
    }

    .m-md-290 {
        margin: 290px !important;
    }

    .m-md-300 {
        margin: 300px !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mx-md-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-md-1 {
        margin-left: 1px !important;
        margin-right: 1px !important;
    }

    .mx-md-2 {
        margin-left: 2px !important;
        margin-right: 2px !important;
    }

    .mx-md-3 {
        margin-left: 3px !important;
        margin-right: 3px !important;
    }

    .mx-md-4 {
        margin-left: 4px !important;
        margin-right: 4px !important;
    }

    .mx-md-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .mx-md-6 {
        margin-left: 6px !important;
        margin-right: 6px !important;
    }

    .mx-md-7 {
        margin-left: 7px !important;
        margin-right: 7px !important;
    }

    .mx-md-8 {
        margin-left: 8px !important;
        margin-right: 8px !important;
    }

    .mx-md-9 {
        margin-left: 9px !important;
        margin-right: 9px !important;
    }

    .mx-md-10 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .mx-md-11 {
        margin-left: 11px !important;
        margin-right: 11px !important;
    }

    .mx-md-12 {
        margin-left: 12px !important;
        margin-right: 12px !important;
    }

    .mx-md-13 {
        margin-left: 13px !important;
        margin-right: 13px !important;
    }

    .mx-md-15 {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .mx-md-17 {
        margin-left: 17px !important;
        margin-right: 17px !important;
    }

    .mx-md-18 {
        margin-left: 18px !important;
        margin-right: 18px !important;
    }

    .mx-md-20 {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .mx-md-25 {
        margin-left: 25px !important;
        margin-right: 25px !important;
    }

    .mx-md-30 {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .mx-md-35 {
        margin-left: 35px !important;
        margin-right: 35px !important;
    }

    .mx-md-40 {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .mx-md-45 {
        margin-left: 45px !important;
        margin-right: 45px !important;
    }

    .mx-md-50 {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .mx-md-55 {
        margin-left: 55px !important;
        margin-right: 55px !important;
    }

    .mx-md-60 {
        margin-left: 60px !important;
        margin-right: 60px !important;
    }

    .mx-md-65 {
        margin-left: 65px !important;
        margin-right: 65px !important;
    }

    .mx-md-70 {
        margin-left: 70px !important;
        margin-right: 70px !important;
    }

    .mx-md-75 {
        margin-left: 75px !important;
        margin-right: 75px !important;
    }

    .mx-md-80 {
        margin-left: 80px !important;
        margin-right: 80px !important;
    }

    .mx-md-90 {
        margin-left: 90px !important;
        margin-right: 90px !important;
    }

    .mx-md-95 {
        margin-left: 95px !important;
        margin-right: 95px !important;
    }

    .mx-md-100 {
        margin-left: 100px !important;
        margin-right: 100px !important;
    }

    .mx-md-110 {
        margin-left: 110px !important;
        margin-right: 110px !important;
    }

    .mx-md-115 {
        margin-left: 115px !important;
        margin-right: 115px !important;
    }

    .mx-md-120 {
        margin-left: 120px !important;
        margin-right: 120px !important;
    }

    .mx-md-130 {
        margin-left: 130px !important;
        margin-right: 130px !important;
    }

    .mx-md-150 {
        margin-left: 150px !important;
        margin-right: 150px !important;
    }

    .mx-md-160 {
        margin-left: 160px !important;
        margin-right: 160px !important;
    }

    .mx-md-180 {
        margin-left: 180px !important;
        margin-right: 180px !important;
    }

    .mx-md-190 {
        margin-left: 190px !important;
        margin-right: 190px !important;
    }

    .mx-md-200 {
        margin-left: 200px !important;
        margin-right: 200px !important;
    }

    .mx-md-210 {
        margin-left: 210px !important;
        margin-right: 210px !important;
    }

    .mx-md-235 {
        margin-left: 235px !important;
        margin-right: 235px !important;
    }

    .mx-md-240 {
        margin-left: 240px !important;
        margin-right: 240px !important;
    }

    .mx-md-270 {
        margin-left: 270px !important;
        margin-right: 270px !important;
    }

    .mx-md-290 {
        margin-left: 290px !important;
        margin-right: 290px !important;
    }

    .mx-md-300 {
        margin-left: 300px !important;
        margin-right: 300px !important;
    }

    .mx-md-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-md-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-md-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important;
    }

    .my-md-2 {
        margin-top: 2px !important;
        margin-bottom: 2px !important;
    }

    .my-md-3 {
        margin-top: 3px !important;
        margin-bottom: 3px !important;
    }

    .my-md-4 {
        margin-top: 4px !important;
        margin-bottom: 4px !important;
    }

    .my-md-5 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .my-md-6 {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .my-md-7 {
        margin-top: 7px !important;
        margin-bottom: 7px !important;
    }

    .my-md-8 {
        margin-top: 8px !important;
        margin-bottom: 8px !important;
    }

    .my-md-9 {
        margin-top: 9px !important;
        margin-bottom: 9px !important;
    }

    .my-md-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .my-md-11 {
        margin-top: 11px !important;
        margin-bottom: 11px !important;
    }

    .my-md-12 {
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }

    .my-md-13 {
        margin-top: 13px !important;
        margin-bottom: 13px !important;
    }

    .my-md-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .my-md-17 {
        margin-top: 17px !important;
        margin-bottom: 17px !important;
    }

    .my-md-18 {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
    }

    .my-md-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .my-md-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important;
    }

    .my-md-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .my-md-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important;
    }

    .my-md-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .my-md-45 {
        margin-top: 45px !important;
        margin-bottom: 45px !important;
    }

    .my-md-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .my-md-55 {
        margin-top: 55px !important;
        margin-bottom: 55px !important;
    }

    .my-md-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .my-md-65 {
        margin-top: 65px !important;
        margin-bottom: 65px !important;
    }

    .my-md-70 {
        margin-top: 70px !important;
        margin-bottom: 70px !important;
    }

    .my-md-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important;
    }

    .my-md-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important;
    }

    .my-md-90 {
        margin-top: 90px !important;
        margin-bottom: 90px !important;
    }

    .my-md-95 {
        margin-top: 95px !important;
        margin-bottom: 95px !important;
    }

    .my-md-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important;
    }

    .my-md-110 {
        margin-top: 110px !important;
        margin-bottom: 110px !important;
    }

    .my-md-115 {
        margin-top: 115px !important;
        margin-bottom: 115px !important;
    }

    .my-md-120 {
        margin-top: 120px !important;
        margin-bottom: 120px !important;
    }

    .my-md-130 {
        margin-top: 130px !important;
        margin-bottom: 130px !important;
    }

    .my-md-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important;
    }

    .my-md-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important;
    }

    .my-md-180 {
        margin-top: 180px !important;
        margin-bottom: 180px !important;
    }

    .my-md-190 {
        margin-top: 190px !important;
        margin-bottom: 190px !important;
    }

    .my-md-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important;
    }

    .my-md-210 {
        margin-top: 210px !important;
        margin-bottom: 210px !important;
    }

    .my-md-235 {
        margin-top: 235px !important;
        margin-bottom: 235px !important;
    }

    .my-md-240 {
        margin-top: 240px !important;
        margin-bottom: 240px !important;
    }

    .my-md-270 {
        margin-top: 270px !important;
        margin-bottom: 270px !important;
    }

    .my-md-290 {
        margin-top: 290px !important;
        margin-bottom: 290px !important;
    }

    .my-md-300 {
        margin-top: 300px !important;
        margin-bottom: 300px !important;
    }

    .my-md-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mt-md-1 {
        margin-top: 1px !important;
    }

    .mt-md-2 {
        margin-top: 2px !important;
    }

    .mt-md-3 {
        margin-top: 3px !important;
    }

    .mt-md-4 {
        margin-top: 4px !important;
    }

    .mt-md-5 {
        margin-top: 5px !important;
    }

    .mt-md-6 {
        margin-top: 6px !important;
    }

    .mt-md-7 {
        margin-top: 7px !important;
    }

    .mt-md-8 {
        margin-top: 8px !important;
    }

    .mt-md-9 {
        margin-top: 9px !important;
    }

    .mt-md-10 {
        margin-top: 10px !important;
    }

    .mt-md-11 {
        margin-top: 11px !important;
    }

    .mt-md-12 {
        margin-top: 12px !important;
    }

    .mt-md-13 {
        margin-top: 13px !important;
    }

    .mt-md-15 {
        margin-top: 15px !important;
    }

    .mt-md-17 {
        margin-top: 17px !important;
    }

    .mt-md-18 {
        margin-top: 18px !important;
    }

    .mt-md-20 {
        margin-top: 20px !important;
    }

    .mt-md-25 {
        margin-top: 25px !important;
    }

    .mt-md-30 {
        margin-top: 30px !important;
    }

    .mt-md-35 {
        margin-top: 35px !important;
    }

    .mt-md-40 {
        margin-top: 40px !important;
    }

    .mt-md-45 {
        margin-top: 45px !important;
    }

    .mt-md-50 {
        margin-top: 50px !important;
    }

    .mt-md-55 {
        margin-top: 55px !important;
    }

    .mt-md-60 {
        margin-top: 60px !important;
    }

    .mt-md-65 {
        margin-top: 65px !important;
    }

    .mt-md-70 {
        margin-top: 70px !important;
    }

    .mt-md-75 {
        margin-top: 75px !important;
    }

    .mt-md-80 {
        margin-top: 80px !important;
    }

    .mt-md-90 {
        margin-top: 90px !important;
    }

    .mt-md-95 {
        margin-top: 95px !important;
    }

    .mt-md-100 {
        margin-top: 100px !important;
    }

    .mt-md-110 {
        margin-top: 110px !important;
    }

    .mt-md-115 {
        margin-top: 115px !important;
    }

    .mt-md-120 {
        margin-top: 120px !important;
    }

    .mt-md-130 {
        margin-top: 130px !important;
    }

    .mt-md-150 {
        margin-top: 150px !important;
    }

    .mt-md-160 {
        margin-top: 160px !important;
    }

    .mt-md-180 {
        margin-top: 180px !important;
    }

    .mt-md-190 {
        margin-top: 190px !important;
    }

    .mt-md-200 {
        margin-top: 200px !important;
    }

    .mt-md-210 {
        margin-top: 210px !important;
    }

    .mt-md-235 {
        margin-top: 235px !important;
    }

    .mt-md-240 {
        margin-top: 240px !important;
    }

    .mt-md-270 {
        margin-top: 270px !important;
    }

    .mt-md-290 {
        margin-top: 290px !important;
    }

    .mt-md-300 {
        margin-top: 300px !important;
    }

    .mt-md-auto {
        margin-top: auto !important;
    }

    .me-md-0 {
        margin-left: 0 !important;
    }

    .me-md-1 {
        margin-left: 1px !important;
    }

    .me-md-2 {
        margin-left: 2px !important;
    }

    .me-md-3 {
        margin-left: 3px !important;
    }

    .me-md-4 {
        margin-left: 4px !important;
    }

    .me-md-5 {
        margin-left: 5px !important;
    }

    .me-md-6 {
        margin-left: 6px !important;
    }

    .me-md-7 {
        margin-left: 7px !important;
    }

    .me-md-8 {
        margin-left: 8px !important;
    }

    .me-md-9 {
        margin-left: 9px !important;
    }

    .me-md-10 {
        margin-left: 10px !important;
    }

    .me-md-11 {
        margin-left: 11px !important;
    }

    .me-md-12 {
        margin-left: 12px !important;
    }

    .me-md-13 {
        margin-left: 13px !important;
    }

    .me-md-15 {
        margin-left: 15px !important;
    }

    .me-md-17 {
        margin-left: 17px !important;
    }

    .me-md-18 {
        margin-left: 18px !important;
    }

    .me-md-20 {
        margin-left: 20px !important;
    }

    .me-md-25 {
        margin-left: 25px !important;
    }

    .me-md-30 {
        margin-left: 30px !important;
    }

    .me-md-35 {
        margin-left: 35px !important;
    }

    .me-md-40 {
        margin-left: 40px !important;
    }

    .me-md-45 {
        margin-left: 45px !important;
    }

    .me-md-50 {
        margin-left: 50px !important;
    }

    .me-md-55 {
        margin-left: 55px !important;
    }

    .me-md-60 {
        margin-left: 60px !important;
    }

    .me-md-65 {
        margin-left: 65px !important;
    }

    .me-md-70 {
        margin-left: 70px !important;
    }

    .me-md-75 {
        margin-left: 75px !important;
    }

    .me-md-80 {
        margin-left: 80px !important;
    }

    .me-md-90 {
        margin-left: 90px !important;
    }

    .me-md-95 {
        margin-left: 95px !important;
    }

    .me-md-100 {
        margin-left: 100px !important;
    }

    .me-md-110 {
        margin-left: 110px !important;
    }

    .me-md-115 {
        margin-left: 115px !important;
    }

    .me-md-120 {
        margin-left: 120px !important;
    }

    .me-md-130 {
        margin-left: 130px !important;
    }

    .me-md-150 {
        margin-left: 150px !important;
    }

    .me-md-160 {
        margin-left: 160px !important;
    }

    .me-md-180 {
        margin-left: 180px !important;
    }

    .me-md-190 {
        margin-left: 190px !important;
    }

    .me-md-200 {
        margin-left: 200px !important;
    }

    .me-md-210 {
        margin-left: 210px !important;
    }

    .me-md-235 {
        margin-left: 235px !important;
    }

    .me-md-240 {
        margin-left: 240px !important;
    }

    .me-md-270 {
        margin-left: 270px !important;
    }

    .me-md-290 {
        margin-left: 290px !important;
    }

    .me-md-300 {
        margin-left: 300px !important;
    }

    .me-md-auto {
        margin-left: auto !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mb-md-1 {
        margin-bottom: 1px !important;
    }

    .mb-md-2 {
        margin-bottom: 2px !important;
    }

    .mb-md-3 {
        margin-bottom: 3px !important;
    }

    .mb-md-4 {
        margin-bottom: 4px !important;
    }

    .mb-md-5 {
        margin-bottom: 5px !important;
    }

    .mb-md-6 {
        margin-bottom: 6px !important;
    }

    .mb-md-7 {
        margin-bottom: 7px !important;
    }

    .mb-md-8 {
        margin-bottom: 8px !important;
    }

    .mb-md-9 {
        margin-bottom: 9px !important;
    }

    .mb-md-10 {
        margin-bottom: 10px !important;
    }

    .mb-md-11 {
        margin-bottom: 11px !important;
    }

    .mb-md-12 {
        margin-bottom: 12px !important;
    }

    .mb-md-13 {
        margin-bottom: 13px !important;
    }

    .mb-md-15 {
        margin-bottom: 15px !important;
    }

    .mb-md-17 {
        margin-bottom: 17px !important;
    }

    .mb-md-18 {
        margin-bottom: 18px !important;
    }

    .mb-md-20 {
        margin-bottom: 20px !important;
    }

    .mb-md-25 {
        margin-bottom: 25px !important;
    }

    .mb-md-30 {
        margin-bottom: 30px !important;
    }

    .mb-md-35 {
        margin-bottom: 35px !important;
    }

    .mb-md-40 {
        margin-bottom: 40px !important;
    }

    .mb-md-45 {
        margin-bottom: 45px !important;
    }

    .mb-md-50 {
        margin-bottom: 50px !important;
    }

    .mb-md-55 {
        margin-bottom: 55px !important;
    }

    .mb-md-60 {
        margin-bottom: 60px !important;
    }

    .mb-md-65 {
        margin-bottom: 65px !important;
    }

    .mb-md-70 {
        margin-bottom: 70px !important;
    }

    .mb-md-75 {
        margin-bottom: 75px !important;
    }

    .mb-md-80 {
        margin-bottom: 80px !important;
    }

    .mb-md-90 {
        margin-bottom: 90px !important;
    }

    .mb-md-95 {
        margin-bottom: 95px !important;
    }

    .mb-md-100 {
        margin-bottom: 100px !important;
    }

    .mb-md-110 {
        margin-bottom: 110px !important;
    }

    .mb-md-115 {
        margin-bottom: 115px !important;
    }

    .mb-md-120 {
        margin-bottom: 120px !important;
    }

    .mb-md-130 {
        margin-bottom: 130px !important;
    }

    .mb-md-150 {
        margin-bottom: 150px !important;
    }

    .mb-md-160 {
        margin-bottom: 160px !important;
    }

    .mb-md-180 {
        margin-bottom: 180px !important;
    }

    .mb-md-190 {
        margin-bottom: 190px !important;
    }

    .mb-md-200 {
        margin-bottom: 200px !important;
    }

    .mb-md-210 {
        margin-bottom: 210px !important;
    }

    .mb-md-235 {
        margin-bottom: 235px !important;
    }

    .mb-md-240 {
        margin-bottom: 240px !important;
    }

    .mb-md-270 {
        margin-bottom: 270px !important;
    }

    .mb-md-290 {
        margin-bottom: 290px !important;
    }

    .mb-md-300 {
        margin-bottom: 300px !important;
    }

    .mb-md-auto {
        margin-bottom: auto !important;
    }

    .ms-md-0 {
        margin-right: 0 !important;
    }

    .ms-md-1 {
        margin-right: 1px !important;
    }

    .ms-md-2 {
        margin-right: 2px !important;
    }

    .ms-md-3 {
        margin-right: 3px !important;
    }

    .ms-md-4 {
        margin-right: 4px !important;
    }

    .ms-md-5 {
        margin-right: 5px !important;
    }

    .ms-md-6 {
        margin-right: 6px !important;
    }

    .ms-md-7 {
        margin-right: 7px !important;
    }

    .ms-md-8 {
        margin-right: 8px !important;
    }

    .ms-md-9 {
        margin-right: 9px !important;
    }

    .ms-md-10 {
        margin-right: 10px !important;
    }

    .ms-md-11 {
        margin-right: 11px !important;
    }

    .ms-md-12 {
        margin-right: 12px !important;
    }

    .ms-md-13 {
        margin-right: 13px !important;
    }

    .ms-md-15 {
        margin-right: 15px !important;
    }

    .ms-md-17 {
        margin-right: 17px !important;
    }

    .ms-md-18 {
        margin-right: 18px !important;
    }

    .ms-md-20 {
        margin-right: 20px !important;
    }

    .ms-md-25 {
        margin-right: 25px !important;
    }

    .ms-md-30 {
        margin-right: 30px !important;
    }

    .ms-md-35 {
        margin-right: 35px !important;
    }

    .ms-md-40 {
        margin-right: 40px !important;
    }

    .ms-md-45 {
        margin-right: 45px !important;
    }

    .ms-md-50 {
        margin-right: 50px !important;
    }

    .ms-md-55 {
        margin-right: 55px !important;
    }

    .ms-md-60 {
        margin-right: 60px !important;
    }

    .ms-md-65 {
        margin-right: 65px !important;
    }

    .ms-md-70 {
        margin-right: 70px !important;
    }

    .ms-md-75 {
        margin-right: 75px !important;
    }

    .ms-md-80 {
        margin-right: 80px !important;
    }

    .ms-md-90 {
        margin-right: 90px !important;
    }

    .ms-md-95 {
        margin-right: 95px !important;
    }

    .ms-md-100 {
        margin-right: 100px !important;
    }

    .ms-md-110 {
        margin-right: 110px !important;
    }

    .ms-md-115 {
        margin-right: 115px !important;
    }

    .ms-md-120 {
        margin-right: 120px !important;
    }

    .ms-md-130 {
        margin-right: 130px !important;
    }

    .ms-md-150 {
        margin-right: 150px !important;
    }

    .ms-md-160 {
        margin-right: 160px !important;
    }

    .ms-md-180 {
        margin-right: 180px !important;
    }

    .ms-md-190 {
        margin-right: 190px !important;
    }

    .ms-md-200 {
        margin-right: 200px !important;
    }

    .ms-md-210 {
        margin-right: 210px !important;
    }

    .ms-md-235 {
        margin-right: 235px !important;
    }

    .ms-md-240 {
        margin-right: 240px !important;
    }

    .ms-md-270 {
        margin-right: 270px !important;
    }

    .ms-md-290 {
        margin-right: 290px !important;
    }

    .ms-md-300 {
        margin-right: 300px !important;
    }

    .ms-md-auto {
        margin-right: auto !important;
    }

    .m-md-n1 {
        margin: -1px !important;
    }

    .m-md-n2 {
        margin: -2px !important;
    }

    .m-md-n3 {
        margin: -3px !important;
    }

    .m-md-n4 {
        margin: -4px !important;
    }

    .m-md-n5 {
        margin: -5px !important;
    }

    .m-md-n6 {
        margin: -6px !important;
    }

    .m-md-n7 {
        margin: -7px !important;
    }

    .m-md-n8 {
        margin: -8px !important;
    }

    .m-md-n9 {
        margin: -9px !important;
    }

    .m-md-n10 {
        margin: -10px !important;
    }

    .m-md-n11 {
        margin: -11px !important;
    }

    .m-md-n12 {
        margin: -12px !important;
    }

    .m-md-n13 {
        margin: -13px !important;
    }

    .m-md-n15 {
        margin: -15px !important;
    }

    .m-md-n17 {
        margin: -17px !important;
    }

    .m-md-n18 {
        margin: -18px !important;
    }

    .m-md-n20 {
        margin: -20px !important;
    }

    .m-md-n25 {
        margin: -25px !important;
    }

    .m-md-n30 {
        margin: -30px !important;
    }

    .m-md-n35 {
        margin: -35px !important;
    }

    .m-md-n40 {
        margin: -40px !important;
    }

    .m-md-n45 {
        margin: -45px !important;
    }

    .m-md-n50 {
        margin: -50px !important;
    }

    .m-md-n55 {
        margin: -55px !important;
    }

    .m-md-n60 {
        margin: -60px !important;
    }

    .m-md-n65 {
        margin: -65px !important;
    }

    .m-md-n70 {
        margin: -70px !important;
    }

    .m-md-n75 {
        margin: -75px !important;
    }

    .m-md-n80 {
        margin: -80px !important;
    }

    .m-md-n90 {
        margin: -90px !important;
    }

    .m-md-n95 {
        margin: -95px !important;
    }

    .m-md-n100 {
        margin: -100px !important;
    }

    .m-md-n110 {
        margin: -110px !important;
    }

    .m-md-n115 {
        margin: -115px !important;
    }

    .m-md-n120 {
        margin: -120px !important;
    }

    .m-md-n130 {
        margin: -130px !important;
    }

    .m-md-n150 {
        margin: -150px !important;
    }

    .m-md-n160 {
        margin: -160px !important;
    }

    .m-md-n180 {
        margin: -180px !important;
    }

    .m-md-n190 {
        margin: -190px !important;
    }

    .m-md-n200 {
        margin: -200px !important;
    }

    .m-md-n210 {
        margin: -210px !important;
    }

    .m-md-n235 {
        margin: -235px !important;
    }

    .m-md-n240 {
        margin: -240px !important;
    }

    .m-md-n270 {
        margin: -270px !important;
    }

    .m-md-n290 {
        margin: -290px !important;
    }

    .m-md-n300 {
        margin: -300px !important;
    }

    .mx-md-n1 {
        margin-left: -1px !important;
        margin-right: -1px !important;
    }

    .mx-md-n2 {
        margin-left: -2px !important;
        margin-right: -2px !important;
    }

    .mx-md-n3 {
        margin-left: -3px !important;
        margin-right: -3px !important;
    }

    .mx-md-n4 {
        margin-left: -4px !important;
        margin-right: -4px !important;
    }

    .mx-md-n5 {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .mx-md-n6 {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .mx-md-n7 {
        margin-left: -7px !important;
        margin-right: -7px !important;
    }

    .mx-md-n8 {
        margin-left: -8px !important;
        margin-right: -8px !important;
    }

    .mx-md-n9 {
        margin-left: -9px !important;
        margin-right: -9px !important;
    }

    .mx-md-n10 {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .mx-md-n11 {
        margin-left: -11px !important;
        margin-right: -11px !important;
    }

    .mx-md-n12 {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }

    .mx-md-n13 {
        margin-left: -13px !important;
        margin-right: -13px !important;
    }

    .mx-md-n15 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .mx-md-n17 {
        margin-left: -17px !important;
        margin-right: -17px !important;
    }

    .mx-md-n18 {
        margin-left: -18px !important;
        margin-right: -18px !important;
    }

    .mx-md-n20 {
        margin-left: -20px !important;
        margin-right: -20px !important;
    }

    .mx-md-n25 {
        margin-left: -25px !important;
        margin-right: -25px !important;
    }

    .mx-md-n30 {
        margin-left: -30px !important;
        margin-right: -30px !important;
    }

    .mx-md-n35 {
        margin-left: -35px !important;
        margin-right: -35px !important;
    }

    .mx-md-n40 {
        margin-left: -40px !important;
        margin-right: -40px !important;
    }

    .mx-md-n45 {
        margin-left: -45px !important;
        margin-right: -45px !important;
    }

    .mx-md-n50 {
        margin-left: -50px !important;
        margin-right: -50px !important;
    }

    .mx-md-n55 {
        margin-left: -55px !important;
        margin-right: -55px !important;
    }

    .mx-md-n60 {
        margin-left: -60px !important;
        margin-right: -60px !important;
    }

    .mx-md-n65 {
        margin-left: -65px !important;
        margin-right: -65px !important;
    }

    .mx-md-n70 {
        margin-left: -70px !important;
        margin-right: -70px !important;
    }

    .mx-md-n75 {
        margin-left: -75px !important;
        margin-right: -75px !important;
    }

    .mx-md-n80 {
        margin-left: -80px !important;
        margin-right: -80px !important;
    }

    .mx-md-n90 {
        margin-left: -90px !important;
        margin-right: -90px !important;
    }

    .mx-md-n95 {
        margin-left: -95px !important;
        margin-right: -95px !important;
    }

    .mx-md-n100 {
        margin-left: -100px !important;
        margin-right: -100px !important;
    }

    .mx-md-n110 {
        margin-left: -110px !important;
        margin-right: -110px !important;
    }

    .mx-md-n115 {
        margin-left: -115px !important;
        margin-right: -115px !important;
    }

    .mx-md-n120 {
        margin-left: -120px !important;
        margin-right: -120px !important;
    }

    .mx-md-n130 {
        margin-left: -130px !important;
        margin-right: -130px !important;
    }

    .mx-md-n150 {
        margin-left: -150px !important;
        margin-right: -150px !important;
    }

    .mx-md-n160 {
        margin-left: -160px !important;
        margin-right: -160px !important;
    }

    .mx-md-n180 {
        margin-left: -180px !important;
        margin-right: -180px !important;
    }

    .mx-md-n190 {
        margin-left: -190px !important;
        margin-right: -190px !important;
    }

    .mx-md-n200 {
        margin-left: -200px !important;
        margin-right: -200px !important;
    }

    .mx-md-n210 {
        margin-left: -210px !important;
        margin-right: -210px !important;
    }

    .mx-md-n235 {
        margin-left: -235px !important;
        margin-right: -235px !important;
    }

    .mx-md-n240 {
        margin-left: -240px !important;
        margin-right: -240px !important;
    }

    .mx-md-n270 {
        margin-left: -270px !important;
        margin-right: -270px !important;
    }

    .mx-md-n290 {
        margin-left: -290px !important;
        margin-right: -290px !important;
    }

    .mx-md-n300 {
        margin-left: -300px !important;
        margin-right: -300px !important;
    }

    .my-md-n1 {
        margin-top: -1px !important;
        margin-bottom: -1px !important;
    }

    .my-md-n2 {
        margin-top: -2px !important;
        margin-bottom: -2px !important;
    }

    .my-md-n3 {
        margin-top: -3px !important;
        margin-bottom: -3px !important;
    }

    .my-md-n4 {
        margin-top: -4px !important;
        margin-bottom: -4px !important;
    }

    .my-md-n5 {
        margin-top: -5px !important;
        margin-bottom: -5px !important;
    }

    .my-md-n6 {
        margin-top: -6px !important;
        margin-bottom: -6px !important;
    }

    .my-md-n7 {
        margin-top: -7px !important;
        margin-bottom: -7px !important;
    }

    .my-md-n8 {
        margin-top: -8px !important;
        margin-bottom: -8px !important;
    }

    .my-md-n9 {
        margin-top: -9px !important;
        margin-bottom: -9px !important;
    }

    .my-md-n10 {
        margin-top: -10px !important;
        margin-bottom: -10px !important;
    }

    .my-md-n11 {
        margin-top: -11px !important;
        margin-bottom: -11px !important;
    }

    .my-md-n12 {
        margin-top: -12px !important;
        margin-bottom: -12px !important;
    }

    .my-md-n13 {
        margin-top: -13px !important;
        margin-bottom: -13px !important;
    }

    .my-md-n15 {
        margin-top: -15px !important;
        margin-bottom: -15px !important;
    }

    .my-md-n17 {
        margin-top: -17px !important;
        margin-bottom: -17px !important;
    }

    .my-md-n18 {
        margin-top: -18px !important;
        margin-bottom: -18px !important;
    }

    .my-md-n20 {
        margin-top: -20px !important;
        margin-bottom: -20px !important;
    }

    .my-md-n25 {
        margin-top: -25px !important;
        margin-bottom: -25px !important;
    }

    .my-md-n30 {
        margin-top: -30px !important;
        margin-bottom: -30px !important;
    }

    .my-md-n35 {
        margin-top: -35px !important;
        margin-bottom: -35px !important;
    }

    .my-md-n40 {
        margin-top: -40px !important;
        margin-bottom: -40px !important;
    }

    .my-md-n45 {
        margin-top: -45px !important;
        margin-bottom: -45px !important;
    }

    .my-md-n50 {
        margin-top: -50px !important;
        margin-bottom: -50px !important;
    }

    .my-md-n55 {
        margin-top: -55px !important;
        margin-bottom: -55px !important;
    }

    .my-md-n60 {
        margin-top: -60px !important;
        margin-bottom: -60px !important;
    }

    .my-md-n65 {
        margin-top: -65px !important;
        margin-bottom: -65px !important;
    }

    .my-md-n70 {
        margin-top: -70px !important;
        margin-bottom: -70px !important;
    }

    .my-md-n75 {
        margin-top: -75px !important;
        margin-bottom: -75px !important;
    }

    .my-md-n80 {
        margin-top: -80px !important;
        margin-bottom: -80px !important;
    }

    .my-md-n90 {
        margin-top: -90px !important;
        margin-bottom: -90px !important;
    }

    .my-md-n95 {
        margin-top: -95px !important;
        margin-bottom: -95px !important;
    }

    .my-md-n100 {
        margin-top: -100px !important;
        margin-bottom: -100px !important;
    }

    .my-md-n110 {
        margin-top: -110px !important;
        margin-bottom: -110px !important;
    }

    .my-md-n115 {
        margin-top: -115px !important;
        margin-bottom: -115px !important;
    }

    .my-md-n120 {
        margin-top: -120px !important;
        margin-bottom: -120px !important;
    }

    .my-md-n130 {
        margin-top: -130px !important;
        margin-bottom: -130px !important;
    }

    .my-md-n150 {
        margin-top: -150px !important;
        margin-bottom: -150px !important;
    }

    .my-md-n160 {
        margin-top: -160px !important;
        margin-bottom: -160px !important;
    }

    .my-md-n180 {
        margin-top: -180px !important;
        margin-bottom: -180px !important;
    }

    .my-md-n190 {
        margin-top: -190px !important;
        margin-bottom: -190px !important;
    }

    .my-md-n200 {
        margin-top: -200px !important;
        margin-bottom: -200px !important;
    }

    .my-md-n210 {
        margin-top: -210px !important;
        margin-bottom: -210px !important;
    }

    .my-md-n235 {
        margin-top: -235px !important;
        margin-bottom: -235px !important;
    }

    .my-md-n240 {
        margin-top: -240px !important;
        margin-bottom: -240px !important;
    }

    .my-md-n270 {
        margin-top: -270px !important;
        margin-bottom: -270px !important;
    }

    .my-md-n290 {
        margin-top: -290px !important;
        margin-bottom: -290px !important;
    }

    .my-md-n300 {
        margin-top: -300px !important;
        margin-bottom: -300px !important;
    }

    .mt-md-n1 {
        margin-top: -1px !important;
    }

    .mt-md-n2 {
        margin-top: -2px !important;
    }

    .mt-md-n3 {
        margin-top: -3px !important;
    }

    .mt-md-n4 {
        margin-top: -4px !important;
    }

    .mt-md-n5 {
        margin-top: -5px !important;
    }

    .mt-md-n6 {
        margin-top: -6px !important;
    }

    .mt-md-n7 {
        margin-top: -7px !important;
    }

    .mt-md-n8 {
        margin-top: -8px !important;
    }

    .mt-md-n9 {
        margin-top: -9px !important;
    }

    .mt-md-n10 {
        margin-top: -10px !important;
    }

    .mt-md-n11 {
        margin-top: -11px !important;
    }

    .mt-md-n12 {
        margin-top: -12px !important;
    }

    .mt-md-n13 {
        margin-top: -13px !important;
    }

    .mt-md-n15 {
        margin-top: -15px !important;
    }

    .mt-md-n17 {
        margin-top: -17px !important;
    }

    .mt-md-n18 {
        margin-top: -18px !important;
    }

    .mt-md-n20 {
        margin-top: -20px !important;
    }

    .mt-md-n25 {
        margin-top: -25px !important;
    }

    .mt-md-n30 {
        margin-top: -30px !important;
    }

    .mt-md-n35 {
        margin-top: -35px !important;
    }

    .mt-md-n40 {
        margin-top: -40px !important;
    }

    .mt-md-n45 {
        margin-top: -45px !important;
    }

    .mt-md-n50 {
        margin-top: -50px !important;
    }

    .mt-md-n55 {
        margin-top: -55px !important;
    }

    .mt-md-n60 {
        margin-top: -60px !important;
    }

    .mt-md-n65 {
        margin-top: -65px !important;
    }

    .mt-md-n70 {
        margin-top: -70px !important;
    }

    .mt-md-n75 {
        margin-top: -75px !important;
    }

    .mt-md-n80 {
        margin-top: -80px !important;
    }

    .mt-md-n90 {
        margin-top: -90px !important;
    }

    .mt-md-n95 {
        margin-top: -95px !important;
    }

    .mt-md-n100 {
        margin-top: -100px !important;
    }

    .mt-md-n110 {
        margin-top: -110px !important;
    }

    .mt-md-n115 {
        margin-top: -115px !important;
    }

    .mt-md-n120 {
        margin-top: -120px !important;
    }

    .mt-md-n130 {
        margin-top: -130px !important;
    }

    .mt-md-n150 {
        margin-top: -150px !important;
    }

    .mt-md-n160 {
        margin-top: -160px !important;
    }

    .mt-md-n180 {
        margin-top: -180px !important;
    }

    .mt-md-n190 {
        margin-top: -190px !important;
    }

    .mt-md-n200 {
        margin-top: -200px !important;
    }

    .mt-md-n210 {
        margin-top: -210px !important;
    }

    .mt-md-n235 {
        margin-top: -235px !important;
    }

    .mt-md-n240 {
        margin-top: -240px !important;
    }

    .mt-md-n270 {
        margin-top: -270px !important;
    }

    .mt-md-n290 {
        margin-top: -290px !important;
    }

    .mt-md-n300 {
        margin-top: -300px !important;
    }

    .me-md-n1 {
        margin-left: -1px !important;
    }

    .me-md-n2 {
        margin-left: -2px !important;
    }

    .me-md-n3 {
        margin-left: -3px !important;
    }

    .me-md-n4 {
        margin-left: -4px !important;
    }

    .me-md-n5 {
        margin-left: -5px !important;
    }

    .me-md-n6 {
        margin-left: -6px !important;
    }

    .me-md-n7 {
        margin-left: -7px !important;
    }

    .me-md-n8 {
        margin-left: -8px !important;
    }

    .me-md-n9 {
        margin-left: -9px !important;
    }

    .me-md-n10 {
        margin-left: -10px !important;
    }

    .me-md-n11 {
        margin-left: -11px !important;
    }

    .me-md-n12 {
        margin-left: -12px !important;
    }

    .me-md-n13 {
        margin-left: -13px !important;
    }

    .me-md-n15 {
        margin-left: -15px !important;
    }

    .me-md-n17 {
        margin-left: -17px !important;
    }

    .me-md-n18 {
        margin-left: -18px !important;
    }

    .me-md-n20 {
        margin-left: -20px !important;
    }

    .me-md-n25 {
        margin-left: -25px !important;
    }

    .me-md-n30 {
        margin-left: -30px !important;
    }

    .me-md-n35 {
        margin-left: -35px !important;
    }

    .me-md-n40 {
        margin-left: -40px !important;
    }

    .me-md-n45 {
        margin-left: -45px !important;
    }

    .me-md-n50 {
        margin-left: -50px !important;
    }

    .me-md-n55 {
        margin-left: -55px !important;
    }

    .me-md-n60 {
        margin-left: -60px !important;
    }

    .me-md-n65 {
        margin-left: -65px !important;
    }

    .me-md-n70 {
        margin-left: -70px !important;
    }

    .me-md-n75 {
        margin-left: -75px !important;
    }

    .me-md-n80 {
        margin-left: -80px !important;
    }

    .me-md-n90 {
        margin-left: -90px !important;
    }

    .me-md-n95 {
        margin-left: -95px !important;
    }

    .me-md-n100 {
        margin-left: -100px !important;
    }

    .me-md-n110 {
        margin-left: -110px !important;
    }

    .me-md-n115 {
        margin-left: -115px !important;
    }

    .me-md-n120 {
        margin-left: -120px !important;
    }

    .me-md-n130 {
        margin-left: -130px !important;
    }

    .me-md-n150 {
        margin-left: -150px !important;
    }

    .me-md-n160 {
        margin-left: -160px !important;
    }

    .me-md-n180 {
        margin-left: -180px !important;
    }

    .me-md-n190 {
        margin-left: -190px !important;
    }

    .me-md-n200 {
        margin-left: -200px !important;
    }

    .me-md-n210 {
        margin-left: -210px !important;
    }

    .me-md-n235 {
        margin-left: -235px !important;
    }

    .me-md-n240 {
        margin-left: -240px !important;
    }

    .me-md-n270 {
        margin-left: -270px !important;
    }

    .me-md-n290 {
        margin-left: -290px !important;
    }

    .me-md-n300 {
        margin-left: -300px !important;
    }

    .mb-md-n1 {
        margin-bottom: -1px !important;
    }

    .mb-md-n2 {
        margin-bottom: -2px !important;
    }

    .mb-md-n3 {
        margin-bottom: -3px !important;
    }

    .mb-md-n4 {
        margin-bottom: -4px !important;
    }

    .mb-md-n5 {
        margin-bottom: -5px !important;
    }

    .mb-md-n6 {
        margin-bottom: -6px !important;
    }

    .mb-md-n7 {
        margin-bottom: -7px !important;
    }

    .mb-md-n8 {
        margin-bottom: -8px !important;
    }

    .mb-md-n9 {
        margin-bottom: -9px !important;
    }

    .mb-md-n10 {
        margin-bottom: -10px !important;
    }

    .mb-md-n11 {
        margin-bottom: -11px !important;
    }

    .mb-md-n12 {
        margin-bottom: -12px !important;
    }

    .mb-md-n13 {
        margin-bottom: -13px !important;
    }

    .mb-md-n15 {
        margin-bottom: -15px !important;
    }

    .mb-md-n17 {
        margin-bottom: -17px !important;
    }

    .mb-md-n18 {
        margin-bottom: -18px !important;
    }

    .mb-md-n20 {
        margin-bottom: -20px !important;
    }

    .mb-md-n25 {
        margin-bottom: -25px !important;
    }

    .mb-md-n30 {
        margin-bottom: -30px !important;
    }

    .mb-md-n35 {
        margin-bottom: -35px !important;
    }

    .mb-md-n40 {
        margin-bottom: -40px !important;
    }

    .mb-md-n45 {
        margin-bottom: -45px !important;
    }

    .mb-md-n50 {
        margin-bottom: -50px !important;
    }

    .mb-md-n55 {
        margin-bottom: -55px !important;
    }

    .mb-md-n60 {
        margin-bottom: -60px !important;
    }

    .mb-md-n65 {
        margin-bottom: -65px !important;
    }

    .mb-md-n70 {
        margin-bottom: -70px !important;
    }

    .mb-md-n75 {
        margin-bottom: -75px !important;
    }

    .mb-md-n80 {
        margin-bottom: -80px !important;
    }

    .mb-md-n90 {
        margin-bottom: -90px !important;
    }

    .mb-md-n95 {
        margin-bottom: -95px !important;
    }

    .mb-md-n100 {
        margin-bottom: -100px !important;
    }

    .mb-md-n110 {
        margin-bottom: -110px !important;
    }

    .mb-md-n115 {
        margin-bottom: -115px !important;
    }

    .mb-md-n120 {
        margin-bottom: -120px !important;
    }

    .mb-md-n130 {
        margin-bottom: -130px !important;
    }

    .mb-md-n150 {
        margin-bottom: -150px !important;
    }

    .mb-md-n160 {
        margin-bottom: -160px !important;
    }

    .mb-md-n180 {
        margin-bottom: -180px !important;
    }

    .mb-md-n190 {
        margin-bottom: -190px !important;
    }

    .mb-md-n200 {
        margin-bottom: -200px !important;
    }

    .mb-md-n210 {
        margin-bottom: -210px !important;
    }

    .mb-md-n235 {
        margin-bottom: -235px !important;
    }

    .mb-md-n240 {
        margin-bottom: -240px !important;
    }

    .mb-md-n270 {
        margin-bottom: -270px !important;
    }

    .mb-md-n290 {
        margin-bottom: -290px !important;
    }

    .mb-md-n300 {
        margin-bottom: -300px !important;
    }

    .ms-md-n1 {
        margin-right: -1px !important;
    }

    .ms-md-n2 {
        margin-right: -2px !important;
    }

    .ms-md-n3 {
        margin-right: -3px !important;
    }

    .ms-md-n4 {
        margin-right: -4px !important;
    }

    .ms-md-n5 {
        margin-right: -5px !important;
    }

    .ms-md-n6 {
        margin-right: -6px !important;
    }

    .ms-md-n7 {
        margin-right: -7px !important;
    }

    .ms-md-n8 {
        margin-right: -8px !important;
    }

    .ms-md-n9 {
        margin-right: -9px !important;
    }

    .ms-md-n10 {
        margin-right: -10px !important;
    }

    .ms-md-n11 {
        margin-right: -11px !important;
    }

    .ms-md-n12 {
        margin-right: -12px !important;
    }

    .ms-md-n13 {
        margin-right: -13px !important;
    }

    .ms-md-n15 {
        margin-right: -15px !important;
    }

    .ms-md-n17 {
        margin-right: -17px !important;
    }

    .ms-md-n18 {
        margin-right: -18px !important;
    }

    .ms-md-n20 {
        margin-right: -20px !important;
    }

    .ms-md-n25 {
        margin-right: -25px !important;
    }

    .ms-md-n30 {
        margin-right: -30px !important;
    }

    .ms-md-n35 {
        margin-right: -35px !important;
    }

    .ms-md-n40 {
        margin-right: -40px !important;
    }

    .ms-md-n45 {
        margin-right: -45px !important;
    }

    .ms-md-n50 {
        margin-right: -50px !important;
    }

    .ms-md-n55 {
        margin-right: -55px !important;
    }

    .ms-md-n60 {
        margin-right: -60px !important;
    }

    .ms-md-n65 {
        margin-right: -65px !important;
    }

    .ms-md-n70 {
        margin-right: -70px !important;
    }

    .ms-md-n75 {
        margin-right: -75px !important;
    }

    .ms-md-n80 {
        margin-right: -80px !important;
    }

    .ms-md-n90 {
        margin-right: -90px !important;
    }

    .ms-md-n95 {
        margin-right: -95px !important;
    }

    .ms-md-n100 {
        margin-right: -100px !important;
    }

    .ms-md-n110 {
        margin-right: -110px !important;
    }

    .ms-md-n115 {
        margin-right: -115px !important;
    }

    .ms-md-n120 {
        margin-right: -120px !important;
    }

    .ms-md-n130 {
        margin-right: -130px !important;
    }

    .ms-md-n150 {
        margin-right: -150px !important;
    }

    .ms-md-n160 {
        margin-right: -160px !important;
    }

    .ms-md-n180 {
        margin-right: -180px !important;
    }

    .ms-md-n190 {
        margin-right: -190px !important;
    }

    .ms-md-n200 {
        margin-right: -200px !important;
    }

    .ms-md-n210 {
        margin-right: -210px !important;
    }

    .ms-md-n235 {
        margin-right: -235px !important;
    }

    .ms-md-n240 {
        margin-right: -240px !important;
    }

    .ms-md-n270 {
        margin-right: -270px !important;
    }

    .ms-md-n290 {
        margin-right: -290px !important;
    }

    .ms-md-n300 {
        margin-right: -300px !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .p-md-1 {
        padding: 1px !important;
    }

    .p-md-2 {
        padding: 2px !important;
    }

    .p-md-3 {
        padding: 3px !important;
    }

    .p-md-4 {
        padding: 4px !important;
    }

    .p-md-5 {
        padding: 5px !important;
    }

    .p-md-6 {
        padding: 6px !important;
    }

    .p-md-7 {
        padding: 7px !important;
    }

    .p-md-8 {
        padding: 8px !important;
    }

    .p-md-9 {
        padding: 9px !important;
    }

    .p-md-10 {
        padding: 10px !important;
    }

    .p-md-11 {
        padding: 11px !important;
    }

    .p-md-12 {
        padding: 12px !important;
    }

    .p-md-13 {
        padding: 13px !important;
    }

    .p-md-15 {
        padding: 15px !important;
    }

    .p-md-17 {
        padding: 17px !important;
    }

    .p-md-18 {
        padding: 18px !important;
    }

    .p-md-20 {
        padding: 20px !important;
    }

    .p-md-25 {
        padding: 25px !important;
    }

    .p-md-30 {
        padding: 30px !important;
    }

    .p-md-35 {
        padding: 35px !important;
    }

    .p-md-40 {
        padding: 40px !important;
    }

    .p-md-45 {
        padding: 45px !important;
    }

    .p-md-50 {
        padding: 50px !important;
    }

    .p-md-55 {
        padding: 55px !important;
    }

    .p-md-60 {
        padding: 60px !important;
    }

    .p-md-65 {
        padding: 65px !important;
    }

    .p-md-70 {
        padding: 70px !important;
    }

    .p-md-75 {
        padding: 75px !important;
    }

    .p-md-80 {
        padding: 80px !important;
    }

    .p-md-90 {
        padding: 90px !important;
    }

    .p-md-95 {
        padding: 95px !important;
    }

    .p-md-100 {
        padding: 100px !important;
    }

    .p-md-110 {
        padding: 110px !important;
    }

    .p-md-115 {
        padding: 115px !important;
    }

    .p-md-120 {
        padding: 120px !important;
    }

    .p-md-130 {
        padding: 130px !important;
    }

    .p-md-150 {
        padding: 150px !important;
    }

    .p-md-160 {
        padding: 160px !important;
    }

    .p-md-180 {
        padding: 180px !important;
    }

    .p-md-190 {
        padding: 190px !important;
    }

    .p-md-200 {
        padding: 200px !important;
    }

    .p-md-210 {
        padding: 210px !important;
    }

    .p-md-235 {
        padding: 235px !important;
    }

    .p-md-240 {
        padding: 240px !important;
    }

    .p-md-270 {
        padding: 270px !important;
    }

    .p-md-290 {
        padding: 290px !important;
    }

    .p-md-300 {
        padding: 300px !important;
    }

    .px-md-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-md-1 {
        padding-left: 1px !important;
        padding-right: 1px !important;
    }

    .px-md-2 {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .px-md-3 {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }

    .px-md-4 {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .px-md-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .px-md-6 {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .px-md-7 {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .px-md-8 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .px-md-9 {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .px-md-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .px-md-11 {
        padding-left: 11px !important;
        padding-right: 11px !important;
    }

    .px-md-12 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .px-md-13 {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .px-md-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .px-md-17 {
        padding-left: 17px !important;
        padding-right: 17px !important;
    }

    .px-md-18 {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .px-md-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .px-md-25 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .px-md-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .px-md-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    .px-md-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .px-md-45 {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }

    .px-md-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .px-md-55 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }

    .px-md-60 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    .px-md-65 {
        padding-left: 65px !important;
        padding-right: 65px !important;
    }

    .px-md-70 {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }

    .px-md-75 {
        padding-left: 75px !important;
        padding-right: 75px !important;
    }

    .px-md-80 {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .px-md-90 {
        padding-left: 90px !important;
        padding-right: 90px !important;
    }

    .px-md-95 {
        padding-left: 95px !important;
        padding-right: 95px !important;
    }

    .px-md-100 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }

    .px-md-110 {
        padding-left: 110px !important;
        padding-right: 110px !important;
    }

    .px-md-115 {
        padding-left: 115px !important;
        padding-right: 115px !important;
    }

    .px-md-120 {
        padding-left: 120px !important;
        padding-right: 120px !important;
    }

    .px-md-130 {
        padding-left: 130px !important;
        padding-right: 130px !important;
    }

    .px-md-150 {
        padding-left: 150px !important;
        padding-right: 150px !important;
    }

    .px-md-160 {
        padding-left: 160px !important;
        padding-right: 160px !important;
    }

    .px-md-180 {
        padding-left: 180px !important;
        padding-right: 180px !important;
    }

    .px-md-190 {
        padding-left: 190px !important;
        padding-right: 190px !important;
    }

    .px-md-200 {
        padding-left: 200px !important;
        padding-right: 200px !important;
    }

    .px-md-210 {
        padding-left: 210px !important;
        padding-right: 210px !important;
    }

    .px-md-235 {
        padding-left: 235px !important;
        padding-right: 235px !important;
    }

    .px-md-240 {
        padding-left: 240px !important;
        padding-right: 240px !important;
    }

    .px-md-270 {
        padding-left: 270px !important;
        padding-right: 270px !important;
    }

    .px-md-290 {
        padding-left: 290px !important;
        padding-right: 290px !important;
    }

    .px-md-300 {
        padding-left: 300px !important;
        padding-right: 300px !important;
    }

    .py-md-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-md-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important;
    }

    .py-md-2 {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .py-md-3 {
        padding-top: 3px !important;
        padding-bottom: 3px !important;
    }

    .py-md-4 {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .py-md-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .py-md-6 {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .py-md-7 {
        padding-top: 7px !important;
        padding-bottom: 7px !important;
    }

    .py-md-8 {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .py-md-9 {
        padding-top: 9px !important;
        padding-bottom: 9px !important;
    }

    .py-md-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .py-md-11 {
        padding-top: 11px !important;
        padding-bottom: 11px !important;
    }

    .py-md-12 {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .py-md-13 {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    .py-md-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .py-md-17 {
        padding-top: 17px !important;
        padding-bottom: 17px !important;
    }

    .py-md-18 {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .py-md-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .py-md-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .py-md-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .py-md-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .py-md-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .py-md-45 {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .py-md-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .py-md-55 {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .py-md-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .py-md-65 {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .py-md-70 {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .py-md-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }

    .py-md-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .py-md-90 {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }

    .py-md-95 {
        padding-top: 95px !important;
        padding-bottom: 95px !important;
    }

    .py-md-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .py-md-110 {
        padding-top: 110px !important;
        padding-bottom: 110px !important;
    }

    .py-md-115 {
        padding-top: 115px !important;
        padding-bottom: 115px !important;
    }

    .py-md-120 {
        padding-top: 120px !important;
        padding-bottom: 120px !important;
    }

    .py-md-130 {
        padding-top: 130px !important;
        padding-bottom: 130px !important;
    }

    .py-md-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }

    .py-md-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important;
    }

    .py-md-180 {
        padding-top: 180px !important;
        padding-bottom: 180px !important;
    }

    .py-md-190 {
        padding-top: 190px !important;
        padding-bottom: 190px !important;
    }

    .py-md-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important;
    }

    .py-md-210 {
        padding-top: 210px !important;
        padding-bottom: 210px !important;
    }

    .py-md-235 {
        padding-top: 235px !important;
        padding-bottom: 235px !important;
    }

    .py-md-240 {
        padding-top: 240px !important;
        padding-bottom: 240px !important;
    }

    .py-md-270 {
        padding-top: 270px !important;
        padding-bottom: 270px !important;
    }

    .py-md-290 {
        padding-top: 290px !important;
        padding-bottom: 290px !important;
    }

    .py-md-300 {
        padding-top: 300px !important;
        padding-bottom: 300px !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .pt-md-1 {
        padding-top: 1px !important;
    }

    .pt-md-2 {
        padding-top: 2px !important;
    }

    .pt-md-3 {
        padding-top: 3px !important;
    }

    .pt-md-4 {
        padding-top: 4px !important;
    }

    .pt-md-5 {
        padding-top: 5px !important;
    }

    .pt-md-6 {
        padding-top: 6px !important;
    }

    .pt-md-7 {
        padding-top: 7px !important;
    }

    .pt-md-8 {
        padding-top: 8px !important;
    }

    .pt-md-9 {
        padding-top: 9px !important;
    }

    .pt-md-10 {
        padding-top: 10px !important;
    }

    .pt-md-11 {
        padding-top: 11px !important;
    }

    .pt-md-12 {
        padding-top: 12px !important;
    }

    .pt-md-13 {
        padding-top: 13px !important;
    }

    .pt-md-15 {
        padding-top: 15px !important;
    }

    .pt-md-17 {
        padding-top: 17px !important;
    }

    .pt-md-18 {
        padding-top: 18px !important;
    }

    .pt-md-20 {
        padding-top: 20px !important;
    }

    .pt-md-25 {
        padding-top: 25px !important;
    }

    .pt-md-30 {
        padding-top: 30px !important;
    }

    .pt-md-35 {
        padding-top: 35px !important;
    }

    .pt-md-40 {
        padding-top: 40px !important;
    }

    .pt-md-45 {
        padding-top: 45px !important;
    }

    .pt-md-50 {
        padding-top: 50px !important;
    }

    .pt-md-55 {
        padding-top: 55px !important;
    }

    .pt-md-60 {
        padding-top: 60px !important;
    }

    .pt-md-65 {
        padding-top: 65px !important;
    }

    .pt-md-70 {
        padding-top: 70px !important;
    }

    .pt-md-75 {
        padding-top: 75px !important;
    }

    .pt-md-80 {
        padding-top: 80px !important;
    }

    .pt-md-90 {
        padding-top: 90px !important;
    }

    .pt-md-95 {
        padding-top: 95px !important;
    }

    .pt-md-100 {
        padding-top: 100px !important;
    }

    .pt-md-110 {
        padding-top: 110px !important;
    }

    .pt-md-115 {
        padding-top: 115px !important;
    }

    .pt-md-120 {
        padding-top: 120px !important;
    }

    .pt-md-130 {
        padding-top: 130px !important;
    }

    .pt-md-150 {
        padding-top: 150px !important;
    }

    .pt-md-160 {
        padding-top: 160px !important;
    }

    .pt-md-180 {
        padding-top: 180px !important;
    }

    .pt-md-190 {
        padding-top: 190px !important;
    }

    .pt-md-200 {
        padding-top: 200px !important;
    }

    .pt-md-210 {
        padding-top: 210px !important;
    }

    .pt-md-235 {
        padding-top: 235px !important;
    }

    .pt-md-240 {
        padding-top: 240px !important;
    }

    .pt-md-270 {
        padding-top: 270px !important;
    }

    .pt-md-290 {
        padding-top: 290px !important;
    }

    .pt-md-300 {
        padding-top: 300px !important;
    }

    .pe-md-0 {
        padding-left: 0 !important;
    }

    .pe-md-1 {
        padding-left: 1px !important;
    }

    .pe-md-2 {
        padding-left: 2px !important;
    }

    .pe-md-3 {
        padding-left: 3px !important;
    }

    .pe-md-4 {
        padding-left: 4px !important;
    }

    .pe-md-5 {
        padding-left: 5px !important;
    }

    .pe-md-6 {
        padding-left: 6px !important;
    }

    .pe-md-7 {
        padding-left: 7px !important;
    }

    .pe-md-8 {
        padding-left: 8px !important;
    }

    .pe-md-9 {
        padding-left: 9px !important;
    }

    .pe-md-10 {
        padding-left: 10px !important;
    }

    .pe-md-11 {
        padding-left: 11px !important;
    }

    .pe-md-12 {
        padding-left: 12px !important;
    }

    .pe-md-13 {
        padding-left: 13px !important;
    }

    .pe-md-15 {
        padding-left: 15px !important;
    }

    .pe-md-17 {
        padding-left: 17px !important;
    }

    .pe-md-18 {
        padding-left: 18px !important;
    }

    .pe-md-20 {
        padding-left: 20px !important;
    }

    .pe-md-25 {
        padding-left: 25px !important;
    }

    .pe-md-30 {
        padding-left: 30px !important;
    }

    .pe-md-35 {
        padding-left: 35px !important;
    }

    .pe-md-40 {
        padding-left: 40px !important;
    }

    .pe-md-45 {
        padding-left: 45px !important;
    }

    .pe-md-50 {
        padding-left: 50px !important;
    }

    .pe-md-55 {
        padding-left: 55px !important;
    }

    .pe-md-60 {
        padding-left: 60px !important;
    }

    .pe-md-65 {
        padding-left: 65px !important;
    }

    .pe-md-70 {
        padding-left: 70px !important;
    }

    .pe-md-75 {
        padding-left: 75px !important;
    }

    .pe-md-80 {
        padding-left: 80px !important;
    }

    .pe-md-90 {
        padding-left: 90px !important;
    }

    .pe-md-95 {
        padding-left: 95px !important;
    }

    .pe-md-100 {
        padding-left: 100px !important;
    }

    .pe-md-110 {
        padding-left: 110px !important;
    }

    .pe-md-115 {
        padding-left: 115px !important;
    }

    .pe-md-120 {
        padding-left: 120px !important;
    }

    .pe-md-130 {
        padding-left: 130px !important;
    }

    .pe-md-150 {
        padding-left: 150px !important;
    }

    .pe-md-160 {
        padding-left: 160px !important;
    }

    .pe-md-180 {
        padding-left: 180px !important;
    }

    .pe-md-190 {
        padding-left: 190px !important;
    }

    .pe-md-200 {
        padding-left: 200px !important;
    }

    .pe-md-210 {
        padding-left: 210px !important;
    }

    .pe-md-235 {
        padding-left: 235px !important;
    }

    .pe-md-240 {
        padding-left: 240px !important;
    }

    .pe-md-270 {
        padding-left: 270px !important;
    }

    .pe-md-290 {
        padding-left: 290px !important;
    }

    .pe-md-300 {
        padding-left: 300px !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .pb-md-1 {
        padding-bottom: 1px !important;
    }

    .pb-md-2 {
        padding-bottom: 2px !important;
    }

    .pb-md-3 {
        padding-bottom: 3px !important;
    }

    .pb-md-4 {
        padding-bottom: 4px !important;
    }

    .pb-md-5 {
        padding-bottom: 5px !important;
    }

    .pb-md-6 {
        padding-bottom: 6px !important;
    }

    .pb-md-7 {
        padding-bottom: 7px !important;
    }

    .pb-md-8 {
        padding-bottom: 8px !important;
    }

    .pb-md-9 {
        padding-bottom: 9px !important;
    }

    .pb-md-10 {
        padding-bottom: 10px !important;
    }

    .pb-md-11 {
        padding-bottom: 11px !important;
    }

    .pb-md-12 {
        padding-bottom: 12px !important;
    }

    .pb-md-13 {
        padding-bottom: 13px !important;
    }

    .pb-md-15 {
        padding-bottom: 15px !important;
    }

    .pb-md-17 {
        padding-bottom: 17px !important;
    }

    .pb-md-18 {
        padding-bottom: 18px !important;
    }

    .pb-md-20 {
        padding-bottom: 20px !important;
    }

    .pb-md-25 {
        padding-bottom: 25px !important;
    }

    .pb-md-30 {
        padding-bottom: 30px !important;
    }

    .pb-md-35 {
        padding-bottom: 35px !important;
    }

    .pb-md-40 {
        padding-bottom: 40px !important;
    }

    .pb-md-45 {
        padding-bottom: 45px !important;
    }

    .pb-md-50 {
        padding-bottom: 50px !important;
    }

    .pb-md-55 {
        padding-bottom: 55px !important;
    }

    .pb-md-60 {
        padding-bottom: 60px !important;
    }

    .pb-md-65 {
        padding-bottom: 65px !important;
    }

    .pb-md-70 {
        padding-bottom: 70px !important;
    }

    .pb-md-75 {
        padding-bottom: 75px !important;
    }

    .pb-md-80 {
        padding-bottom: 80px !important;
    }

    .pb-md-90 {
        padding-bottom: 90px !important;
    }

    .pb-md-95 {
        padding-bottom: 95px !important;
    }

    .pb-md-100 {
        padding-bottom: 100px !important;
    }

    .pb-md-110 {
        padding-bottom: 110px !important;
    }

    .pb-md-115 {
        padding-bottom: 115px !important;
    }

    .pb-md-120 {
        padding-bottom: 120px !important;
    }

    .pb-md-130 {
        padding-bottom: 130px !important;
    }

    .pb-md-150 {
        padding-bottom: 150px !important;
    }

    .pb-md-160 {
        padding-bottom: 160px !important;
    }

    .pb-md-180 {
        padding-bottom: 180px !important;
    }

    .pb-md-190 {
        padding-bottom: 190px !important;
    }

    .pb-md-200 {
        padding-bottom: 200px !important;
    }

    .pb-md-210 {
        padding-bottom: 210px !important;
    }

    .pb-md-235 {
        padding-bottom: 235px !important;
    }

    .pb-md-240 {
        padding-bottom: 240px !important;
    }

    .pb-md-270 {
        padding-bottom: 270px !important;
    }

    .pb-md-290 {
        padding-bottom: 290px !important;
    }

    .pb-md-300 {
        padding-bottom: 300px !important;
    }

    .ps-md-0 {
        padding-right: 0 !important;
    }

    .ps-md-1 {
        padding-right: 1px !important;
    }

    .ps-md-2 {
        padding-right: 2px !important;
    }

    .ps-md-3 {
        padding-right: 3px !important;
    }

    .ps-md-4 {
        padding-right: 4px !important;
    }

    .ps-md-5 {
        padding-right: 5px !important;
    }

    .ps-md-6 {
        padding-right: 6px !important;
    }

    .ps-md-7 {
        padding-right: 7px !important;
    }

    .ps-md-8 {
        padding-right: 8px !important;
    }

    .ps-md-9 {
        padding-right: 9px !important;
    }

    .ps-md-10 {
        padding-right: 10px !important;
    }

    .ps-md-11 {
        padding-right: 11px !important;
    }

    .ps-md-12 {
        padding-right: 12px !important;
    }

    .ps-md-13 {
        padding-right: 13px !important;
    }

    .ps-md-15 {
        padding-right: 15px !important;
    }

    .ps-md-17 {
        padding-right: 17px !important;
    }

    .ps-md-18 {
        padding-right: 18px !important;
    }

    .ps-md-20 {
        padding-right: 20px !important;
    }

    .ps-md-25 {
        padding-right: 25px !important;
    }

    .ps-md-30 {
        padding-right: 30px !important;
    }

    .ps-md-35 {
        padding-right: 35px !important;
    }

    .ps-md-40 {
        padding-right: 40px !important;
    }

    .ps-md-45 {
        padding-right: 45px !important;
    }

    .ps-md-50 {
        padding-right: 50px !important;
    }

    .ps-md-55 {
        padding-right: 55px !important;
    }

    .ps-md-60 {
        padding-right: 60px !important;
    }

    .ps-md-65 {
        padding-right: 65px !important;
    }

    .ps-md-70 {
        padding-right: 70px !important;
    }

    .ps-md-75 {
        padding-right: 75px !important;
    }

    .ps-md-80 {
        padding-right: 80px !important;
    }

    .ps-md-90 {
        padding-right: 90px !important;
    }

    .ps-md-95 {
        padding-right: 95px !important;
    }

    .ps-md-100 {
        padding-right: 100px !important;
    }

    .ps-md-110 {
        padding-right: 110px !important;
    }

    .ps-md-115 {
        padding-right: 115px !important;
    }

    .ps-md-120 {
        padding-right: 120px !important;
    }

    .ps-md-130 {
        padding-right: 130px !important;
    }

    .ps-md-150 {
        padding-right: 150px !important;
    }

    .ps-md-160 {
        padding-right: 160px !important;
    }

    .ps-md-180 {
        padding-right: 180px !important;
    }

    .ps-md-190 {
        padding-right: 190px !important;
    }

    .ps-md-200 {
        padding-right: 200px !important;
    }

    .ps-md-210 {
        padding-right: 210px !important;
    }

    .ps-md-235 {
        padding-right: 235px !important;
    }

    .ps-md-240 {
        padding-right: 240px !important;
    }

    .ps-md-270 {
        padding-right: 270px !important;
    }

    .ps-md-290 {
        padding-right: 290px !important;
    }

    .ps-md-300 {
        padding-right: 300px !important;
    }

    .text-md-start {
        text-align: right !important;
    }

    .text-md-end {
        text-align: left !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 1024px) {
    .float-lg-start {
        float: right !important;
    }

    .float-lg-end {
        float: left !important;
    }

    .float-lg-none {
        float: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-grid {
        display: grid !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .flex-lg-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .flex-lg-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .gap-lg-0 {
        gap: 0 !important;
    }

    .gap-lg-1 {
        gap: 1px !important;
    }

    .gap-lg-2 {
        gap: 2px !important;
    }

    .gap-lg-3 {
        gap: 3px !important;
    }

    .gap-lg-4 {
        gap: 4px !important;
    }

    .gap-lg-5 {
        gap: 5px !important;
    }

    .gap-lg-6 {
        gap: 6px !important;
    }

    .gap-lg-7 {
        gap: 7px !important;
    }

    .gap-lg-8 {
        gap: 8px !important;
    }

    .gap-lg-9 {
        gap: 9px !important;
    }

    .gap-lg-10 {
        gap: 10px !important;
    }

    .gap-lg-11 {
        gap: 11px !important;
    }

    .gap-lg-12 {
        gap: 12px !important;
    }

    .gap-lg-13 {
        gap: 13px !important;
    }

    .gap-lg-15 {
        gap: 15px !important;
    }

    .gap-lg-17 {
        gap: 17px !important;
    }

    .gap-lg-18 {
        gap: 18px !important;
    }

    .gap-lg-20 {
        gap: 20px !important;
    }

    .gap-lg-25 {
        gap: 25px !important;
    }

    .gap-lg-30 {
        gap: 30px !important;
    }

    .gap-lg-35 {
        gap: 35px !important;
    }

    .gap-lg-40 {
        gap: 40px !important;
    }

    .gap-lg-45 {
        gap: 45px !important;
    }

    .gap-lg-50 {
        gap: 50px !important;
    }

    .gap-lg-55 {
        gap: 55px !important;
    }

    .gap-lg-60 {
        gap: 60px !important;
    }

    .gap-lg-65 {
        gap: 65px !important;
    }

    .gap-lg-70 {
        gap: 70px !important;
    }

    .gap-lg-75 {
        gap: 75px !important;
    }

    .gap-lg-80 {
        gap: 80px !important;
    }

    .gap-lg-90 {
        gap: 90px !important;
    }

    .gap-lg-95 {
        gap: 95px !important;
    }

    .gap-lg-100 {
        gap: 100px !important;
    }

    .gap-lg-110 {
        gap: 110px !important;
    }

    .gap-lg-115 {
        gap: 115px !important;
    }

    .gap-lg-120 {
        gap: 120px !important;
    }

    .gap-lg-130 {
        gap: 130px !important;
    }

    .gap-lg-150 {
        gap: 150px !important;
    }

    .gap-lg-160 {
        gap: 160px !important;
    }

    .gap-lg-180 {
        gap: 180px !important;
    }

    .gap-lg-190 {
        gap: 190px !important;
    }

    .gap-lg-200 {
        gap: 200px !important;
    }

    .gap-lg-210 {
        gap: 210px !important;
    }

    .gap-lg-235 {
        gap: 235px !important;
    }

    .gap-lg-240 {
        gap: 240px !important;
    }

    .gap-lg-270 {
        gap: 270px !important;
    }

    .gap-lg-290 {
        gap: 290px !important;
    }

    .gap-lg-300 {
        gap: 300px !important;
    }

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .justify-content-lg-evenly {
        -webkit-box-pack: space-evenly !important;
        -webkit-justify-content: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    .order-lg-first {
        -webkit-box-ordinal-group: 0 !important;
        -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }

    .order-lg-0 {
        -webkit-box-ordinal-group: 1 !important;
        -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }

    .order-lg-1 {
        -webkit-box-ordinal-group: 2 !important;
        -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .order-lg-2 {
        -webkit-box-ordinal-group: 3 !important;
        -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }

    .order-lg-3 {
        -webkit-box-ordinal-group: 4 !important;
        -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5 !important;
        -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6 !important;
        -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }

    .order-lg-last {
        -webkit-box-ordinal-group: 7 !important;
        -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }

    .m-lg-0 {
        margin: 0 !important;
    }

    .m-lg-1 {
        margin: 1px !important;
    }

    .m-lg-2 {
        margin: 2px !important;
    }

    .m-lg-3 {
        margin: 3px !important;
    }

    .m-lg-4 {
        margin: 4px !important;
    }

    .m-lg-5 {
        margin: 5px !important;
    }

    .m-lg-6 {
        margin: 6px !important;
    }

    .m-lg-7 {
        margin: 7px !important;
    }

    .m-lg-8 {
        margin: 8px !important;
    }

    .m-lg-9 {
        margin: 9px !important;
    }

    .m-lg-10 {
        margin: 10px !important;
    }

    .m-lg-11 {
        margin: 11px !important;
    }

    .m-lg-12 {
        margin: 12px !important;
    }

    .m-lg-13 {
        margin: 13px !important;
    }

    .m-lg-15 {
        margin: 15px !important;
    }

    .m-lg-17 {
        margin: 17px !important;
    }

    .m-lg-18 {
        margin: 18px !important;
    }

    .m-lg-20 {
        margin: 20px !important;
    }

    .m-lg-25 {
        margin: 25px !important;
    }

    .m-lg-30 {
        margin: 30px !important;
    }

    .m-lg-35 {
        margin: 35px !important;
    }

    .m-lg-40 {
        margin: 40px !important;
    }

    .m-lg-45 {
        margin: 45px !important;
    }

    .m-lg-50 {
        margin: 50px !important;
    }

    .m-lg-55 {
        margin: 55px !important;
    }

    .m-lg-60 {
        margin: 60px !important;
    }

    .m-lg-65 {
        margin: 65px !important;
    }

    .m-lg-70 {
        margin: 70px !important;
    }

    .m-lg-75 {
        margin: 75px !important;
    }

    .m-lg-80 {
        margin: 80px !important;
    }

    .m-lg-90 {
        margin: 90px !important;
    }

    .m-lg-95 {
        margin: 95px !important;
    }

    .m-lg-100 {
        margin: 100px !important;
    }

    .m-lg-110 {
        margin: 110px !important;
    }

    .m-lg-115 {
        margin: 115px !important;
    }

    .m-lg-120 {
        margin: 120px !important;
    }

    .m-lg-130 {
        margin: 130px !important;
    }

    .m-lg-150 {
        margin: 150px !important;
    }

    .m-lg-160 {
        margin: 160px !important;
    }

    .m-lg-180 {
        margin: 180px !important;
    }

    .m-lg-190 {
        margin: 190px !important;
    }

    .m-lg-200 {
        margin: 200px !important;
    }

    .m-lg-210 {
        margin: 210px !important;
    }

    .m-lg-235 {
        margin: 235px !important;
    }

    .m-lg-240 {
        margin: 240px !important;
    }

    .m-lg-270 {
        margin: 270px !important;
    }

    .m-lg-290 {
        margin: 290px !important;
    }

    .m-lg-300 {
        margin: 300px !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-lg-1 {
        margin-left: 1px !important;
        margin-right: 1px !important;
    }

    .mx-lg-2 {
        margin-left: 2px !important;
        margin-right: 2px !important;
    }

    .mx-lg-3 {
        margin-left: 3px !important;
        margin-right: 3px !important;
    }

    .mx-lg-4 {
        margin-left: 4px !important;
        margin-right: 4px !important;
    }

    .mx-lg-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .mx-lg-6 {
        margin-left: 6px !important;
        margin-right: 6px !important;
    }

    .mx-lg-7 {
        margin-left: 7px !important;
        margin-right: 7px !important;
    }

    .mx-lg-8 {
        margin-left: 8px !important;
        margin-right: 8px !important;
    }

    .mx-lg-9 {
        margin-left: 9px !important;
        margin-right: 9px !important;
    }

    .mx-lg-10 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .mx-lg-11 {
        margin-left: 11px !important;
        margin-right: 11px !important;
    }

    .mx-lg-12 {
        margin-left: 12px !important;
        margin-right: 12px !important;
    }

    .mx-lg-13 {
        margin-left: 13px !important;
        margin-right: 13px !important;
    }

    .mx-lg-15 {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .mx-lg-17 {
        margin-left: 17px !important;
        margin-right: 17px !important;
    }

    .mx-lg-18 {
        margin-left: 18px !important;
        margin-right: 18px !important;
    }

    .mx-lg-20 {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .mx-lg-25 {
        margin-left: 25px !important;
        margin-right: 25px !important;
    }

    .mx-lg-30 {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .mx-lg-35 {
        margin-left: 35px !important;
        margin-right: 35px !important;
    }

    .mx-lg-40 {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .mx-lg-45 {
        margin-left: 45px !important;
        margin-right: 45px !important;
    }

    .mx-lg-50 {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .mx-lg-55 {
        margin-left: 55px !important;
        margin-right: 55px !important;
    }

    .mx-lg-60 {
        margin-left: 60px !important;
        margin-right: 60px !important;
    }

    .mx-lg-65 {
        margin-left: 65px !important;
        margin-right: 65px !important;
    }

    .mx-lg-70 {
        margin-left: 70px !important;
        margin-right: 70px !important;
    }

    .mx-lg-75 {
        margin-left: 75px !important;
        margin-right: 75px !important;
    }

    .mx-lg-80 {
        margin-left: 80px !important;
        margin-right: 80px !important;
    }

    .mx-lg-90 {
        margin-left: 90px !important;
        margin-right: 90px !important;
    }

    .mx-lg-95 {
        margin-left: 95px !important;
        margin-right: 95px !important;
    }

    .mx-lg-100 {
        margin-left: 100px !important;
        margin-right: 100px !important;
    }

    .mx-lg-110 {
        margin-left: 110px !important;
        margin-right: 110px !important;
    }

    .mx-lg-115 {
        margin-left: 115px !important;
        margin-right: 115px !important;
    }

    .mx-lg-120 {
        margin-left: 120px !important;
        margin-right: 120px !important;
    }

    .mx-lg-130 {
        margin-left: 130px !important;
        margin-right: 130px !important;
    }

    .mx-lg-150 {
        margin-left: 150px !important;
        margin-right: 150px !important;
    }

    .mx-lg-160 {
        margin-left: 160px !important;
        margin-right: 160px !important;
    }

    .mx-lg-180 {
        margin-left: 180px !important;
        margin-right: 180px !important;
    }

    .mx-lg-190 {
        margin-left: 190px !important;
        margin-right: 190px !important;
    }

    .mx-lg-200 {
        margin-left: 200px !important;
        margin-right: 200px !important;
    }

    .mx-lg-210 {
        margin-left: 210px !important;
        margin-right: 210px !important;
    }

    .mx-lg-235 {
        margin-left: 235px !important;
        margin-right: 235px !important;
    }

    .mx-lg-240 {
        margin-left: 240px !important;
        margin-right: 240px !important;
    }

    .mx-lg-270 {
        margin-left: 270px !important;
        margin-right: 270px !important;
    }

    .mx-lg-290 {
        margin-left: 290px !important;
        margin-right: 290px !important;
    }

    .mx-lg-300 {
        margin-left: 300px !important;
        margin-right: 300px !important;
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-lg-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-lg-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important;
    }

    .my-lg-2 {
        margin-top: 2px !important;
        margin-bottom: 2px !important;
    }

    .my-lg-3 {
        margin-top: 3px !important;
        margin-bottom: 3px !important;
    }

    .my-lg-4 {
        margin-top: 4px !important;
        margin-bottom: 4px !important;
    }

    .my-lg-5 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .my-lg-6 {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .my-lg-7 {
        margin-top: 7px !important;
        margin-bottom: 7px !important;
    }

    .my-lg-8 {
        margin-top: 8px !important;
        margin-bottom: 8px !important;
    }

    .my-lg-9 {
        margin-top: 9px !important;
        margin-bottom: 9px !important;
    }

    .my-lg-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .my-lg-11 {
        margin-top: 11px !important;
        margin-bottom: 11px !important;
    }

    .my-lg-12 {
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }

    .my-lg-13 {
        margin-top: 13px !important;
        margin-bottom: 13px !important;
    }

    .my-lg-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .my-lg-17 {
        margin-top: 17px !important;
        margin-bottom: 17px !important;
    }

    .my-lg-18 {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
    }

    .my-lg-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .my-lg-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important;
    }

    .my-lg-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .my-lg-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important;
    }

    .my-lg-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .my-lg-45 {
        margin-top: 45px !important;
        margin-bottom: 45px !important;
    }

    .my-lg-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .my-lg-55 {
        margin-top: 55px !important;
        margin-bottom: 55px !important;
    }

    .my-lg-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .my-lg-65 {
        margin-top: 65px !important;
        margin-bottom: 65px !important;
    }

    .my-lg-70 {
        margin-top: 70px !important;
        margin-bottom: 70px !important;
    }

    .my-lg-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important;
    }

    .my-lg-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important;
    }

    .my-lg-90 {
        margin-top: 90px !important;
        margin-bottom: 90px !important;
    }

    .my-lg-95 {
        margin-top: 95px !important;
        margin-bottom: 95px !important;
    }

    .my-lg-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important;
    }

    .my-lg-110 {
        margin-top: 110px !important;
        margin-bottom: 110px !important;
    }

    .my-lg-115 {
        margin-top: 115px !important;
        margin-bottom: 115px !important;
    }

    .my-lg-120 {
        margin-top: 120px !important;
        margin-bottom: 120px !important;
    }

    .my-lg-130 {
        margin-top: 130px !important;
        margin-bottom: 130px !important;
    }

    .my-lg-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important;
    }

    .my-lg-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important;
    }

    .my-lg-180 {
        margin-top: 180px !important;
        margin-bottom: 180px !important;
    }

    .my-lg-190 {
        margin-top: 190px !important;
        margin-bottom: 190px !important;
    }

    .my-lg-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important;
    }

    .my-lg-210 {
        margin-top: 210px !important;
        margin-bottom: 210px !important;
    }

    .my-lg-235 {
        margin-top: 235px !important;
        margin-bottom: 235px !important;
    }

    .my-lg-240 {
        margin-top: 240px !important;
        margin-bottom: 240px !important;
    }

    .my-lg-270 {
        margin-top: 270px !important;
        margin-bottom: 270px !important;
    }

    .my-lg-290 {
        margin-top: 290px !important;
        margin-bottom: 290px !important;
    }

    .my-lg-300 {
        margin-top: 300px !important;
        margin-bottom: 300px !important;
    }

    .my-lg-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-1 {
        margin-top: 1px !important;
    }

    .mt-lg-2 {
        margin-top: 2px !important;
    }

    .mt-lg-3 {
        margin-top: 3px !important;
    }

    .mt-lg-4 {
        margin-top: 4px !important;
    }

    .mt-lg-5 {
        margin-top: 5px !important;
    }

    .mt-lg-6 {
        margin-top: 6px !important;
    }

    .mt-lg-7 {
        margin-top: 7px !important;
    }

    .mt-lg-8 {
        margin-top: 8px !important;
    }

    .mt-lg-9 {
        margin-top: 9px !important;
    }

    .mt-lg-10 {
        margin-top: 10px !important;
    }

    .mt-lg-11 {
        margin-top: 11px !important;
    }

    .mt-lg-12 {
        margin-top: 12px !important;
    }

    .mt-lg-13 {
        margin-top: 13px !important;
    }

    .mt-lg-15 {
        margin-top: 15px !important;
    }

    .mt-lg-17 {
        margin-top: 17px !important;
    }

    .mt-lg-18 {
        margin-top: 18px !important;
    }

    .mt-lg-20 {
        margin-top: 20px !important;
    }

    .mt-lg-25 {
        margin-top: 25px !important;
    }

    .mt-lg-30 {
        margin-top: 30px !important;
    }

    .mt-lg-35 {
        margin-top: 35px !important;
    }

    .mt-lg-40 {
        margin-top: 40px !important;
    }

    .mt-lg-45 {
        margin-top: 45px !important;
    }

    .mt-lg-50 {
        margin-top: 50px !important;
    }

    .mt-lg-55 {
        margin-top: 55px !important;
    }

    .mt-lg-60 {
        margin-top: 60px !important;
    }

    .mt-lg-65 {
        margin-top: 65px !important;
    }

    .mt-lg-70 {
        margin-top: 70px !important;
    }

    .mt-lg-75 {
        margin-top: 75px !important;
    }

    .mt-lg-80 {
        margin-top: 80px !important;
    }

    .mt-lg-90 {
        margin-top: 90px !important;
    }

    .mt-lg-95 {
        margin-top: 95px !important;
    }

    .mt-lg-100 {
        margin-top: 100px !important;
    }

    .mt-lg-110 {
        margin-top: 110px !important;
    }

    .mt-lg-115 {
        margin-top: 115px !important;
    }

    .mt-lg-120 {
        margin-top: 120px !important;
    }

    .mt-lg-130 {
        margin-top: 130px !important;
    }

    .mt-lg-150 {
        margin-top: 150px !important;
    }

    .mt-lg-160 {
        margin-top: 160px !important;
    }

    .mt-lg-180 {
        margin-top: 180px !important;
    }

    .mt-lg-190 {
        margin-top: 190px !important;
    }

    .mt-lg-200 {
        margin-top: 200px !important;
    }

    .mt-lg-210 {
        margin-top: 210px !important;
    }

    .mt-lg-235 {
        margin-top: 235px !important;
    }

    .mt-lg-240 {
        margin-top: 240px !important;
    }

    .mt-lg-270 {
        margin-top: 270px !important;
    }

    .mt-lg-290 {
        margin-top: 290px !important;
    }

    .mt-lg-300 {
        margin-top: 300px !important;
    }

    .mt-lg-auto {
        margin-top: auto !important;
    }

    .me-lg-0 {
        margin-left: 0 !important;
    }

    .me-lg-1 {
        margin-left: 1px !important;
    }

    .me-lg-2 {
        margin-left: 2px !important;
    }

    .me-lg-3 {
        margin-left: 3px !important;
    }

    .me-lg-4 {
        margin-left: 4px !important;
    }

    .me-lg-5 {
        margin-left: 5px !important;
    }

    .me-lg-6 {
        margin-left: 6px !important;
    }

    .me-lg-7 {
        margin-left: 7px !important;
    }

    .me-lg-8 {
        margin-left: 8px !important;
    }

    .me-lg-9 {
        margin-left: 9px !important;
    }

    .me-lg-10 {
        margin-left: 10px !important;
    }

    .me-lg-11 {
        margin-left: 11px !important;
    }

    .me-lg-12 {
        margin-left: 12px !important;
    }

    .me-lg-13 {
        margin-left: 13px !important;
    }

    .me-lg-15 {
        margin-left: 15px !important;
    }

    .me-lg-17 {
        margin-left: 17px !important;
    }

    .me-lg-18 {
        margin-left: 18px !important;
    }

    .me-lg-20 {
        margin-left: 20px !important;
    }

    .me-lg-25 {
        margin-left: 25px !important;
    }

    .me-lg-30 {
        margin-left: 30px !important;
    }

    .me-lg-35 {
        margin-left: 35px !important;
    }

    .me-lg-40 {
        margin-left: 40px !important;
    }

    .me-lg-45 {
        margin-left: 45px !important;
    }

    .me-lg-50 {
        margin-left: 50px !important;
    }

    .me-lg-55 {
        margin-left: 55px !important;
    }

    .me-lg-60 {
        margin-left: 60px !important;
    }

    .me-lg-65 {
        margin-left: 65px !important;
    }

    .me-lg-70 {
        margin-left: 70px !important;
    }

    .me-lg-75 {
        margin-left: 75px !important;
    }

    .me-lg-80 {
        margin-left: 80px !important;
    }

    .me-lg-90 {
        margin-left: 90px !important;
    }

    .me-lg-95 {
        margin-left: 95px !important;
    }

    .me-lg-100 {
        margin-left: 100px !important;
    }

    .me-lg-110 {
        margin-left: 110px !important;
    }

    .me-lg-115 {
        margin-left: 115px !important;
    }

    .me-lg-120 {
        margin-left: 120px !important;
    }

    .me-lg-130 {
        margin-left: 130px !important;
    }

    .me-lg-150 {
        margin-left: 150px !important;
    }

    .me-lg-160 {
        margin-left: 160px !important;
    }

    .me-lg-180 {
        margin-left: 180px !important;
    }

    .me-lg-190 {
        margin-left: 190px !important;
    }

    .me-lg-200 {
        margin-left: 200px !important;
    }

    .me-lg-210 {
        margin-left: 210px !important;
    }

    .me-lg-235 {
        margin-left: 235px !important;
    }

    .me-lg-240 {
        margin-left: 240px !important;
    }

    .me-lg-270 {
        margin-left: 270px !important;
    }

    .me-lg-290 {
        margin-left: 290px !important;
    }

    .me-lg-300 {
        margin-left: 300px !important;
    }

    .me-lg-auto {
        margin-left: auto !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mb-lg-1 {
        margin-bottom: 1px !important;
    }

    .mb-lg-2 {
        margin-bottom: 2px !important;
    }

    .mb-lg-3 {
        margin-bottom: 3px !important;
    }

    .mb-lg-4 {
        margin-bottom: 4px !important;
    }

    .mb-lg-5 {
        margin-bottom: 5px !important;
    }

    .mb-lg-6 {
        margin-bottom: 6px !important;
    }

    .mb-lg-7 {
        margin-bottom: 7px !important;
    }

    .mb-lg-8 {
        margin-bottom: 8px !important;
    }

    .mb-lg-9 {
        margin-bottom: 9px !important;
    }

    .mb-lg-10 {
        margin-bottom: 10px !important;
    }

    .mb-lg-11 {
        margin-bottom: 11px !important;
    }

    .mb-lg-12 {
        margin-bottom: 12px !important;
    }

    .mb-lg-13 {
        margin-bottom: 13px !important;
    }

    .mb-lg-15 {
        margin-bottom: 15px !important;
    }

    .mb-lg-17 {
        margin-bottom: 17px !important;
    }

    .mb-lg-18 {
        margin-bottom: 18px !important;
    }

    .mb-lg-20 {
        margin-bottom: 20px !important;
    }

    .mb-lg-25 {
        margin-bottom: 25px !important;
    }

    .mb-lg-30 {
        margin-bottom: 30px !important;
    }

    .mb-lg-35 {
        margin-bottom: 35px !important;
    }

    .mb-lg-40 {
        margin-bottom: 40px !important;
    }

    .mb-lg-45 {
        margin-bottom: 45px !important;
    }

    .mb-lg-50 {
        margin-bottom: 50px !important;
    }

    .mb-lg-55 {
        margin-bottom: 55px !important;
    }

    .mb-lg-60 {
        margin-bottom: 60px !important;
    }

    .mb-lg-65 {
        margin-bottom: 65px !important;
    }

    .mb-lg-70 {
        margin-bottom: 70px !important;
    }

    .mb-lg-75 {
        margin-bottom: 75px !important;
    }

    .mb-lg-80 {
        margin-bottom: 80px !important;
    }

    .mb-lg-90 {
        margin-bottom: 90px !important;
    }

    .mb-lg-95 {
        margin-bottom: 95px !important;
    }

    .mb-lg-100 {
        margin-bottom: 100px !important;
    }

    .mb-lg-110 {
        margin-bottom: 110px !important;
    }

    .mb-lg-115 {
        margin-bottom: 115px !important;
    }

    .mb-lg-120 {
        margin-bottom: 120px !important;
    }

    .mb-lg-130 {
        margin-bottom: 130px !important;
    }

    .mb-lg-150 {
        margin-bottom: 150px !important;
    }

    .mb-lg-160 {
        margin-bottom: 160px !important;
    }

    .mb-lg-180 {
        margin-bottom: 180px !important;
    }

    .mb-lg-190 {
        margin-bottom: 190px !important;
    }

    .mb-lg-200 {
        margin-bottom: 200px !important;
    }

    .mb-lg-210 {
        margin-bottom: 210px !important;
    }

    .mb-lg-235 {
        margin-bottom: 235px !important;
    }

    .mb-lg-240 {
        margin-bottom: 240px !important;
    }

    .mb-lg-270 {
        margin-bottom: 270px !important;
    }

    .mb-lg-290 {
        margin-bottom: 290px !important;
    }

    .mb-lg-300 {
        margin-bottom: 300px !important;
    }

    .mb-lg-auto {
        margin-bottom: auto !important;
    }

    .ms-lg-0 {
        margin-right: 0 !important;
    }

    .ms-lg-1 {
        margin-right: 1px !important;
    }

    .ms-lg-2 {
        margin-right: 2px !important;
    }

    .ms-lg-3 {
        margin-right: 3px !important;
    }

    .ms-lg-4 {
        margin-right: 4px !important;
    }

    .ms-lg-5 {
        margin-right: 5px !important;
    }

    .ms-lg-6 {
        margin-right: 6px !important;
    }

    .ms-lg-7 {
        margin-right: 7px !important;
    }

    .ms-lg-8 {
        margin-right: 8px !important;
    }

    .ms-lg-9 {
        margin-right: 9px !important;
    }

    .ms-lg-10 {
        margin-right: 10px !important;
    }

    .ms-lg-11 {
        margin-right: 11px !important;
    }

    .ms-lg-12 {
        margin-right: 12px !important;
    }

    .ms-lg-13 {
        margin-right: 13px !important;
    }

    .ms-lg-15 {
        margin-right: 15px !important;
    }

    .ms-lg-17 {
        margin-right: 17px !important;
    }

    .ms-lg-18 {
        margin-right: 18px !important;
    }

    .ms-lg-20 {
        margin-right: 20px !important;
    }

    .ms-lg-25 {
        margin-right: 25px !important;
    }

    .ms-lg-30 {
        margin-right: 30px !important;
    }

    .ms-lg-35 {
        margin-right: 35px !important;
    }

    .ms-lg-40 {
        margin-right: 40px !important;
    }

    .ms-lg-45 {
        margin-right: 45px !important;
    }

    .ms-lg-50 {
        margin-right: 50px !important;
    }

    .ms-lg-55 {
        margin-right: 55px !important;
    }

    .ms-lg-60 {
        margin-right: 60px !important;
    }

    .ms-lg-65 {
        margin-right: 65px !important;
    }

    .ms-lg-70 {
        margin-right: 70px !important;
    }

    .ms-lg-75 {
        margin-right: 75px !important;
    }

    .ms-lg-80 {
        margin-right: 80px !important;
    }

    .ms-lg-90 {
        margin-right: 90px !important;
    }

    .ms-lg-95 {
        margin-right: 95px !important;
    }

    .ms-lg-100 {
        margin-right: 100px !important;
    }

    .ms-lg-110 {
        margin-right: 110px !important;
    }

    .ms-lg-115 {
        margin-right: 115px !important;
    }

    .ms-lg-120 {
        margin-right: 120px !important;
    }

    .ms-lg-130 {
        margin-right: 130px !important;
    }

    .ms-lg-150 {
        margin-right: 150px !important;
    }

    .ms-lg-160 {
        margin-right: 160px !important;
    }

    .ms-lg-180 {
        margin-right: 180px !important;
    }

    .ms-lg-190 {
        margin-right: 190px !important;
    }

    .ms-lg-200 {
        margin-right: 200px !important;
    }

    .ms-lg-210 {
        margin-right: 210px !important;
    }

    .ms-lg-235 {
        margin-right: 235px !important;
    }

    .ms-lg-240 {
        margin-right: 240px !important;
    }

    .ms-lg-270 {
        margin-right: 270px !important;
    }

    .ms-lg-290 {
        margin-right: 290px !important;
    }

    .ms-lg-300 {
        margin-right: 300px !important;
    }

    .ms-lg-auto {
        margin-right: auto !important;
    }

    .m-lg-n1 {
        margin: -1px !important;
    }

    .m-lg-n2 {
        margin: -2px !important;
    }

    .m-lg-n3 {
        margin: -3px !important;
    }

    .m-lg-n4 {
        margin: -4px !important;
    }

    .m-lg-n5 {
        margin: -5px !important;
    }

    .m-lg-n6 {
        margin: -6px !important;
    }

    .m-lg-n7 {
        margin: -7px !important;
    }

    .m-lg-n8 {
        margin: -8px !important;
    }

    .m-lg-n9 {
        margin: -9px !important;
    }

    .m-lg-n10 {
        margin: -10px !important;
    }

    .m-lg-n11 {
        margin: -11px !important;
    }

    .m-lg-n12 {
        margin: -12px !important;
    }

    .m-lg-n13 {
        margin: -13px !important;
    }

    .m-lg-n15 {
        margin: -15px !important;
    }

    .m-lg-n17 {
        margin: -17px !important;
    }

    .m-lg-n18 {
        margin: -18px !important;
    }

    .m-lg-n20 {
        margin: -20px !important;
    }

    .m-lg-n25 {
        margin: -25px !important;
    }

    .m-lg-n30 {
        margin: -30px !important;
    }

    .m-lg-n35 {
        margin: -35px !important;
    }

    .m-lg-n40 {
        margin: -40px !important;
    }

    .m-lg-n45 {
        margin: -45px !important;
    }

    .m-lg-n50 {
        margin: -50px !important;
    }

    .m-lg-n55 {
        margin: -55px !important;
    }

    .m-lg-n60 {
        margin: -60px !important;
    }

    .m-lg-n65 {
        margin: -65px !important;
    }

    .m-lg-n70 {
        margin: -70px !important;
    }

    .m-lg-n75 {
        margin: -75px !important;
    }

    .m-lg-n80 {
        margin: -80px !important;
    }

    .m-lg-n90 {
        margin: -90px !important;
    }

    .m-lg-n95 {
        margin: -95px !important;
    }

    .m-lg-n100 {
        margin: -100px !important;
    }

    .m-lg-n110 {
        margin: -110px !important;
    }

    .m-lg-n115 {
        margin: -115px !important;
    }

    .m-lg-n120 {
        margin: -120px !important;
    }

    .m-lg-n130 {
        margin: -130px !important;
    }

    .m-lg-n150 {
        margin: -150px !important;
    }

    .m-lg-n160 {
        margin: -160px !important;
    }

    .m-lg-n180 {
        margin: -180px !important;
    }

    .m-lg-n190 {
        margin: -190px !important;
    }

    .m-lg-n200 {
        margin: -200px !important;
    }

    .m-lg-n210 {
        margin: -210px !important;
    }

    .m-lg-n235 {
        margin: -235px !important;
    }

    .m-lg-n240 {
        margin: -240px !important;
    }

    .m-lg-n270 {
        margin: -270px !important;
    }

    .m-lg-n290 {
        margin: -290px !important;
    }

    .m-lg-n300 {
        margin: -300px !important;
    }

    .mx-lg-n1 {
        margin-left: -1px !important;
        margin-right: -1px !important;
    }

    .mx-lg-n2 {
        margin-left: -2px !important;
        margin-right: -2px !important;
    }

    .mx-lg-n3 {
        margin-left: -3px !important;
        margin-right: -3px !important;
    }

    .mx-lg-n4 {
        margin-left: -4px !important;
        margin-right: -4px !important;
    }

    .mx-lg-n5 {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .mx-lg-n6 {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .mx-lg-n7 {
        margin-left: -7px !important;
        margin-right: -7px !important;
    }

    .mx-lg-n8 {
        margin-left: -8px !important;
        margin-right: -8px !important;
    }

    .mx-lg-n9 {
        margin-left: -9px !important;
        margin-right: -9px !important;
    }

    .mx-lg-n10 {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .mx-lg-n11 {
        margin-left: -11px !important;
        margin-right: -11px !important;
    }

    .mx-lg-n12 {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }

    .mx-lg-n13 {
        margin-left: -13px !important;
        margin-right: -13px !important;
    }

    .mx-lg-n15 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .mx-lg-n17 {
        margin-left: -17px !important;
        margin-right: -17px !important;
    }

    .mx-lg-n18 {
        margin-left: -18px !important;
        margin-right: -18px !important;
    }

    .mx-lg-n20 {
        margin-left: -20px !important;
        margin-right: -20px !important;
    }

    .mx-lg-n25 {
        margin-left: -25px !important;
        margin-right: -25px !important;
    }

    .mx-lg-n30 {
        margin-left: -30px !important;
        margin-right: -30px !important;
    }

    .mx-lg-n35 {
        margin-left: -35px !important;
        margin-right: -35px !important;
    }

    .mx-lg-n40 {
        margin-left: -40px !important;
        margin-right: -40px !important;
    }

    .mx-lg-n45 {
        margin-left: -45px !important;
        margin-right: -45px !important;
    }

    .mx-lg-n50 {
        margin-left: -50px !important;
        margin-right: -50px !important;
    }

    .mx-lg-n55 {
        margin-left: -55px !important;
        margin-right: -55px !important;
    }

    .mx-lg-n60 {
        margin-left: -60px !important;
        margin-right: -60px !important;
    }

    .mx-lg-n65 {
        margin-left: -65px !important;
        margin-right: -65px !important;
    }

    .mx-lg-n70 {
        margin-left: -70px !important;
        margin-right: -70px !important;
    }

    .mx-lg-n75 {
        margin-left: -75px !important;
        margin-right: -75px !important;
    }

    .mx-lg-n80 {
        margin-left: -80px !important;
        margin-right: -80px !important;
    }

    .mx-lg-n90 {
        margin-left: -90px !important;
        margin-right: -90px !important;
    }

    .mx-lg-n95 {
        margin-left: -95px !important;
        margin-right: -95px !important;
    }

    .mx-lg-n100 {
        margin-left: -100px !important;
        margin-right: -100px !important;
    }

    .mx-lg-n110 {
        margin-left: -110px !important;
        margin-right: -110px !important;
    }

    .mx-lg-n115 {
        margin-left: -115px !important;
        margin-right: -115px !important;
    }

    .mx-lg-n120 {
        margin-left: -120px !important;
        margin-right: -120px !important;
    }

    .mx-lg-n130 {
        margin-left: -130px !important;
        margin-right: -130px !important;
    }

    .mx-lg-n150 {
        margin-left: -150px !important;
        margin-right: -150px !important;
    }

    .mx-lg-n160 {
        margin-left: -160px !important;
        margin-right: -160px !important;
    }

    .mx-lg-n180 {
        margin-left: -180px !important;
        margin-right: -180px !important;
    }

    .mx-lg-n190 {
        margin-left: -190px !important;
        margin-right: -190px !important;
    }

    .mx-lg-n200 {
        margin-left: -200px !important;
        margin-right: -200px !important;
    }

    .mx-lg-n210 {
        margin-left: -210px !important;
        margin-right: -210px !important;
    }

    .mx-lg-n235 {
        margin-left: -235px !important;
        margin-right: -235px !important;
    }

    .mx-lg-n240 {
        margin-left: -240px !important;
        margin-right: -240px !important;
    }

    .mx-lg-n270 {
        margin-left: -270px !important;
        margin-right: -270px !important;
    }

    .mx-lg-n290 {
        margin-left: -290px !important;
        margin-right: -290px !important;
    }

    .mx-lg-n300 {
        margin-left: -300px !important;
        margin-right: -300px !important;
    }

    .my-lg-n1 {
        margin-top: -1px !important;
        margin-bottom: -1px !important;
    }

    .my-lg-n2 {
        margin-top: -2px !important;
        margin-bottom: -2px !important;
    }

    .my-lg-n3 {
        margin-top: -3px !important;
        margin-bottom: -3px !important;
    }

    .my-lg-n4 {
        margin-top: -4px !important;
        margin-bottom: -4px !important;
    }

    .my-lg-n5 {
        margin-top: -5px !important;
        margin-bottom: -5px !important;
    }

    .my-lg-n6 {
        margin-top: -6px !important;
        margin-bottom: -6px !important;
    }

    .my-lg-n7 {
        margin-top: -7px !important;
        margin-bottom: -7px !important;
    }

    .my-lg-n8 {
        margin-top: -8px !important;
        margin-bottom: -8px !important;
    }

    .my-lg-n9 {
        margin-top: -9px !important;
        margin-bottom: -9px !important;
    }

    .my-lg-n10 {
        margin-top: -10px !important;
        margin-bottom: -10px !important;
    }

    .my-lg-n11 {
        margin-top: -11px !important;
        margin-bottom: -11px !important;
    }

    .my-lg-n12 {
        margin-top: -12px !important;
        margin-bottom: -12px !important;
    }

    .my-lg-n13 {
        margin-top: -13px !important;
        margin-bottom: -13px !important;
    }

    .my-lg-n15 {
        margin-top: -15px !important;
        margin-bottom: -15px !important;
    }

    .my-lg-n17 {
        margin-top: -17px !important;
        margin-bottom: -17px !important;
    }

    .my-lg-n18 {
        margin-top: -18px !important;
        margin-bottom: -18px !important;
    }

    .my-lg-n20 {
        margin-top: -20px !important;
        margin-bottom: -20px !important;
    }

    .my-lg-n25 {
        margin-top: -25px !important;
        margin-bottom: -25px !important;
    }

    .my-lg-n30 {
        margin-top: -30px !important;
        margin-bottom: -30px !important;
    }

    .my-lg-n35 {
        margin-top: -35px !important;
        margin-bottom: -35px !important;
    }

    .my-lg-n40 {
        margin-top: -40px !important;
        margin-bottom: -40px !important;
    }

    .my-lg-n45 {
        margin-top: -45px !important;
        margin-bottom: -45px !important;
    }

    .my-lg-n50 {
        margin-top: -50px !important;
        margin-bottom: -50px !important;
    }

    .my-lg-n55 {
        margin-top: -55px !important;
        margin-bottom: -55px !important;
    }

    .my-lg-n60 {
        margin-top: -60px !important;
        margin-bottom: -60px !important;
    }

    .my-lg-n65 {
        margin-top: -65px !important;
        margin-bottom: -65px !important;
    }

    .my-lg-n70 {
        margin-top: -70px !important;
        margin-bottom: -70px !important;
    }

    .my-lg-n75 {
        margin-top: -75px !important;
        margin-bottom: -75px !important;
    }

    .my-lg-n80 {
        margin-top: -80px !important;
        margin-bottom: -80px !important;
    }

    .my-lg-n90 {
        margin-top: -90px !important;
        margin-bottom: -90px !important;
    }

    .my-lg-n95 {
        margin-top: -95px !important;
        margin-bottom: -95px !important;
    }

    .my-lg-n100 {
        margin-top: -100px !important;
        margin-bottom: -100px !important;
    }

    .my-lg-n110 {
        margin-top: -110px !important;
        margin-bottom: -110px !important;
    }

    .my-lg-n115 {
        margin-top: -115px !important;
        margin-bottom: -115px !important;
    }

    .my-lg-n120 {
        margin-top: -120px !important;
        margin-bottom: -120px !important;
    }

    .my-lg-n130 {
        margin-top: -130px !important;
        margin-bottom: -130px !important;
    }

    .my-lg-n150 {
        margin-top: -150px !important;
        margin-bottom: -150px !important;
    }

    .my-lg-n160 {
        margin-top: -160px !important;
        margin-bottom: -160px !important;
    }

    .my-lg-n180 {
        margin-top: -180px !important;
        margin-bottom: -180px !important;
    }

    .my-lg-n190 {
        margin-top: -190px !important;
        margin-bottom: -190px !important;
    }

    .my-lg-n200 {
        margin-top: -200px !important;
        margin-bottom: -200px !important;
    }

    .my-lg-n210 {
        margin-top: -210px !important;
        margin-bottom: -210px !important;
    }

    .my-lg-n235 {
        margin-top: -235px !important;
        margin-bottom: -235px !important;
    }

    .my-lg-n240 {
        margin-top: -240px !important;
        margin-bottom: -240px !important;
    }

    .my-lg-n270 {
        margin-top: -270px !important;
        margin-bottom: -270px !important;
    }

    .my-lg-n290 {
        margin-top: -290px !important;
        margin-bottom: -290px !important;
    }

    .my-lg-n300 {
        margin-top: -300px !important;
        margin-bottom: -300px !important;
    }

    .mt-lg-n1 {
        margin-top: -1px !important;
    }

    .mt-lg-n2 {
        margin-top: -2px !important;
    }

    .mt-lg-n3 {
        margin-top: -3px !important;
    }

    .mt-lg-n4 {
        margin-top: -4px !important;
    }

    .mt-lg-n5 {
        margin-top: -5px !important;
    }

    .mt-lg-n6 {
        margin-top: -6px !important;
    }

    .mt-lg-n7 {
        margin-top: -7px !important;
    }

    .mt-lg-n8 {
        margin-top: -8px !important;
    }

    .mt-lg-n9 {
        margin-top: -9px !important;
    }

    .mt-lg-n10 {
        margin-top: -10px !important;
    }

    .mt-lg-n11 {
        margin-top: -11px !important;
    }

    .mt-lg-n12 {
        margin-top: -12px !important;
    }

    .mt-lg-n13 {
        margin-top: -13px !important;
    }

    .mt-lg-n15 {
        margin-top: -15px !important;
    }

    .mt-lg-n17 {
        margin-top: -17px !important;
    }

    .mt-lg-n18 {
        margin-top: -18px !important;
    }

    .mt-lg-n20 {
        margin-top: -20px !important;
    }

    .mt-lg-n25 {
        margin-top: -25px !important;
    }

    .mt-lg-n30 {
        margin-top: -30px !important;
    }

    .mt-lg-n35 {
        margin-top: -35px !important;
    }

    .mt-lg-n40 {
        margin-top: -40px !important;
    }

    .mt-lg-n45 {
        margin-top: -45px !important;
    }

    .mt-lg-n50 {
        margin-top: -50px !important;
    }

    .mt-lg-n55 {
        margin-top: -55px !important;
    }

    .mt-lg-n60 {
        margin-top: -60px !important;
    }

    .mt-lg-n65 {
        margin-top: -65px !important;
    }

    .mt-lg-n70 {
        margin-top: -70px !important;
    }

    .mt-lg-n75 {
        margin-top: -75px !important;
    }

    .mt-lg-n80 {
        margin-top: -80px !important;
    }

    .mt-lg-n90 {
        margin-top: -90px !important;
    }

    .mt-lg-n95 {
        margin-top: -95px !important;
    }

    .mt-lg-n100 {
        margin-top: -100px !important;
    }

    .mt-lg-n110 {
        margin-top: -110px !important;
    }

    .mt-lg-n115 {
        margin-top: -115px !important;
    }

    .mt-lg-n120 {
        margin-top: -120px !important;
    }

    .mt-lg-n130 {
        margin-top: -130px !important;
    }

    .mt-lg-n150 {
        margin-top: -150px !important;
    }

    .mt-lg-n160 {
        margin-top: -160px !important;
    }

    .mt-lg-n180 {
        margin-top: -180px !important;
    }

    .mt-lg-n190 {
        margin-top: -190px !important;
    }

    .mt-lg-n200 {
        margin-top: -200px !important;
    }

    .mt-lg-n210 {
        margin-top: -210px !important;
    }

    .mt-lg-n235 {
        margin-top: -235px !important;
    }

    .mt-lg-n240 {
        margin-top: -240px !important;
    }

    .mt-lg-n270 {
        margin-top: -270px !important;
    }

    .mt-lg-n290 {
        margin-top: -290px !important;
    }

    .mt-lg-n300 {
        margin-top: -300px !important;
    }

    .me-lg-n1 {
        margin-left: -1px !important;
    }

    .me-lg-n2 {
        margin-left: -2px !important;
    }

    .me-lg-n3 {
        margin-left: -3px !important;
    }

    .me-lg-n4 {
        margin-left: -4px !important;
    }

    .me-lg-n5 {
        margin-left: -5px !important;
    }

    .me-lg-n6 {
        margin-left: -6px !important;
    }

    .me-lg-n7 {
        margin-left: -7px !important;
    }

    .me-lg-n8 {
        margin-left: -8px !important;
    }

    .me-lg-n9 {
        margin-left: -9px !important;
    }

    .me-lg-n10 {
        margin-left: -10px !important;
    }

    .me-lg-n11 {
        margin-left: -11px !important;
    }

    .me-lg-n12 {
        margin-left: -12px !important;
    }

    .me-lg-n13 {
        margin-left: -13px !important;
    }

    .me-lg-n15 {
        margin-left: -15px !important;
    }

    .me-lg-n17 {
        margin-left: -17px !important;
    }

    .me-lg-n18 {
        margin-left: -18px !important;
    }

    .me-lg-n20 {
        margin-left: -20px !important;
    }

    .me-lg-n25 {
        margin-left: -25px !important;
    }

    .me-lg-n30 {
        margin-left: -30px !important;
    }

    .me-lg-n35 {
        margin-left: -35px !important;
    }

    .me-lg-n40 {
        margin-left: -40px !important;
    }

    .me-lg-n45 {
        margin-left: -45px !important;
    }

    .me-lg-n50 {
        margin-left: -50px !important;
    }

    .me-lg-n55 {
        margin-left: -55px !important;
    }

    .me-lg-n60 {
        margin-left: -60px !important;
    }

    .me-lg-n65 {
        margin-left: -65px !important;
    }

    .me-lg-n70 {
        margin-left: -70px !important;
    }

    .me-lg-n75 {
        margin-left: -75px !important;
    }

    .me-lg-n80 {
        margin-left: -80px !important;
    }

    .me-lg-n90 {
        margin-left: -90px !important;
    }

    .me-lg-n95 {
        margin-left: -95px !important;
    }

    .me-lg-n100 {
        margin-left: -100px !important;
    }

    .me-lg-n110 {
        margin-left: -110px !important;
    }

    .me-lg-n115 {
        margin-left: -115px !important;
    }

    .me-lg-n120 {
        margin-left: -120px !important;
    }

    .me-lg-n130 {
        margin-left: -130px !important;
    }

    .me-lg-n150 {
        margin-left: -150px !important;
    }

    .me-lg-n160 {
        margin-left: -160px !important;
    }

    .me-lg-n180 {
        margin-left: -180px !important;
    }

    .me-lg-n190 {
        margin-left: -190px !important;
    }

    .me-lg-n200 {
        margin-left: -200px !important;
    }

    .me-lg-n210 {
        margin-left: -210px !important;
    }

    .me-lg-n235 {
        margin-left: -235px !important;
    }

    .me-lg-n240 {
        margin-left: -240px !important;
    }

    .me-lg-n270 {
        margin-left: -270px !important;
    }

    .me-lg-n290 {
        margin-left: -290px !important;
    }

    .me-lg-n300 {
        margin-left: -300px !important;
    }

    .mb-lg-n1 {
        margin-bottom: -1px !important;
    }

    .mb-lg-n2 {
        margin-bottom: -2px !important;
    }

    .mb-lg-n3 {
        margin-bottom: -3px !important;
    }

    .mb-lg-n4 {
        margin-bottom: -4px !important;
    }

    .mb-lg-n5 {
        margin-bottom: -5px !important;
    }

    .mb-lg-n6 {
        margin-bottom: -6px !important;
    }

    .mb-lg-n7 {
        margin-bottom: -7px !important;
    }

    .mb-lg-n8 {
        margin-bottom: -8px !important;
    }

    .mb-lg-n9 {
        margin-bottom: -9px !important;
    }

    .mb-lg-n10 {
        margin-bottom: -10px !important;
    }

    .mb-lg-n11 {
        margin-bottom: -11px !important;
    }

    .mb-lg-n12 {
        margin-bottom: -12px !important;
    }

    .mb-lg-n13 {
        margin-bottom: -13px !important;
    }

    .mb-lg-n15 {
        margin-bottom: -15px !important;
    }

    .mb-lg-n17 {
        margin-bottom: -17px !important;
    }

    .mb-lg-n18 {
        margin-bottom: -18px !important;
    }

    .mb-lg-n20 {
        margin-bottom: -20px !important;
    }

    .mb-lg-n25 {
        margin-bottom: -25px !important;
    }

    .mb-lg-n30 {
        margin-bottom: -30px !important;
    }

    .mb-lg-n35 {
        margin-bottom: -35px !important;
    }

    .mb-lg-n40 {
        margin-bottom: -40px !important;
    }

    .mb-lg-n45 {
        margin-bottom: -45px !important;
    }

    .mb-lg-n50 {
        margin-bottom: -50px !important;
    }

    .mb-lg-n55 {
        margin-bottom: -55px !important;
    }

    .mb-lg-n60 {
        margin-bottom: -60px !important;
    }

    .mb-lg-n65 {
        margin-bottom: -65px !important;
    }

    .mb-lg-n70 {
        margin-bottom: -70px !important;
    }

    .mb-lg-n75 {
        margin-bottom: -75px !important;
    }

    .mb-lg-n80 {
        margin-bottom: -80px !important;
    }

    .mb-lg-n90 {
        margin-bottom: -90px !important;
    }

    .mb-lg-n95 {
        margin-bottom: -95px !important;
    }

    .mb-lg-n100 {
        margin-bottom: -100px !important;
    }

    .mb-lg-n110 {
        margin-bottom: -110px !important;
    }

    .mb-lg-n115 {
        margin-bottom: -115px !important;
    }

    .mb-lg-n120 {
        margin-bottom: -120px !important;
    }

    .mb-lg-n130 {
        margin-bottom: -130px !important;
    }

    .mb-lg-n150 {
        margin-bottom: -150px !important;
    }

    .mb-lg-n160 {
        margin-bottom: -160px !important;
    }

    .mb-lg-n180 {
        margin-bottom: -180px !important;
    }

    .mb-lg-n190 {
        margin-bottom: -190px !important;
    }

    .mb-lg-n200 {
        margin-bottom: -200px !important;
    }

    .mb-lg-n210 {
        margin-bottom: -210px !important;
    }

    .mb-lg-n235 {
        margin-bottom: -235px !important;
    }

    .mb-lg-n240 {
        margin-bottom: -240px !important;
    }

    .mb-lg-n270 {
        margin-bottom: -270px !important;
    }

    .mb-lg-n290 {
        margin-bottom: -290px !important;
    }

    .mb-lg-n300 {
        margin-bottom: -300px !important;
    }

    .ms-lg-n1 {
        margin-right: -1px !important;
    }

    .ms-lg-n2 {
        margin-right: -2px !important;
    }

    .ms-lg-n3 {
        margin-right: -3px !important;
    }

    .ms-lg-n4 {
        margin-right: -4px !important;
    }

    .ms-lg-n5 {
        margin-right: -5px !important;
    }

    .ms-lg-n6 {
        margin-right: -6px !important;
    }

    .ms-lg-n7 {
        margin-right: -7px !important;
    }

    .ms-lg-n8 {
        margin-right: -8px !important;
    }

    .ms-lg-n9 {
        margin-right: -9px !important;
    }

    .ms-lg-n10 {
        margin-right: -10px !important;
    }

    .ms-lg-n11 {
        margin-right: -11px !important;
    }

    .ms-lg-n12 {
        margin-right: -12px !important;
    }

    .ms-lg-n13 {
        margin-right: -13px !important;
    }

    .ms-lg-n15 {
        margin-right: -15px !important;
    }

    .ms-lg-n17 {
        margin-right: -17px !important;
    }

    .ms-lg-n18 {
        margin-right: -18px !important;
    }

    .ms-lg-n20 {
        margin-right: -20px !important;
    }

    .ms-lg-n25 {
        margin-right: -25px !important;
    }

    .ms-lg-n30 {
        margin-right: -30px !important;
    }

    .ms-lg-n35 {
        margin-right: -35px !important;
    }

    .ms-lg-n40 {
        margin-right: -40px !important;
    }

    .ms-lg-n45 {
        margin-right: -45px !important;
    }

    .ms-lg-n50 {
        margin-right: -50px !important;
    }

    .ms-lg-n55 {
        margin-right: -55px !important;
    }

    .ms-lg-n60 {
        margin-right: -60px !important;
    }

    .ms-lg-n65 {
        margin-right: -65px !important;
    }

    .ms-lg-n70 {
        margin-right: -70px !important;
    }

    .ms-lg-n75 {
        margin-right: -75px !important;
    }

    .ms-lg-n80 {
        margin-right: -80px !important;
    }

    .ms-lg-n90 {
        margin-right: -90px !important;
    }

    .ms-lg-n95 {
        margin-right: -95px !important;
    }

    .ms-lg-n100 {
        margin-right: -100px !important;
    }

    .ms-lg-n110 {
        margin-right: -110px !important;
    }

    .ms-lg-n115 {
        margin-right: -115px !important;
    }

    .ms-lg-n120 {
        margin-right: -120px !important;
    }

    .ms-lg-n130 {
        margin-right: -130px !important;
    }

    .ms-lg-n150 {
        margin-right: -150px !important;
    }

    .ms-lg-n160 {
        margin-right: -160px !important;
    }

    .ms-lg-n180 {
        margin-right: -180px !important;
    }

    .ms-lg-n190 {
        margin-right: -190px !important;
    }

    .ms-lg-n200 {
        margin-right: -200px !important;
    }

    .ms-lg-n210 {
        margin-right: -210px !important;
    }

    .ms-lg-n235 {
        margin-right: -235px !important;
    }

    .ms-lg-n240 {
        margin-right: -240px !important;
    }

    .ms-lg-n270 {
        margin-right: -270px !important;
    }

    .ms-lg-n290 {
        margin-right: -290px !important;
    }

    .ms-lg-n300 {
        margin-right: -300px !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .p-lg-1 {
        padding: 1px !important;
    }

    .p-lg-2 {
        padding: 2px !important;
    }

    .p-lg-3 {
        padding: 3px !important;
    }

    .p-lg-4 {
        padding: 4px !important;
    }

    .p-lg-5 {
        padding: 5px !important;
    }

    .p-lg-6 {
        padding: 6px !important;
    }

    .p-lg-7 {
        padding: 7px !important;
    }

    .p-lg-8 {
        padding: 8px !important;
    }

    .p-lg-9 {
        padding: 9px !important;
    }

    .p-lg-10 {
        padding: 10px !important;
    }

    .p-lg-11 {
        padding: 11px !important;
    }

    .p-lg-12 {
        padding: 12px !important;
    }

    .p-lg-13 {
        padding: 13px !important;
    }

    .p-lg-15 {
        padding: 15px !important;
    }

    .p-lg-17 {
        padding: 17px !important;
    }

    .p-lg-18 {
        padding: 18px !important;
    }

    .p-lg-20 {
        padding: 20px !important;
    }

    .p-lg-25 {
        padding: 25px !important;
    }

    .p-lg-30 {
        padding: 30px !important;
    }

    .p-lg-35 {
        padding: 35px !important;
    }

    .p-lg-40 {
        padding: 40px !important;
    }

    .p-lg-45 {
        padding: 45px !important;
    }

    .p-lg-50 {
        padding: 50px !important;
    }

    .p-lg-55 {
        padding: 55px !important;
    }

    .p-lg-60 {
        padding: 60px !important;
    }

    .p-lg-65 {
        padding: 65px !important;
    }

    .p-lg-70 {
        padding: 70px !important;
    }

    .p-lg-75 {
        padding: 75px !important;
    }

    .p-lg-80 {
        padding: 80px !important;
    }

    .p-lg-90 {
        padding: 90px !important;
    }

    .p-lg-95 {
        padding: 95px !important;
    }

    .p-lg-100 {
        padding: 100px !important;
    }

    .p-lg-110 {
        padding: 110px !important;
    }

    .p-lg-115 {
        padding: 115px !important;
    }

    .p-lg-120 {
        padding: 120px !important;
    }

    .p-lg-130 {
        padding: 130px !important;
    }

    .p-lg-150 {
        padding: 150px !important;
    }

    .p-lg-160 {
        padding: 160px !important;
    }

    .p-lg-180 {
        padding: 180px !important;
    }

    .p-lg-190 {
        padding: 190px !important;
    }

    .p-lg-200 {
        padding: 200px !important;
    }

    .p-lg-210 {
        padding: 210px !important;
    }

    .p-lg-235 {
        padding: 235px !important;
    }

    .p-lg-240 {
        padding: 240px !important;
    }

    .p-lg-270 {
        padding: 270px !important;
    }

    .p-lg-290 {
        padding: 290px !important;
    }

    .p-lg-300 {
        padding: 300px !important;
    }

    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-lg-1 {
        padding-left: 1px !important;
        padding-right: 1px !important;
    }

    .px-lg-2 {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .px-lg-3 {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }

    .px-lg-4 {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .px-lg-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .px-lg-6 {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .px-lg-7 {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .px-lg-8 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .px-lg-9 {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .px-lg-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .px-lg-11 {
        padding-left: 11px !important;
        padding-right: 11px !important;
    }

    .px-lg-12 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .px-lg-13 {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .px-lg-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .px-lg-17 {
        padding-left: 17px !important;
        padding-right: 17px !important;
    }

    .px-lg-18 {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .px-lg-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .px-lg-25 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .px-lg-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .px-lg-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    .px-lg-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .px-lg-45 {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }

    .px-lg-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .px-lg-55 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }

    .px-lg-60 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    .px-lg-65 {
        padding-left: 65px !important;
        padding-right: 65px !important;
    }

    .px-lg-70 {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }

    .px-lg-75 {
        padding-left: 75px !important;
        padding-right: 75px !important;
    }

    .px-lg-80 {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .px-lg-90 {
        padding-left: 90px !important;
        padding-right: 90px !important;
    }

    .px-lg-95 {
        padding-left: 95px !important;
        padding-right: 95px !important;
    }

    .px-lg-100 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }

    .px-lg-110 {
        padding-left: 110px !important;
        padding-right: 110px !important;
    }

    .px-lg-115 {
        padding-left: 115px !important;
        padding-right: 115px !important;
    }

    .px-lg-120 {
        padding-left: 120px !important;
        padding-right: 120px !important;
    }

    .px-lg-130 {
        padding-left: 130px !important;
        padding-right: 130px !important;
    }

    .px-lg-150 {
        padding-left: 150px !important;
        padding-right: 150px !important;
    }

    .px-lg-160 {
        padding-left: 160px !important;
        padding-right: 160px !important;
    }

    .px-lg-180 {
        padding-left: 180px !important;
        padding-right: 180px !important;
    }

    .px-lg-190 {
        padding-left: 190px !important;
        padding-right: 190px !important;
    }

    .px-lg-200 {
        padding-left: 200px !important;
        padding-right: 200px !important;
    }

    .px-lg-210 {
        padding-left: 210px !important;
        padding-right: 210px !important;
    }

    .px-lg-235 {
        padding-left: 235px !important;
        padding-right: 235px !important;
    }

    .px-lg-240 {
        padding-left: 240px !important;
        padding-right: 240px !important;
    }

    .px-lg-270 {
        padding-left: 270px !important;
        padding-right: 270px !important;
    }

    .px-lg-290 {
        padding-left: 290px !important;
        padding-right: 290px !important;
    }

    .px-lg-300 {
        padding-left: 300px !important;
        padding-right: 300px !important;
    }

    .py-lg-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-lg-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important;
    }

    .py-lg-2 {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .py-lg-3 {
        padding-top: 3px !important;
        padding-bottom: 3px !important;
    }

    .py-lg-4 {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .py-lg-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .py-lg-6 {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .py-lg-7 {
        padding-top: 7px !important;
        padding-bottom: 7px !important;
    }

    .py-lg-8 {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .py-lg-9 {
        padding-top: 9px !important;
        padding-bottom: 9px !important;
    }

    .py-lg-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .py-lg-11 {
        padding-top: 11px !important;
        padding-bottom: 11px !important;
    }

    .py-lg-12 {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .py-lg-13 {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    .py-lg-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .py-lg-17 {
        padding-top: 17px !important;
        padding-bottom: 17px !important;
    }

    .py-lg-18 {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .py-lg-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .py-lg-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .py-lg-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .py-lg-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .py-lg-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .py-lg-45 {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .py-lg-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .py-lg-55 {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .py-lg-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .py-lg-65 {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .py-lg-70 {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .py-lg-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }

    .py-lg-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .py-lg-90 {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }

    .py-lg-95 {
        padding-top: 95px !important;
        padding-bottom: 95px !important;
    }

    .py-lg-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .py-lg-110 {
        padding-top: 110px !important;
        padding-bottom: 110px !important;
    }

    .py-lg-115 {
        padding-top: 115px !important;
        padding-bottom: 115px !important;
    }

    .py-lg-120 {
        padding-top: 120px !important;
        padding-bottom: 120px !important;
    }

    .py-lg-130 {
        padding-top: 130px !important;
        padding-bottom: 130px !important;
    }

    .py-lg-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }

    .py-lg-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important;
    }

    .py-lg-180 {
        padding-top: 180px !important;
        padding-bottom: 180px !important;
    }

    .py-lg-190 {
        padding-top: 190px !important;
        padding-bottom: 190px !important;
    }

    .py-lg-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important;
    }

    .py-lg-210 {
        padding-top: 210px !important;
        padding-bottom: 210px !important;
    }

    .py-lg-235 {
        padding-top: 235px !important;
        padding-bottom: 235px !important;
    }

    .py-lg-240 {
        padding-top: 240px !important;
        padding-bottom: 240px !important;
    }

    .py-lg-270 {
        padding-top: 270px !important;
        padding-bottom: 270px !important;
    }

    .py-lg-290 {
        padding-top: 290px !important;
        padding-bottom: 290px !important;
    }

    .py-lg-300 {
        padding-top: 300px !important;
        padding-bottom: 300px !important;
    }

    .pt-lg-0 {
        padding-top: 0 !important;
    }

    .pt-lg-1 {
        padding-top: 1px !important;
    }

    .pt-lg-2 {
        padding-top: 2px !important;
    }

    .pt-lg-3 {
        padding-top: 3px !important;
    }

    .pt-lg-4 {
        padding-top: 4px !important;
    }

    .pt-lg-5 {
        padding-top: 5px !important;
    }

    .pt-lg-6 {
        padding-top: 6px !important;
    }

    .pt-lg-7 {
        padding-top: 7px !important;
    }

    .pt-lg-8 {
        padding-top: 8px !important;
    }

    .pt-lg-9 {
        padding-top: 9px !important;
    }

    .pt-lg-10 {
        padding-top: 10px !important;
    }

    .pt-lg-11 {
        padding-top: 11px !important;
    }

    .pt-lg-12 {
        padding-top: 12px !important;
    }

    .pt-lg-13 {
        padding-top: 13px !important;
    }

    .pt-lg-15 {
        padding-top: 15px !important;
    }

    .pt-lg-17 {
        padding-top: 17px !important;
    }

    .pt-lg-18 {
        padding-top: 18px !important;
    }

    .pt-lg-20 {
        padding-top: 20px !important;
    }

    .pt-lg-25 {
        padding-top: 25px !important;
    }

    .pt-lg-30 {
        padding-top: 30px !important;
    }

    .pt-lg-35 {
        padding-top: 35px !important;
    }

    .pt-lg-40 {
        padding-top: 40px !important;
    }

    .pt-lg-45 {
        padding-top: 45px !important;
    }

    .pt-lg-50 {
        padding-top: 50px !important;
    }

    .pt-lg-55 {
        padding-top: 55px !important;
    }

    .pt-lg-60 {
        padding-top: 60px !important;
    }

    .pt-lg-65 {
        padding-top: 65px !important;
    }

    .pt-lg-70 {
        padding-top: 70px !important;
    }

    .pt-lg-75 {
        padding-top: 75px !important;
    }

    .pt-lg-80 {
        padding-top: 80px !important;
    }

    .pt-lg-90 {
        padding-top: 90px !important;
    }

    .pt-lg-95 {
        padding-top: 95px !important;
    }

    .pt-lg-100 {
        padding-top: 100px !important;
    }

    .pt-lg-110 {
        padding-top: 110px !important;
    }

    .pt-lg-115 {
        padding-top: 115px !important;
    }

    .pt-lg-120 {
        padding-top: 120px !important;
    }

    .pt-lg-130 {
        padding-top: 130px !important;
    }

    .pt-lg-150 {
        padding-top: 150px !important;
    }

    .pt-lg-160 {
        padding-top: 160px !important;
    }

    .pt-lg-180 {
        padding-top: 180px !important;
    }

    .pt-lg-190 {
        padding-top: 190px !important;
    }

    .pt-lg-200 {
        padding-top: 200px !important;
    }

    .pt-lg-210 {
        padding-top: 210px !important;
    }

    .pt-lg-235 {
        padding-top: 235px !important;
    }

    .pt-lg-240 {
        padding-top: 240px !important;
    }

    .pt-lg-270 {
        padding-top: 270px !important;
    }

    .pt-lg-290 {
        padding-top: 290px !important;
    }

    .pt-lg-300 {
        padding-top: 300px !important;
    }

    .pe-lg-0 {
        padding-left: 0 !important;
    }

    .pe-lg-1 {
        padding-left: 1px !important;
    }

    .pe-lg-2 {
        padding-left: 2px !important;
    }

    .pe-lg-3 {
        padding-left: 3px !important;
    }

    .pe-lg-4 {
        padding-left: 4px !important;
    }

    .pe-lg-5 {
        padding-left: 5px !important;
    }

    .pe-lg-6 {
        padding-left: 6px !important;
    }

    .pe-lg-7 {
        padding-left: 7px !important;
    }

    .pe-lg-8 {
        padding-left: 8px !important;
    }

    .pe-lg-9 {
        padding-left: 9px !important;
    }

    .pe-lg-10 {
        padding-left: 10px !important;
    }

    .pe-lg-11 {
        padding-left: 11px !important;
    }

    .pe-lg-12 {
        padding-left: 12px !important;
    }

    .pe-lg-13 {
        padding-left: 13px !important;
    }

    .pe-lg-15 {
        padding-left: 15px !important;
    }

    .pe-lg-17 {
        padding-left: 17px !important;
    }

    .pe-lg-18 {
        padding-left: 18px !important;
    }

    .pe-lg-20 {
        padding-left: 20px !important;
    }

    .pe-lg-25 {
        padding-left: 25px !important;
    }

    .pe-lg-30 {
        padding-left: 30px !important;
    }

    .pe-lg-35 {
        padding-left: 35px !important;
    }

    .pe-lg-40 {
        padding-left: 40px !important;
    }

    .pe-lg-45 {
        padding-left: 45px !important;
    }

    .pe-lg-50 {
        padding-left: 50px !important;
    }

    .pe-lg-55 {
        padding-left: 55px !important;
    }

    .pe-lg-60 {
        padding-left: 60px !important;
    }

    .pe-lg-65 {
        padding-left: 65px !important;
    }

    .pe-lg-70 {
        padding-left: 70px !important;
    }

    .pe-lg-75 {
        padding-left: 75px !important;
    }

    .pe-lg-80 {
        padding-left: 80px !important;
    }

    .pe-lg-90 {
        padding-left: 90px !important;
    }

    .pe-lg-95 {
        padding-left: 95px !important;
    }

    .pe-lg-100 {
        padding-left: 100px !important;
    }

    .pe-lg-110 {
        padding-left: 110px !important;
    }

    .pe-lg-115 {
        padding-left: 115px !important;
    }

    .pe-lg-120 {
        padding-left: 120px !important;
    }

    .pe-lg-130 {
        padding-left: 130px !important;
    }

    .pe-lg-150 {
        padding-left: 150px !important;
    }

    .pe-lg-160 {
        padding-left: 160px !important;
    }

    .pe-lg-180 {
        padding-left: 180px !important;
    }

    .pe-lg-190 {
        padding-left: 190px !important;
    }

    .pe-lg-200 {
        padding-left: 200px !important;
    }

    .pe-lg-210 {
        padding-left: 210px !important;
    }

    .pe-lg-235 {
        padding-left: 235px !important;
    }

    .pe-lg-240 {
        padding-left: 240px !important;
    }

    .pe-lg-270 {
        padding-left: 270px !important;
    }

    .pe-lg-290 {
        padding-left: 290px !important;
    }

    .pe-lg-300 {
        padding-left: 300px !important;
    }

    .pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .pb-lg-1 {
        padding-bottom: 1px !important;
    }

    .pb-lg-2 {
        padding-bottom: 2px !important;
    }

    .pb-lg-3 {
        padding-bottom: 3px !important;
    }

    .pb-lg-4 {
        padding-bottom: 4px !important;
    }

    .pb-lg-5 {
        padding-bottom: 5px !important;
    }

    .pb-lg-6 {
        padding-bottom: 6px !important;
    }

    .pb-lg-7 {
        padding-bottom: 7px !important;
    }

    .pb-lg-8 {
        padding-bottom: 8px !important;
    }

    .pb-lg-9 {
        padding-bottom: 9px !important;
    }

    .pb-lg-10 {
        padding-bottom: 10px !important;
    }

    .pb-lg-11 {
        padding-bottom: 11px !important;
    }

    .pb-lg-12 {
        padding-bottom: 12px !important;
    }

    .pb-lg-13 {
        padding-bottom: 13px !important;
    }

    .pb-lg-15 {
        padding-bottom: 15px !important;
    }

    .pb-lg-17 {
        padding-bottom: 17px !important;
    }

    .pb-lg-18 {
        padding-bottom: 18px !important;
    }

    .pb-lg-20 {
        padding-bottom: 20px !important;
    }

    .pb-lg-25 {
        padding-bottom: 25px !important;
    }

    .pb-lg-30 {
        padding-bottom: 30px !important;
    }

    .pb-lg-35 {
        padding-bottom: 35px !important;
    }

    .pb-lg-40 {
        padding-bottom: 40px !important;
    }

    .pb-lg-45 {
        padding-bottom: 45px !important;
    }

    .pb-lg-50 {
        padding-bottom: 50px !important;
    }

    .pb-lg-55 {
        padding-bottom: 55px !important;
    }

    .pb-lg-60 {
        padding-bottom: 60px !important;
    }

    .pb-lg-65 {
        padding-bottom: 65px !important;
    }

    .pb-lg-70 {
        padding-bottom: 70px !important;
    }

    .pb-lg-75 {
        padding-bottom: 75px !important;
    }

    .pb-lg-80 {
        padding-bottom: 80px !important;
    }

    .pb-lg-90 {
        padding-bottom: 90px !important;
    }

    .pb-lg-95 {
        padding-bottom: 95px !important;
    }

    .pb-lg-100 {
        padding-bottom: 100px !important;
    }

    .pb-lg-110 {
        padding-bottom: 110px !important;
    }

    .pb-lg-115 {
        padding-bottom: 115px !important;
    }

    .pb-lg-120 {
        padding-bottom: 120px !important;
    }

    .pb-lg-130 {
        padding-bottom: 130px !important;
    }

    .pb-lg-150 {
        padding-bottom: 150px !important;
    }

    .pb-lg-160 {
        padding-bottom: 160px !important;
    }

    .pb-lg-180 {
        padding-bottom: 180px !important;
    }

    .pb-lg-190 {
        padding-bottom: 190px !important;
    }

    .pb-lg-200 {
        padding-bottom: 200px !important;
    }

    .pb-lg-210 {
        padding-bottom: 210px !important;
    }

    .pb-lg-235 {
        padding-bottom: 235px !important;
    }

    .pb-lg-240 {
        padding-bottom: 240px !important;
    }

    .pb-lg-270 {
        padding-bottom: 270px !important;
    }

    .pb-lg-290 {
        padding-bottom: 290px !important;
    }

    .pb-lg-300 {
        padding-bottom: 300px !important;
    }

    .ps-lg-0 {
        padding-right: 0 !important;
    }

    .ps-lg-1 {
        padding-right: 1px !important;
    }

    .ps-lg-2 {
        padding-right: 2px !important;
    }

    .ps-lg-3 {
        padding-right: 3px !important;
    }

    .ps-lg-4 {
        padding-right: 4px !important;
    }

    .ps-lg-5 {
        padding-right: 5px !important;
    }

    .ps-lg-6 {
        padding-right: 6px !important;
    }

    .ps-lg-7 {
        padding-right: 7px !important;
    }

    .ps-lg-8 {
        padding-right: 8px !important;
    }

    .ps-lg-9 {
        padding-right: 9px !important;
    }

    .ps-lg-10 {
        padding-right: 10px !important;
    }

    .ps-lg-11 {
        padding-right: 11px !important;
    }

    .ps-lg-12 {
        padding-right: 12px !important;
    }

    .ps-lg-13 {
        padding-right: 13px !important;
    }

    .ps-lg-15 {
        padding-right: 15px !important;
    }

    .ps-lg-17 {
        padding-right: 17px !important;
    }

    .ps-lg-18 {
        padding-right: 18px !important;
    }

    .ps-lg-20 {
        padding-right: 20px !important;
    }

    .ps-lg-25 {
        padding-right: 25px !important;
    }

    .ps-lg-30 {
        padding-right: 30px !important;
    }

    .ps-lg-35 {
        padding-right: 35px !important;
    }

    .ps-lg-40 {
        padding-right: 40px !important;
    }

    .ps-lg-45 {
        padding-right: 45px !important;
    }

    .ps-lg-50 {
        padding-right: 50px !important;
    }

    .ps-lg-55 {
        padding-right: 55px !important;
    }

    .ps-lg-60 {
        padding-right: 60px !important;
    }

    .ps-lg-65 {
        padding-right: 65px !important;
    }

    .ps-lg-70 {
        padding-right: 70px !important;
    }

    .ps-lg-75 {
        padding-right: 75px !important;
    }

    .ps-lg-80 {
        padding-right: 80px !important;
    }

    .ps-lg-90 {
        padding-right: 90px !important;
    }

    .ps-lg-95 {
        padding-right: 95px !important;
    }

    .ps-lg-100 {
        padding-right: 100px !important;
    }

    .ps-lg-110 {
        padding-right: 110px !important;
    }

    .ps-lg-115 {
        padding-right: 115px !important;
    }

    .ps-lg-120 {
        padding-right: 120px !important;
    }

    .ps-lg-130 {
        padding-right: 130px !important;
    }

    .ps-lg-150 {
        padding-right: 150px !important;
    }

    .ps-lg-160 {
        padding-right: 160px !important;
    }

    .ps-lg-180 {
        padding-right: 180px !important;
    }

    .ps-lg-190 {
        padding-right: 190px !important;
    }

    .ps-lg-200 {
        padding-right: 200px !important;
    }

    .ps-lg-210 {
        padding-right: 210px !important;
    }

    .ps-lg-235 {
        padding-right: 235px !important;
    }

    .ps-lg-240 {
        padding-right: 240px !important;
    }

    .ps-lg-270 {
        padding-right: 270px !important;
    }

    .ps-lg-290 {
        padding-right: 290px !important;
    }

    .ps-lg-300 {
        padding-right: 300px !important;
    }

    .text-lg-start {
        text-align: right !important;
    }

    .text-lg-end {
        text-align: left !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .float-xl-start {
        float: right !important;
    }

    .float-xl-end {
        float: left !important;
    }

    .float-xl-none {
        float: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-grid {
        display: grid !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .d-xl-none {
        display: none !important;
    }

    .flex-xl-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .flex-xl-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .gap-xl-0 {
        gap: 0 !important;
    }

    .gap-xl-1 {
        gap: 1px !important;
    }

    .gap-xl-2 {
        gap: 2px !important;
    }

    .gap-xl-3 {
        gap: 3px !important;
    }

    .gap-xl-4 {
        gap: 4px !important;
    }

    .gap-xl-5 {
        gap: 5px !important;
    }

    .gap-xl-6 {
        gap: 6px !important;
    }

    .gap-xl-7 {
        gap: 7px !important;
    }

    .gap-xl-8 {
        gap: 8px !important;
    }

    .gap-xl-9 {
        gap: 9px !important;
    }

    .gap-xl-10 {
        gap: 10px !important;
    }

    .gap-xl-11 {
        gap: 11px !important;
    }

    .gap-xl-12 {
        gap: 12px !important;
    }

    .gap-xl-13 {
        gap: 13px !important;
    }

    .gap-xl-15 {
        gap: 15px !important;
    }

    .gap-xl-17 {
        gap: 17px !important;
    }

    .gap-xl-18 {
        gap: 18px !important;
    }

    .gap-xl-20 {
        gap: 20px !important;
    }

    .gap-xl-25 {
        gap: 25px !important;
    }

    .gap-xl-30 {
        gap: 30px !important;
    }

    .gap-xl-35 {
        gap: 35px !important;
    }

    .gap-xl-40 {
        gap: 40px !important;
    }

    .gap-xl-45 {
        gap: 45px !important;
    }

    .gap-xl-50 {
        gap: 50px !important;
    }

    .gap-xl-55 {
        gap: 55px !important;
    }

    .gap-xl-60 {
        gap: 60px !important;
    }

    .gap-xl-65 {
        gap: 65px !important;
    }

    .gap-xl-70 {
        gap: 70px !important;
    }

    .gap-xl-75 {
        gap: 75px !important;
    }

    .gap-xl-80 {
        gap: 80px !important;
    }

    .gap-xl-90 {
        gap: 90px !important;
    }

    .gap-xl-95 {
        gap: 95px !important;
    }

    .gap-xl-100 {
        gap: 100px !important;
    }

    .gap-xl-110 {
        gap: 110px !important;
    }

    .gap-xl-115 {
        gap: 115px !important;
    }

    .gap-xl-120 {
        gap: 120px !important;
    }

    .gap-xl-130 {
        gap: 130px !important;
    }

    .gap-xl-150 {
        gap: 150px !important;
    }

    .gap-xl-160 {
        gap: 160px !important;
    }

    .gap-xl-180 {
        gap: 180px !important;
    }

    .gap-xl-190 {
        gap: 190px !important;
    }

    .gap-xl-200 {
        gap: 200px !important;
    }

    .gap-xl-210 {
        gap: 210px !important;
    }

    .gap-xl-235 {
        gap: 235px !important;
    }

    .gap-xl-240 {
        gap: 240px !important;
    }

    .gap-xl-270 {
        gap: 270px !important;
    }

    .gap-xl-290 {
        gap: 290px !important;
    }

    .gap-xl-300 {
        gap: 300px !important;
    }

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .justify-content-xl-evenly {
        -webkit-box-pack: space-evenly !important;
        -webkit-justify-content: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    .order-xl-first {
        -webkit-box-ordinal-group: 0 !important;
        -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }

    .order-xl-0 {
        -webkit-box-ordinal-group: 1 !important;
        -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }

    .order-xl-1 {
        -webkit-box-ordinal-group: 2 !important;
        -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .order-xl-2 {
        -webkit-box-ordinal-group: 3 !important;
        -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }

    .order-xl-3 {
        -webkit-box-ordinal-group: 4 !important;
        -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }

    .order-xl-4 {
        -webkit-box-ordinal-group: 5 !important;
        -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }

    .order-xl-5 {
        -webkit-box-ordinal-group: 6 !important;
        -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }

    .order-xl-last {
        -webkit-box-ordinal-group: 7 !important;
        -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }

    .m-xl-0 {
        margin: 0 !important;
    }

    .m-xl-1 {
        margin: 1px !important;
    }

    .m-xl-2 {
        margin: 2px !important;
    }

    .m-xl-3 {
        margin: 3px !important;
    }

    .m-xl-4 {
        margin: 4px !important;
    }

    .m-xl-5 {
        margin: 5px !important;
    }

    .m-xl-6 {
        margin: 6px !important;
    }

    .m-xl-7 {
        margin: 7px !important;
    }

    .m-xl-8 {
        margin: 8px !important;
    }

    .m-xl-9 {
        margin: 9px !important;
    }

    .m-xl-10 {
        margin: 10px !important;
    }

    .m-xl-11 {
        margin: 11px !important;
    }

    .m-xl-12 {
        margin: 12px !important;
    }

    .m-xl-13 {
        margin: 13px !important;
    }

    .m-xl-15 {
        margin: 15px !important;
    }

    .m-xl-17 {
        margin: 17px !important;
    }

    .m-xl-18 {
        margin: 18px !important;
    }

    .m-xl-20 {
        margin: 20px !important;
    }

    .m-xl-25 {
        margin: 25px !important;
    }

    .m-xl-30 {
        margin: 30px !important;
    }

    .m-xl-35 {
        margin: 35px !important;
    }

    .m-xl-40 {
        margin: 40px !important;
    }

    .m-xl-45 {
        margin: 45px !important;
    }

    .m-xl-50 {
        margin: 50px !important;
    }

    .m-xl-55 {
        margin: 55px !important;
    }

    .m-xl-60 {
        margin: 60px !important;
    }

    .m-xl-65 {
        margin: 65px !important;
    }

    .m-xl-70 {
        margin: 70px !important;
    }

    .m-xl-75 {
        margin: 75px !important;
    }

    .m-xl-80 {
        margin: 80px !important;
    }

    .m-xl-90 {
        margin: 90px !important;
    }

    .m-xl-95 {
        margin: 95px !important;
    }

    .m-xl-100 {
        margin: 100px !important;
    }

    .m-xl-110 {
        margin: 110px !important;
    }

    .m-xl-115 {
        margin: 115px !important;
    }

    .m-xl-120 {
        margin: 120px !important;
    }

    .m-xl-130 {
        margin: 130px !important;
    }

    .m-xl-150 {
        margin: 150px !important;
    }

    .m-xl-160 {
        margin: 160px !important;
    }

    .m-xl-180 {
        margin: 180px !important;
    }

    .m-xl-190 {
        margin: 190px !important;
    }

    .m-xl-200 {
        margin: 200px !important;
    }

    .m-xl-210 {
        margin: 210px !important;
    }

    .m-xl-235 {
        margin: 235px !important;
    }

    .m-xl-240 {
        margin: 240px !important;
    }

    .m-xl-270 {
        margin: 270px !important;
    }

    .m-xl-290 {
        margin: 290px !important;
    }

    .m-xl-300 {
        margin: 300px !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mx-xl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-xl-1 {
        margin-left: 1px !important;
        margin-right: 1px !important;
    }

    .mx-xl-2 {
        margin-left: 2px !important;
        margin-right: 2px !important;
    }

    .mx-xl-3 {
        margin-left: 3px !important;
        margin-right: 3px !important;
    }

    .mx-xl-4 {
        margin-left: 4px !important;
        margin-right: 4px !important;
    }

    .mx-xl-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .mx-xl-6 {
        margin-left: 6px !important;
        margin-right: 6px !important;
    }

    .mx-xl-7 {
        margin-left: 7px !important;
        margin-right: 7px !important;
    }

    .mx-xl-8 {
        margin-left: 8px !important;
        margin-right: 8px !important;
    }

    .mx-xl-9 {
        margin-left: 9px !important;
        margin-right: 9px !important;
    }

    .mx-xl-10 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .mx-xl-11 {
        margin-left: 11px !important;
        margin-right: 11px !important;
    }

    .mx-xl-12 {
        margin-left: 12px !important;
        margin-right: 12px !important;
    }

    .mx-xl-13 {
        margin-left: 13px !important;
        margin-right: 13px !important;
    }

    .mx-xl-15 {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .mx-xl-17 {
        margin-left: 17px !important;
        margin-right: 17px !important;
    }

    .mx-xl-18 {
        margin-left: 18px !important;
        margin-right: 18px !important;
    }

    .mx-xl-20 {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .mx-xl-25 {
        margin-left: 25px !important;
        margin-right: 25px !important;
    }

    .mx-xl-30 {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .mx-xl-35 {
        margin-left: 35px !important;
        margin-right: 35px !important;
    }

    .mx-xl-40 {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .mx-xl-45 {
        margin-left: 45px !important;
        margin-right: 45px !important;
    }

    .mx-xl-50 {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .mx-xl-55 {
        margin-left: 55px !important;
        margin-right: 55px !important;
    }

    .mx-xl-60 {
        margin-left: 60px !important;
        margin-right: 60px !important;
    }

    .mx-xl-65 {
        margin-left: 65px !important;
        margin-right: 65px !important;
    }

    .mx-xl-70 {
        margin-left: 70px !important;
        margin-right: 70px !important;
    }

    .mx-xl-75 {
        margin-left: 75px !important;
        margin-right: 75px !important;
    }

    .mx-xl-80 {
        margin-left: 80px !important;
        margin-right: 80px !important;
    }

    .mx-xl-90 {
        margin-left: 90px !important;
        margin-right: 90px !important;
    }

    .mx-xl-95 {
        margin-left: 95px !important;
        margin-right: 95px !important;
    }

    .mx-xl-100 {
        margin-left: 100px !important;
        margin-right: 100px !important;
    }

    .mx-xl-110 {
        margin-left: 110px !important;
        margin-right: 110px !important;
    }

    .mx-xl-115 {
        margin-left: 115px !important;
        margin-right: 115px !important;
    }

    .mx-xl-120 {
        margin-left: 120px !important;
        margin-right: 120px !important;
    }

    .mx-xl-130 {
        margin-left: 130px !important;
        margin-right: 130px !important;
    }

    .mx-xl-150 {
        margin-left: 150px !important;
        margin-right: 150px !important;
    }

    .mx-xl-160 {
        margin-left: 160px !important;
        margin-right: 160px !important;
    }

    .mx-xl-180 {
        margin-left: 180px !important;
        margin-right: 180px !important;
    }

    .mx-xl-190 {
        margin-left: 190px !important;
        margin-right: 190px !important;
    }

    .mx-xl-200 {
        margin-left: 200px !important;
        margin-right: 200px !important;
    }

    .mx-xl-210 {
        margin-left: 210px !important;
        margin-right: 210px !important;
    }

    .mx-xl-235 {
        margin-left: 235px !important;
        margin-right: 235px !important;
    }

    .mx-xl-240 {
        margin-left: 240px !important;
        margin-right: 240px !important;
    }

    .mx-xl-270 {
        margin-left: 270px !important;
        margin-right: 270px !important;
    }

    .mx-xl-290 {
        margin-left: 290px !important;
        margin-right: 290px !important;
    }

    .mx-xl-300 {
        margin-left: 300px !important;
        margin-right: 300px !important;
    }

    .mx-xl-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-xl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xl-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important;
    }

    .my-xl-2 {
        margin-top: 2px !important;
        margin-bottom: 2px !important;
    }

    .my-xl-3 {
        margin-top: 3px !important;
        margin-bottom: 3px !important;
    }

    .my-xl-4 {
        margin-top: 4px !important;
        margin-bottom: 4px !important;
    }

    .my-xl-5 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .my-xl-6 {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .my-xl-7 {
        margin-top: 7px !important;
        margin-bottom: 7px !important;
    }

    .my-xl-8 {
        margin-top: 8px !important;
        margin-bottom: 8px !important;
    }

    .my-xl-9 {
        margin-top: 9px !important;
        margin-bottom: 9px !important;
    }

    .my-xl-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .my-xl-11 {
        margin-top: 11px !important;
        margin-bottom: 11px !important;
    }

    .my-xl-12 {
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }

    .my-xl-13 {
        margin-top: 13px !important;
        margin-bottom: 13px !important;
    }

    .my-xl-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .my-xl-17 {
        margin-top: 17px !important;
        margin-bottom: 17px !important;
    }

    .my-xl-18 {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
    }

    .my-xl-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .my-xl-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important;
    }

    .my-xl-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .my-xl-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important;
    }

    .my-xl-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .my-xl-45 {
        margin-top: 45px !important;
        margin-bottom: 45px !important;
    }

    .my-xl-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .my-xl-55 {
        margin-top: 55px !important;
        margin-bottom: 55px !important;
    }

    .my-xl-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .my-xl-65 {
        margin-top: 65px !important;
        margin-bottom: 65px !important;
    }

    .my-xl-70 {
        margin-top: 70px !important;
        margin-bottom: 70px !important;
    }

    .my-xl-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important;
    }

    .my-xl-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important;
    }

    .my-xl-90 {
        margin-top: 90px !important;
        margin-bottom: 90px !important;
    }

    .my-xl-95 {
        margin-top: 95px !important;
        margin-bottom: 95px !important;
    }

    .my-xl-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important;
    }

    .my-xl-110 {
        margin-top: 110px !important;
        margin-bottom: 110px !important;
    }

    .my-xl-115 {
        margin-top: 115px !important;
        margin-bottom: 115px !important;
    }

    .my-xl-120 {
        margin-top: 120px !important;
        margin-bottom: 120px !important;
    }

    .my-xl-130 {
        margin-top: 130px !important;
        margin-bottom: 130px !important;
    }

    .my-xl-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important;
    }

    .my-xl-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important;
    }

    .my-xl-180 {
        margin-top: 180px !important;
        margin-bottom: 180px !important;
    }

    .my-xl-190 {
        margin-top: 190px !important;
        margin-bottom: 190px !important;
    }

    .my-xl-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important;
    }

    .my-xl-210 {
        margin-top: 210px !important;
        margin-bottom: 210px !important;
    }

    .my-xl-235 {
        margin-top: 235px !important;
        margin-bottom: 235px !important;
    }

    .my-xl-240 {
        margin-top: 240px !important;
        margin-bottom: 240px !important;
    }

    .my-xl-270 {
        margin-top: 270px !important;
        margin-bottom: 270px !important;
    }

    .my-xl-290 {
        margin-top: 290px !important;
        margin-bottom: 290px !important;
    }

    .my-xl-300 {
        margin-top: 300px !important;
        margin-bottom: 300px !important;
    }

    .my-xl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mt-xl-1 {
        margin-top: 1px !important;
    }

    .mt-xl-2 {
        margin-top: 2px !important;
    }

    .mt-xl-3 {
        margin-top: 3px !important;
    }

    .mt-xl-4 {
        margin-top: 4px !important;
    }

    .mt-xl-5 {
        margin-top: 5px !important;
    }

    .mt-xl-6 {
        margin-top: 6px !important;
    }

    .mt-xl-7 {
        margin-top: 7px !important;
    }

    .mt-xl-8 {
        margin-top: 8px !important;
    }

    .mt-xl-9 {
        margin-top: 9px !important;
    }

    .mt-xl-10 {
        margin-top: 10px !important;
    }

    .mt-xl-11 {
        margin-top: 11px !important;
    }

    .mt-xl-12 {
        margin-top: 12px !important;
    }

    .mt-xl-13 {
        margin-top: 13px !important;
    }

    .mt-xl-15 {
        margin-top: 15px !important;
    }

    .mt-xl-17 {
        margin-top: 17px !important;
    }

    .mt-xl-18 {
        margin-top: 18px !important;
    }

    .mt-xl-20 {
        margin-top: 20px !important;
    }

    .mt-xl-25 {
        margin-top: 25px !important;
    }

    .mt-xl-30 {
        margin-top: 30px !important;
    }

    .mt-xl-35 {
        margin-top: 35px !important;
    }

    .mt-xl-40 {
        margin-top: 40px !important;
    }

    .mt-xl-45 {
        margin-top: 45px !important;
    }

    .mt-xl-50 {
        margin-top: 50px !important;
    }

    .mt-xl-55 {
        margin-top: 55px !important;
    }

    .mt-xl-60 {
        margin-top: 60px !important;
    }

    .mt-xl-65 {
        margin-top: 65px !important;
    }

    .mt-xl-70 {
        margin-top: 70px !important;
    }

    .mt-xl-75 {
        margin-top: 75px !important;
    }

    .mt-xl-80 {
        margin-top: 80px !important;
    }

    .mt-xl-90 {
        margin-top: 90px !important;
    }

    .mt-xl-95 {
        margin-top: 95px !important;
    }

    .mt-xl-100 {
        margin-top: 100px !important;
    }

    .mt-xl-110 {
        margin-top: 110px !important;
    }

    .mt-xl-115 {
        margin-top: 115px !important;
    }

    .mt-xl-120 {
        margin-top: 120px !important;
    }

    .mt-xl-130 {
        margin-top: 130px !important;
    }

    .mt-xl-150 {
        margin-top: 150px !important;
    }

    .mt-xl-160 {
        margin-top: 160px !important;
    }

    .mt-xl-180 {
        margin-top: 180px !important;
    }

    .mt-xl-190 {
        margin-top: 190px !important;
    }

    .mt-xl-200 {
        margin-top: 200px !important;
    }

    .mt-xl-210 {
        margin-top: 210px !important;
    }

    .mt-xl-235 {
        margin-top: 235px !important;
    }

    .mt-xl-240 {
        margin-top: 240px !important;
    }

    .mt-xl-270 {
        margin-top: 270px !important;
    }

    .mt-xl-290 {
        margin-top: 290px !important;
    }

    .mt-xl-300 {
        margin-top: 300px !important;
    }

    .mt-xl-auto {
        margin-top: auto !important;
    }

    .me-xl-0 {
        margin-left: 0 !important;
    }

    .me-xl-1 {
        margin-left: 1px !important;
    }

    .me-xl-2 {
        margin-left: 2px !important;
    }

    .me-xl-3 {
        margin-left: 3px !important;
    }

    .me-xl-4 {
        margin-left: 4px !important;
    }

    .me-xl-5 {
        margin-left: 5px !important;
    }

    .me-xl-6 {
        margin-left: 6px !important;
    }

    .me-xl-7 {
        margin-left: 7px !important;
    }

    .me-xl-8 {
        margin-left: 8px !important;
    }

    .me-xl-9 {
        margin-left: 9px !important;
    }

    .me-xl-10 {
        margin-left: 10px !important;
    }

    .me-xl-11 {
        margin-left: 11px !important;
    }

    .me-xl-12 {
        margin-left: 12px !important;
    }

    .me-xl-13 {
        margin-left: 13px !important;
    }

    .me-xl-15 {
        margin-left: 15px !important;
    }

    .me-xl-17 {
        margin-left: 17px !important;
    }

    .me-xl-18 {
        margin-left: 18px !important;
    }

    .me-xl-20 {
        margin-left: 20px !important;
    }

    .me-xl-25 {
        margin-left: 25px !important;
    }

    .me-xl-30 {
        margin-left: 30px !important;
    }

    .me-xl-35 {
        margin-left: 35px !important;
    }

    .me-xl-40 {
        margin-left: 40px !important;
    }

    .me-xl-45 {
        margin-left: 45px !important;
    }

    .me-xl-50 {
        margin-left: 50px !important;
    }

    .me-xl-55 {
        margin-left: 55px !important;
    }

    .me-xl-60 {
        margin-left: 60px !important;
    }

    .me-xl-65 {
        margin-left: 65px !important;
    }

    .me-xl-70 {
        margin-left: 70px !important;
    }

    .me-xl-75 {
        margin-left: 75px !important;
    }

    .me-xl-80 {
        margin-left: 80px !important;
    }

    .me-xl-90 {
        margin-left: 90px !important;
    }

    .me-xl-95 {
        margin-left: 95px !important;
    }

    .me-xl-100 {
        margin-left: 100px !important;
    }

    .me-xl-110 {
        margin-left: 110px !important;
    }

    .me-xl-115 {
        margin-left: 115px !important;
    }

    .me-xl-120 {
        margin-left: 120px !important;
    }

    .me-xl-130 {
        margin-left: 130px !important;
    }

    .me-xl-150 {
        margin-left: 150px !important;
    }

    .me-xl-160 {
        margin-left: 160px !important;
    }

    .me-xl-180 {
        margin-left: 180px !important;
    }

    .me-xl-190 {
        margin-left: 190px !important;
    }

    .me-xl-200 {
        margin-left: 200px !important;
    }

    .me-xl-210 {
        margin-left: 210px !important;
    }

    .me-xl-235 {
        margin-left: 235px !important;
    }

    .me-xl-240 {
        margin-left: 240px !important;
    }

    .me-xl-270 {
        margin-left: 270px !important;
    }

    .me-xl-290 {
        margin-left: 290px !important;
    }

    .me-xl-300 {
        margin-left: 300px !important;
    }

    .me-xl-auto {
        margin-left: auto !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xl-1 {
        margin-bottom: 1px !important;
    }

    .mb-xl-2 {
        margin-bottom: 2px !important;
    }

    .mb-xl-3 {
        margin-bottom: 3px !important;
    }

    .mb-xl-4 {
        margin-bottom: 4px !important;
    }

    .mb-xl-5 {
        margin-bottom: 5px !important;
    }

    .mb-xl-6 {
        margin-bottom: 6px !important;
    }

    .mb-xl-7 {
        margin-bottom: 7px !important;
    }

    .mb-xl-8 {
        margin-bottom: 8px !important;
    }

    .mb-xl-9 {
        margin-bottom: 9px !important;
    }

    .mb-xl-10 {
        margin-bottom: 10px !important;
    }

    .mb-xl-11 {
        margin-bottom: 11px !important;
    }

    .mb-xl-12 {
        margin-bottom: 12px !important;
    }

    .mb-xl-13 {
        margin-bottom: 13px !important;
    }

    .mb-xl-15 {
        margin-bottom: 15px !important;
    }

    .mb-xl-17 {
        margin-bottom: 17px !important;
    }

    .mb-xl-18 {
        margin-bottom: 18px !important;
    }

    .mb-xl-20 {
        margin-bottom: 20px !important;
    }

    .mb-xl-25 {
        margin-bottom: 25px !important;
    }

    .mb-xl-30 {
        margin-bottom: 30px !important;
    }

    .mb-xl-35 {
        margin-bottom: 35px !important;
    }

    .mb-xl-40 {
        margin-bottom: 40px !important;
    }

    .mb-xl-45 {
        margin-bottom: 45px !important;
    }

    .mb-xl-50 {
        margin-bottom: 50px !important;
    }

    .mb-xl-55 {
        margin-bottom: 55px !important;
    }

    .mb-xl-60 {
        margin-bottom: 60px !important;
    }

    .mb-xl-65 {
        margin-bottom: 65px !important;
    }

    .mb-xl-70 {
        margin-bottom: 70px !important;
    }

    .mb-xl-75 {
        margin-bottom: 75px !important;
    }

    .mb-xl-80 {
        margin-bottom: 80px !important;
    }

    .mb-xl-90 {
        margin-bottom: 90px !important;
    }

    .mb-xl-95 {
        margin-bottom: 95px !important;
    }

    .mb-xl-100 {
        margin-bottom: 100px !important;
    }

    .mb-xl-110 {
        margin-bottom: 110px !important;
    }

    .mb-xl-115 {
        margin-bottom: 115px !important;
    }

    .mb-xl-120 {
        margin-bottom: 120px !important;
    }

    .mb-xl-130 {
        margin-bottom: 130px !important;
    }

    .mb-xl-150 {
        margin-bottom: 150px !important;
    }

    .mb-xl-160 {
        margin-bottom: 160px !important;
    }

    .mb-xl-180 {
        margin-bottom: 180px !important;
    }

    .mb-xl-190 {
        margin-bottom: 190px !important;
    }

    .mb-xl-200 {
        margin-bottom: 200px !important;
    }

    .mb-xl-210 {
        margin-bottom: 210px !important;
    }

    .mb-xl-235 {
        margin-bottom: 235px !important;
    }

    .mb-xl-240 {
        margin-bottom: 240px !important;
    }

    .mb-xl-270 {
        margin-bottom: 270px !important;
    }

    .mb-xl-290 {
        margin-bottom: 290px !important;
    }

    .mb-xl-300 {
        margin-bottom: 300px !important;
    }

    .mb-xl-auto {
        margin-bottom: auto !important;
    }

    .ms-xl-0 {
        margin-right: 0 !important;
    }

    .ms-xl-1 {
        margin-right: 1px !important;
    }

    .ms-xl-2 {
        margin-right: 2px !important;
    }

    .ms-xl-3 {
        margin-right: 3px !important;
    }

    .ms-xl-4 {
        margin-right: 4px !important;
    }

    .ms-xl-5 {
        margin-right: 5px !important;
    }

    .ms-xl-6 {
        margin-right: 6px !important;
    }

    .ms-xl-7 {
        margin-right: 7px !important;
    }

    .ms-xl-8 {
        margin-right: 8px !important;
    }

    .ms-xl-9 {
        margin-right: 9px !important;
    }

    .ms-xl-10 {
        margin-right: 10px !important;
    }

    .ms-xl-11 {
        margin-right: 11px !important;
    }

    .ms-xl-12 {
        margin-right: 12px !important;
    }

    .ms-xl-13 {
        margin-right: 13px !important;
    }

    .ms-xl-15 {
        margin-right: 15px !important;
    }

    .ms-xl-17 {
        margin-right: 17px !important;
    }

    .ms-xl-18 {
        margin-right: 18px !important;
    }

    .ms-xl-20 {
        margin-right: 20px !important;
    }

    .ms-xl-25 {
        margin-right: 25px !important;
    }

    .ms-xl-30 {
        margin-right: 30px !important;
    }

    .ms-xl-35 {
        margin-right: 35px !important;
    }

    .ms-xl-40 {
        margin-right: 40px !important;
    }

    .ms-xl-45 {
        margin-right: 45px !important;
    }

    .ms-xl-50 {
        margin-right: 50px !important;
    }

    .ms-xl-55 {
        margin-right: 55px !important;
    }

    .ms-xl-60 {
        margin-right: 60px !important;
    }

    .ms-xl-65 {
        margin-right: 65px !important;
    }

    .ms-xl-70 {
        margin-right: 70px !important;
    }

    .ms-xl-75 {
        margin-right: 75px !important;
    }

    .ms-xl-80 {
        margin-right: 80px !important;
    }

    .ms-xl-90 {
        margin-right: 90px !important;
    }

    .ms-xl-95 {
        margin-right: 95px !important;
    }

    .ms-xl-100 {
        margin-right: 100px !important;
    }

    .ms-xl-110 {
        margin-right: 110px !important;
    }

    .ms-xl-115 {
        margin-right: 115px !important;
    }

    .ms-xl-120 {
        margin-right: 120px !important;
    }

    .ms-xl-130 {
        margin-right: 130px !important;
    }

    .ms-xl-150 {
        margin-right: 150px !important;
    }

    .ms-xl-160 {
        margin-right: 160px !important;
    }

    .ms-xl-180 {
        margin-right: 180px !important;
    }

    .ms-xl-190 {
        margin-right: 190px !important;
    }

    .ms-xl-200 {
        margin-right: 200px !important;
    }

    .ms-xl-210 {
        margin-right: 210px !important;
    }

    .ms-xl-235 {
        margin-right: 235px !important;
    }

    .ms-xl-240 {
        margin-right: 240px !important;
    }

    .ms-xl-270 {
        margin-right: 270px !important;
    }

    .ms-xl-290 {
        margin-right: 290px !important;
    }

    .ms-xl-300 {
        margin-right: 300px !important;
    }

    .ms-xl-auto {
        margin-right: auto !important;
    }

    .m-xl-n1 {
        margin: -1px !important;
    }

    .m-xl-n2 {
        margin: -2px !important;
    }

    .m-xl-n3 {
        margin: -3px !important;
    }

    .m-xl-n4 {
        margin: -4px !important;
    }

    .m-xl-n5 {
        margin: -5px !important;
    }

    .m-xl-n6 {
        margin: -6px !important;
    }

    .m-xl-n7 {
        margin: -7px !important;
    }

    .m-xl-n8 {
        margin: -8px !important;
    }

    .m-xl-n9 {
        margin: -9px !important;
    }

    .m-xl-n10 {
        margin: -10px !important;
    }

    .m-xl-n11 {
        margin: -11px !important;
    }

    .m-xl-n12 {
        margin: -12px !important;
    }

    .m-xl-n13 {
        margin: -13px !important;
    }

    .m-xl-n15 {
        margin: -15px !important;
    }

    .m-xl-n17 {
        margin: -17px !important;
    }

    .m-xl-n18 {
        margin: -18px !important;
    }

    .m-xl-n20 {
        margin: -20px !important;
    }

    .m-xl-n25 {
        margin: -25px !important;
    }

    .m-xl-n30 {
        margin: -30px !important;
    }

    .m-xl-n35 {
        margin: -35px !important;
    }

    .m-xl-n40 {
        margin: -40px !important;
    }

    .m-xl-n45 {
        margin: -45px !important;
    }

    .m-xl-n50 {
        margin: -50px !important;
    }

    .m-xl-n55 {
        margin: -55px !important;
    }

    .m-xl-n60 {
        margin: -60px !important;
    }

    .m-xl-n65 {
        margin: -65px !important;
    }

    .m-xl-n70 {
        margin: -70px !important;
    }

    .m-xl-n75 {
        margin: -75px !important;
    }

    .m-xl-n80 {
        margin: -80px !important;
    }

    .m-xl-n90 {
        margin: -90px !important;
    }

    .m-xl-n95 {
        margin: -95px !important;
    }

    .m-xl-n100 {
        margin: -100px !important;
    }

    .m-xl-n110 {
        margin: -110px !important;
    }

    .m-xl-n115 {
        margin: -115px !important;
    }

    .m-xl-n120 {
        margin: -120px !important;
    }

    .m-xl-n130 {
        margin: -130px !important;
    }

    .m-xl-n150 {
        margin: -150px !important;
    }

    .m-xl-n160 {
        margin: -160px !important;
    }

    .m-xl-n180 {
        margin: -180px !important;
    }

    .m-xl-n190 {
        margin: -190px !important;
    }

    .m-xl-n200 {
        margin: -200px !important;
    }

    .m-xl-n210 {
        margin: -210px !important;
    }

    .m-xl-n235 {
        margin: -235px !important;
    }

    .m-xl-n240 {
        margin: -240px !important;
    }

    .m-xl-n270 {
        margin: -270px !important;
    }

    .m-xl-n290 {
        margin: -290px !important;
    }

    .m-xl-n300 {
        margin: -300px !important;
    }

    .mx-xl-n1 {
        margin-left: -1px !important;
        margin-right: -1px !important;
    }

    .mx-xl-n2 {
        margin-left: -2px !important;
        margin-right: -2px !important;
    }

    .mx-xl-n3 {
        margin-left: -3px !important;
        margin-right: -3px !important;
    }

    .mx-xl-n4 {
        margin-left: -4px !important;
        margin-right: -4px !important;
    }

    .mx-xl-n5 {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .mx-xl-n6 {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .mx-xl-n7 {
        margin-left: -7px !important;
        margin-right: -7px !important;
    }

    .mx-xl-n8 {
        margin-left: -8px !important;
        margin-right: -8px !important;
    }

    .mx-xl-n9 {
        margin-left: -9px !important;
        margin-right: -9px !important;
    }

    .mx-xl-n10 {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .mx-xl-n11 {
        margin-left: -11px !important;
        margin-right: -11px !important;
    }

    .mx-xl-n12 {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }

    .mx-xl-n13 {
        margin-left: -13px !important;
        margin-right: -13px !important;
    }

    .mx-xl-n15 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .mx-xl-n17 {
        margin-left: -17px !important;
        margin-right: -17px !important;
    }

    .mx-xl-n18 {
        margin-left: -18px !important;
        margin-right: -18px !important;
    }

    .mx-xl-n20 {
        margin-left: -20px !important;
        margin-right: -20px !important;
    }

    .mx-xl-n25 {
        margin-left: -25px !important;
        margin-right: -25px !important;
    }

    .mx-xl-n30 {
        margin-left: -30px !important;
        margin-right: -30px !important;
    }

    .mx-xl-n35 {
        margin-left: -35px !important;
        margin-right: -35px !important;
    }

    .mx-xl-n40 {
        margin-left: -40px !important;
        margin-right: -40px !important;
    }

    .mx-xl-n45 {
        margin-left: -45px !important;
        margin-right: -45px !important;
    }

    .mx-xl-n50 {
        margin-left: -50px !important;
        margin-right: -50px !important;
    }

    .mx-xl-n55 {
        margin-left: -55px !important;
        margin-right: -55px !important;
    }

    .mx-xl-n60 {
        margin-left: -60px !important;
        margin-right: -60px !important;
    }

    .mx-xl-n65 {
        margin-left: -65px !important;
        margin-right: -65px !important;
    }

    .mx-xl-n70 {
        margin-left: -70px !important;
        margin-right: -70px !important;
    }

    .mx-xl-n75 {
        margin-left: -75px !important;
        margin-right: -75px !important;
    }

    .mx-xl-n80 {
        margin-left: -80px !important;
        margin-right: -80px !important;
    }

    .mx-xl-n90 {
        margin-left: -90px !important;
        margin-right: -90px !important;
    }

    .mx-xl-n95 {
        margin-left: -95px !important;
        margin-right: -95px !important;
    }

    .mx-xl-n100 {
        margin-left: -100px !important;
        margin-right: -100px !important;
    }

    .mx-xl-n110 {
        margin-left: -110px !important;
        margin-right: -110px !important;
    }

    .mx-xl-n115 {
        margin-left: -115px !important;
        margin-right: -115px !important;
    }

    .mx-xl-n120 {
        margin-left: -120px !important;
        margin-right: -120px !important;
    }

    .mx-xl-n130 {
        margin-left: -130px !important;
        margin-right: -130px !important;
    }

    .mx-xl-n150 {
        margin-left: -150px !important;
        margin-right: -150px !important;
    }

    .mx-xl-n160 {
        margin-left: -160px !important;
        margin-right: -160px !important;
    }

    .mx-xl-n180 {
        margin-left: -180px !important;
        margin-right: -180px !important;
    }

    .mx-xl-n190 {
        margin-left: -190px !important;
        margin-right: -190px !important;
    }

    .mx-xl-n200 {
        margin-left: -200px !important;
        margin-right: -200px !important;
    }

    .mx-xl-n210 {
        margin-left: -210px !important;
        margin-right: -210px !important;
    }

    .mx-xl-n235 {
        margin-left: -235px !important;
        margin-right: -235px !important;
    }

    .mx-xl-n240 {
        margin-left: -240px !important;
        margin-right: -240px !important;
    }

    .mx-xl-n270 {
        margin-left: -270px !important;
        margin-right: -270px !important;
    }

    .mx-xl-n290 {
        margin-left: -290px !important;
        margin-right: -290px !important;
    }

    .mx-xl-n300 {
        margin-left: -300px !important;
        margin-right: -300px !important;
    }

    .my-xl-n1 {
        margin-top: -1px !important;
        margin-bottom: -1px !important;
    }

    .my-xl-n2 {
        margin-top: -2px !important;
        margin-bottom: -2px !important;
    }

    .my-xl-n3 {
        margin-top: -3px !important;
        margin-bottom: -3px !important;
    }

    .my-xl-n4 {
        margin-top: -4px !important;
        margin-bottom: -4px !important;
    }

    .my-xl-n5 {
        margin-top: -5px !important;
        margin-bottom: -5px !important;
    }

    .my-xl-n6 {
        margin-top: -6px !important;
        margin-bottom: -6px !important;
    }

    .my-xl-n7 {
        margin-top: -7px !important;
        margin-bottom: -7px !important;
    }

    .my-xl-n8 {
        margin-top: -8px !important;
        margin-bottom: -8px !important;
    }

    .my-xl-n9 {
        margin-top: -9px !important;
        margin-bottom: -9px !important;
    }

    .my-xl-n10 {
        margin-top: -10px !important;
        margin-bottom: -10px !important;
    }

    .my-xl-n11 {
        margin-top: -11px !important;
        margin-bottom: -11px !important;
    }

    .my-xl-n12 {
        margin-top: -12px !important;
        margin-bottom: -12px !important;
    }

    .my-xl-n13 {
        margin-top: -13px !important;
        margin-bottom: -13px !important;
    }

    .my-xl-n15 {
        margin-top: -15px !important;
        margin-bottom: -15px !important;
    }

    .my-xl-n17 {
        margin-top: -17px !important;
        margin-bottom: -17px !important;
    }

    .my-xl-n18 {
        margin-top: -18px !important;
        margin-bottom: -18px !important;
    }

    .my-xl-n20 {
        margin-top: -20px !important;
        margin-bottom: -20px !important;
    }

    .my-xl-n25 {
        margin-top: -25px !important;
        margin-bottom: -25px !important;
    }

    .my-xl-n30 {
        margin-top: -30px !important;
        margin-bottom: -30px !important;
    }

    .my-xl-n35 {
        margin-top: -35px !important;
        margin-bottom: -35px !important;
    }

    .my-xl-n40 {
        margin-top: -40px !important;
        margin-bottom: -40px !important;
    }

    .my-xl-n45 {
        margin-top: -45px !important;
        margin-bottom: -45px !important;
    }

    .my-xl-n50 {
        margin-top: -50px !important;
        margin-bottom: -50px !important;
    }

    .my-xl-n55 {
        margin-top: -55px !important;
        margin-bottom: -55px !important;
    }

    .my-xl-n60 {
        margin-top: -60px !important;
        margin-bottom: -60px !important;
    }

    .my-xl-n65 {
        margin-top: -65px !important;
        margin-bottom: -65px !important;
    }

    .my-xl-n70 {
        margin-top: -70px !important;
        margin-bottom: -70px !important;
    }

    .my-xl-n75 {
        margin-top: -75px !important;
        margin-bottom: -75px !important;
    }

    .my-xl-n80 {
        margin-top: -80px !important;
        margin-bottom: -80px !important;
    }

    .my-xl-n90 {
        margin-top: -90px !important;
        margin-bottom: -90px !important;
    }

    .my-xl-n95 {
        margin-top: -95px !important;
        margin-bottom: -95px !important;
    }

    .my-xl-n100 {
        margin-top: -100px !important;
        margin-bottom: -100px !important;
    }

    .my-xl-n110 {
        margin-top: -110px !important;
        margin-bottom: -110px !important;
    }

    .my-xl-n115 {
        margin-top: -115px !important;
        margin-bottom: -115px !important;
    }

    .my-xl-n120 {
        margin-top: -120px !important;
        margin-bottom: -120px !important;
    }

    .my-xl-n130 {
        margin-top: -130px !important;
        margin-bottom: -130px !important;
    }

    .my-xl-n150 {
        margin-top: -150px !important;
        margin-bottom: -150px !important;
    }

    .my-xl-n160 {
        margin-top: -160px !important;
        margin-bottom: -160px !important;
    }

    .my-xl-n180 {
        margin-top: -180px !important;
        margin-bottom: -180px !important;
    }

    .my-xl-n190 {
        margin-top: -190px !important;
        margin-bottom: -190px !important;
    }

    .my-xl-n200 {
        margin-top: -200px !important;
        margin-bottom: -200px !important;
    }

    .my-xl-n210 {
        margin-top: -210px !important;
        margin-bottom: -210px !important;
    }

    .my-xl-n235 {
        margin-top: -235px !important;
        margin-bottom: -235px !important;
    }

    .my-xl-n240 {
        margin-top: -240px !important;
        margin-bottom: -240px !important;
    }

    .my-xl-n270 {
        margin-top: -270px !important;
        margin-bottom: -270px !important;
    }

    .my-xl-n290 {
        margin-top: -290px !important;
        margin-bottom: -290px !important;
    }

    .my-xl-n300 {
        margin-top: -300px !important;
        margin-bottom: -300px !important;
    }

    .mt-xl-n1 {
        margin-top: -1px !important;
    }

    .mt-xl-n2 {
        margin-top: -2px !important;
    }

    .mt-xl-n3 {
        margin-top: -3px !important;
    }

    .mt-xl-n4 {
        margin-top: -4px !important;
    }

    .mt-xl-n5 {
        margin-top: -5px !important;
    }

    .mt-xl-n6 {
        margin-top: -6px !important;
    }

    .mt-xl-n7 {
        margin-top: -7px !important;
    }

    .mt-xl-n8 {
        margin-top: -8px !important;
    }

    .mt-xl-n9 {
        margin-top: -9px !important;
    }

    .mt-xl-n10 {
        margin-top: -10px !important;
    }

    .mt-xl-n11 {
        margin-top: -11px !important;
    }

    .mt-xl-n12 {
        margin-top: -12px !important;
    }

    .mt-xl-n13 {
        margin-top: -13px !important;
    }

    .mt-xl-n15 {
        margin-top: -15px !important;
    }

    .mt-xl-n17 {
        margin-top: -17px !important;
    }

    .mt-xl-n18 {
        margin-top: -18px !important;
    }

    .mt-xl-n20 {
        margin-top: -20px !important;
    }

    .mt-xl-n25 {
        margin-top: -25px !important;
    }

    .mt-xl-n30 {
        margin-top: -30px !important;
    }

    .mt-xl-n35 {
        margin-top: -35px !important;
    }

    .mt-xl-n40 {
        margin-top: -40px !important;
    }

    .mt-xl-n45 {
        margin-top: -45px !important;
    }

    .mt-xl-n50 {
        margin-top: -50px !important;
    }

    .mt-xl-n55 {
        margin-top: -55px !important;
    }

    .mt-xl-n60 {
        margin-top: -60px !important;
    }

    .mt-xl-n65 {
        margin-top: -65px !important;
    }

    .mt-xl-n70 {
        margin-top: -70px !important;
    }

    .mt-xl-n75 {
        margin-top: -75px !important;
    }

    .mt-xl-n80 {
        margin-top: -80px !important;
    }

    .mt-xl-n90 {
        margin-top: -90px !important;
    }

    .mt-xl-n95 {
        margin-top: -95px !important;
    }

    .mt-xl-n100 {
        margin-top: -100px !important;
    }

    .mt-xl-n110 {
        margin-top: -110px !important;
    }

    .mt-xl-n115 {
        margin-top: -115px !important;
    }

    .mt-xl-n120 {
        margin-top: -120px !important;
    }

    .mt-xl-n130 {
        margin-top: -130px !important;
    }

    .mt-xl-n150 {
        margin-top: -150px !important;
    }

    .mt-xl-n160 {
        margin-top: -160px !important;
    }

    .mt-xl-n180 {
        margin-top: -180px !important;
    }

    .mt-xl-n190 {
        margin-top: -190px !important;
    }

    .mt-xl-n200 {
        margin-top: -200px !important;
    }

    .mt-xl-n210 {
        margin-top: -210px !important;
    }

    .mt-xl-n235 {
        margin-top: -235px !important;
    }

    .mt-xl-n240 {
        margin-top: -240px !important;
    }

    .mt-xl-n270 {
        margin-top: -270px !important;
    }

    .mt-xl-n290 {
        margin-top: -290px !important;
    }

    .mt-xl-n300 {
        margin-top: -300px !important;
    }

    .me-xl-n1 {
        margin-left: -1px !important;
    }

    .me-xl-n2 {
        margin-left: -2px !important;
    }

    .me-xl-n3 {
        margin-left: -3px !important;
    }

    .me-xl-n4 {
        margin-left: -4px !important;
    }

    .me-xl-n5 {
        margin-left: -5px !important;
    }

    .me-xl-n6 {
        margin-left: -6px !important;
    }

    .me-xl-n7 {
        margin-left: -7px !important;
    }

    .me-xl-n8 {
        margin-left: -8px !important;
    }

    .me-xl-n9 {
        margin-left: -9px !important;
    }

    .me-xl-n10 {
        margin-left: -10px !important;
    }

    .me-xl-n11 {
        margin-left: -11px !important;
    }

    .me-xl-n12 {
        margin-left: -12px !important;
    }

    .me-xl-n13 {
        margin-left: -13px !important;
    }

    .me-xl-n15 {
        margin-left: -15px !important;
    }

    .me-xl-n17 {
        margin-left: -17px !important;
    }

    .me-xl-n18 {
        margin-left: -18px !important;
    }

    .me-xl-n20 {
        margin-left: -20px !important;
    }

    .me-xl-n25 {
        margin-left: -25px !important;
    }

    .me-xl-n30 {
        margin-left: -30px !important;
    }

    .me-xl-n35 {
        margin-left: -35px !important;
    }

    .me-xl-n40 {
        margin-left: -40px !important;
    }

    .me-xl-n45 {
        margin-left: -45px !important;
    }

    .me-xl-n50 {
        margin-left: -50px !important;
    }

    .me-xl-n55 {
        margin-left: -55px !important;
    }

    .me-xl-n60 {
        margin-left: -60px !important;
    }

    .me-xl-n65 {
        margin-left: -65px !important;
    }

    .me-xl-n70 {
        margin-left: -70px !important;
    }

    .me-xl-n75 {
        margin-left: -75px !important;
    }

    .me-xl-n80 {
        margin-left: -80px !important;
    }

    .me-xl-n90 {
        margin-left: -90px !important;
    }

    .me-xl-n95 {
        margin-left: -95px !important;
    }

    .me-xl-n100 {
        margin-left: -100px !important;
    }

    .me-xl-n110 {
        margin-left: -110px !important;
    }

    .me-xl-n115 {
        margin-left: -115px !important;
    }

    .me-xl-n120 {
        margin-left: -120px !important;
    }

    .me-xl-n130 {
        margin-left: -130px !important;
    }

    .me-xl-n150 {
        margin-left: -150px !important;
    }

    .me-xl-n160 {
        margin-left: -160px !important;
    }

    .me-xl-n180 {
        margin-left: -180px !important;
    }

    .me-xl-n190 {
        margin-left: -190px !important;
    }

    .me-xl-n200 {
        margin-left: -200px !important;
    }

    .me-xl-n210 {
        margin-left: -210px !important;
    }

    .me-xl-n235 {
        margin-left: -235px !important;
    }

    .me-xl-n240 {
        margin-left: -240px !important;
    }

    .me-xl-n270 {
        margin-left: -270px !important;
    }

    .me-xl-n290 {
        margin-left: -290px !important;
    }

    .me-xl-n300 {
        margin-left: -300px !important;
    }

    .mb-xl-n1 {
        margin-bottom: -1px !important;
    }

    .mb-xl-n2 {
        margin-bottom: -2px !important;
    }

    .mb-xl-n3 {
        margin-bottom: -3px !important;
    }

    .mb-xl-n4 {
        margin-bottom: -4px !important;
    }

    .mb-xl-n5 {
        margin-bottom: -5px !important;
    }

    .mb-xl-n6 {
        margin-bottom: -6px !important;
    }

    .mb-xl-n7 {
        margin-bottom: -7px !important;
    }

    .mb-xl-n8 {
        margin-bottom: -8px !important;
    }

    .mb-xl-n9 {
        margin-bottom: -9px !important;
    }

    .mb-xl-n10 {
        margin-bottom: -10px !important;
    }

    .mb-xl-n11 {
        margin-bottom: -11px !important;
    }

    .mb-xl-n12 {
        margin-bottom: -12px !important;
    }

    .mb-xl-n13 {
        margin-bottom: -13px !important;
    }

    .mb-xl-n15 {
        margin-bottom: -15px !important;
    }

    .mb-xl-n17 {
        margin-bottom: -17px !important;
    }

    .mb-xl-n18 {
        margin-bottom: -18px !important;
    }

    .mb-xl-n20 {
        margin-bottom: -20px !important;
    }

    .mb-xl-n25 {
        margin-bottom: -25px !important;
    }

    .mb-xl-n30 {
        margin-bottom: -30px !important;
    }

    .mb-xl-n35 {
        margin-bottom: -35px !important;
    }

    .mb-xl-n40 {
        margin-bottom: -40px !important;
    }

    .mb-xl-n45 {
        margin-bottom: -45px !important;
    }

    .mb-xl-n50 {
        margin-bottom: -50px !important;
    }

    .mb-xl-n55 {
        margin-bottom: -55px !important;
    }

    .mb-xl-n60 {
        margin-bottom: -60px !important;
    }

    .mb-xl-n65 {
        margin-bottom: -65px !important;
    }

    .mb-xl-n70 {
        margin-bottom: -70px !important;
    }

    .mb-xl-n75 {
        margin-bottom: -75px !important;
    }

    .mb-xl-n80 {
        margin-bottom: -80px !important;
    }

    .mb-xl-n90 {
        margin-bottom: -90px !important;
    }

    .mb-xl-n95 {
        margin-bottom: -95px !important;
    }

    .mb-xl-n100 {
        margin-bottom: -100px !important;
    }

    .mb-xl-n110 {
        margin-bottom: -110px !important;
    }

    .mb-xl-n115 {
        margin-bottom: -115px !important;
    }

    .mb-xl-n120 {
        margin-bottom: -120px !important;
    }

    .mb-xl-n130 {
        margin-bottom: -130px !important;
    }

    .mb-xl-n150 {
        margin-bottom: -150px !important;
    }

    .mb-xl-n160 {
        margin-bottom: -160px !important;
    }

    .mb-xl-n180 {
        margin-bottom: -180px !important;
    }

    .mb-xl-n190 {
        margin-bottom: -190px !important;
    }

    .mb-xl-n200 {
        margin-bottom: -200px !important;
    }

    .mb-xl-n210 {
        margin-bottom: -210px !important;
    }

    .mb-xl-n235 {
        margin-bottom: -235px !important;
    }

    .mb-xl-n240 {
        margin-bottom: -240px !important;
    }

    .mb-xl-n270 {
        margin-bottom: -270px !important;
    }

    .mb-xl-n290 {
        margin-bottom: -290px !important;
    }

    .mb-xl-n300 {
        margin-bottom: -300px !important;
    }

    .ms-xl-n1 {
        margin-right: -1px !important;
    }

    .ms-xl-n2 {
        margin-right: -2px !important;
    }

    .ms-xl-n3 {
        margin-right: -3px !important;
    }

    .ms-xl-n4 {
        margin-right: -4px !important;
    }

    .ms-xl-n5 {
        margin-right: -5px !important;
    }

    .ms-xl-n6 {
        margin-right: -6px !important;
    }

    .ms-xl-n7 {
        margin-right: -7px !important;
    }

    .ms-xl-n8 {
        margin-right: -8px !important;
    }

    .ms-xl-n9 {
        margin-right: -9px !important;
    }

    .ms-xl-n10 {
        margin-right: -10px !important;
    }

    .ms-xl-n11 {
        margin-right: -11px !important;
    }

    .ms-xl-n12 {
        margin-right: -12px !important;
    }

    .ms-xl-n13 {
        margin-right: -13px !important;
    }

    .ms-xl-n15 {
        margin-right: -15px !important;
    }

    .ms-xl-n17 {
        margin-right: -17px !important;
    }

    .ms-xl-n18 {
        margin-right: -18px !important;
    }

    .ms-xl-n20 {
        margin-right: -20px !important;
    }

    .ms-xl-n25 {
        margin-right: -25px !important;
    }

    .ms-xl-n30 {
        margin-right: -30px !important;
    }

    .ms-xl-n35 {
        margin-right: -35px !important;
    }

    .ms-xl-n40 {
        margin-right: -40px !important;
    }

    .ms-xl-n45 {
        margin-right: -45px !important;
    }

    .ms-xl-n50 {
        margin-right: -50px !important;
    }

    .ms-xl-n55 {
        margin-right: -55px !important;
    }

    .ms-xl-n60 {
        margin-right: -60px !important;
    }

    .ms-xl-n65 {
        margin-right: -65px !important;
    }

    .ms-xl-n70 {
        margin-right: -70px !important;
    }

    .ms-xl-n75 {
        margin-right: -75px !important;
    }

    .ms-xl-n80 {
        margin-right: -80px !important;
    }

    .ms-xl-n90 {
        margin-right: -90px !important;
    }

    .ms-xl-n95 {
        margin-right: -95px !important;
    }

    .ms-xl-n100 {
        margin-right: -100px !important;
    }

    .ms-xl-n110 {
        margin-right: -110px !important;
    }

    .ms-xl-n115 {
        margin-right: -115px !important;
    }

    .ms-xl-n120 {
        margin-right: -120px !important;
    }

    .ms-xl-n130 {
        margin-right: -130px !important;
    }

    .ms-xl-n150 {
        margin-right: -150px !important;
    }

    .ms-xl-n160 {
        margin-right: -160px !important;
    }

    .ms-xl-n180 {
        margin-right: -180px !important;
    }

    .ms-xl-n190 {
        margin-right: -190px !important;
    }

    .ms-xl-n200 {
        margin-right: -200px !important;
    }

    .ms-xl-n210 {
        margin-right: -210px !important;
    }

    .ms-xl-n235 {
        margin-right: -235px !important;
    }

    .ms-xl-n240 {
        margin-right: -240px !important;
    }

    .ms-xl-n270 {
        margin-right: -270px !important;
    }

    .ms-xl-n290 {
        margin-right: -290px !important;
    }

    .ms-xl-n300 {
        margin-right: -300px !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .p-xl-1 {
        padding: 1px !important;
    }

    .p-xl-2 {
        padding: 2px !important;
    }

    .p-xl-3 {
        padding: 3px !important;
    }

    .p-xl-4 {
        padding: 4px !important;
    }

    .p-xl-5 {
        padding: 5px !important;
    }

    .p-xl-6 {
        padding: 6px !important;
    }

    .p-xl-7 {
        padding: 7px !important;
    }

    .p-xl-8 {
        padding: 8px !important;
    }

    .p-xl-9 {
        padding: 9px !important;
    }

    .p-xl-10 {
        padding: 10px !important;
    }

    .p-xl-11 {
        padding: 11px !important;
    }

    .p-xl-12 {
        padding: 12px !important;
    }

    .p-xl-13 {
        padding: 13px !important;
    }

    .p-xl-15 {
        padding: 15px !important;
    }

    .p-xl-17 {
        padding: 17px !important;
    }

    .p-xl-18 {
        padding: 18px !important;
    }

    .p-xl-20 {
        padding: 20px !important;
    }

    .p-xl-25 {
        padding: 25px !important;
    }

    .p-xl-30 {
        padding: 30px !important;
    }

    .p-xl-35 {
        padding: 35px !important;
    }

    .p-xl-40 {
        padding: 40px !important;
    }

    .p-xl-45 {
        padding: 45px !important;
    }

    .p-xl-50 {
        padding: 50px !important;
    }

    .p-xl-55 {
        padding: 55px !important;
    }

    .p-xl-60 {
        padding: 60px !important;
    }

    .p-xl-65 {
        padding: 65px !important;
    }

    .p-xl-70 {
        padding: 70px !important;
    }

    .p-xl-75 {
        padding: 75px !important;
    }

    .p-xl-80 {
        padding: 80px !important;
    }

    .p-xl-90 {
        padding: 90px !important;
    }

    .p-xl-95 {
        padding: 95px !important;
    }

    .p-xl-100 {
        padding: 100px !important;
    }

    .p-xl-110 {
        padding: 110px !important;
    }

    .p-xl-115 {
        padding: 115px !important;
    }

    .p-xl-120 {
        padding: 120px !important;
    }

    .p-xl-130 {
        padding: 130px !important;
    }

    .p-xl-150 {
        padding: 150px !important;
    }

    .p-xl-160 {
        padding: 160px !important;
    }

    .p-xl-180 {
        padding: 180px !important;
    }

    .p-xl-190 {
        padding: 190px !important;
    }

    .p-xl-200 {
        padding: 200px !important;
    }

    .p-xl-210 {
        padding: 210px !important;
    }

    .p-xl-235 {
        padding: 235px !important;
    }

    .p-xl-240 {
        padding: 240px !important;
    }

    .p-xl-270 {
        padding: 270px !important;
    }

    .p-xl-290 {
        padding: 290px !important;
    }

    .p-xl-300 {
        padding: 300px !important;
    }

    .px-xl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-xl-1 {
        padding-left: 1px !important;
        padding-right: 1px !important;
    }

    .px-xl-2 {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .px-xl-3 {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }

    .px-xl-4 {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .px-xl-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .px-xl-6 {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .px-xl-7 {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .px-xl-8 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .px-xl-9 {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .px-xl-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .px-xl-11 {
        padding-left: 11px !important;
        padding-right: 11px !important;
    }

    .px-xl-12 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .px-xl-13 {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .px-xl-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .px-xl-17 {
        padding-left: 17px !important;
        padding-right: 17px !important;
    }

    .px-xl-18 {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .px-xl-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .px-xl-25 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .px-xl-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .px-xl-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    .px-xl-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .px-xl-45 {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }

    .px-xl-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .px-xl-55 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }

    .px-xl-60 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    .px-xl-65 {
        padding-left: 65px !important;
        padding-right: 65px !important;
    }

    .px-xl-70 {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }

    .px-xl-75 {
        padding-left: 75px !important;
        padding-right: 75px !important;
    }

    .px-xl-80 {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .px-xl-90 {
        padding-left: 90px !important;
        padding-right: 90px !important;
    }

    .px-xl-95 {
        padding-left: 95px !important;
        padding-right: 95px !important;
    }

    .px-xl-100 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }

    .px-xl-110 {
        padding-left: 110px !important;
        padding-right: 110px !important;
    }

    .px-xl-115 {
        padding-left: 115px !important;
        padding-right: 115px !important;
    }

    .px-xl-120 {
        padding-left: 120px !important;
        padding-right: 120px !important;
    }

    .px-xl-130 {
        padding-left: 130px !important;
        padding-right: 130px !important;
    }

    .px-xl-150 {
        padding-left: 150px !important;
        padding-right: 150px !important;
    }

    .px-xl-160 {
        padding-left: 160px !important;
        padding-right: 160px !important;
    }

    .px-xl-180 {
        padding-left: 180px !important;
        padding-right: 180px !important;
    }

    .px-xl-190 {
        padding-left: 190px !important;
        padding-right: 190px !important;
    }

    .px-xl-200 {
        padding-left: 200px !important;
        padding-right: 200px !important;
    }

    .px-xl-210 {
        padding-left: 210px !important;
        padding-right: 210px !important;
    }

    .px-xl-235 {
        padding-left: 235px !important;
        padding-right: 235px !important;
    }

    .px-xl-240 {
        padding-left: 240px !important;
        padding-right: 240px !important;
    }

    .px-xl-270 {
        padding-left: 270px !important;
        padding-right: 270px !important;
    }

    .px-xl-290 {
        padding-left: 290px !important;
        padding-right: 290px !important;
    }

    .px-xl-300 {
        padding-left: 300px !important;
        padding-right: 300px !important;
    }

    .py-xl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xl-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important;
    }

    .py-xl-2 {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .py-xl-3 {
        padding-top: 3px !important;
        padding-bottom: 3px !important;
    }

    .py-xl-4 {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .py-xl-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .py-xl-6 {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .py-xl-7 {
        padding-top: 7px !important;
        padding-bottom: 7px !important;
    }

    .py-xl-8 {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .py-xl-9 {
        padding-top: 9px !important;
        padding-bottom: 9px !important;
    }

    .py-xl-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .py-xl-11 {
        padding-top: 11px !important;
        padding-bottom: 11px !important;
    }

    .py-xl-12 {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .py-xl-13 {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    .py-xl-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .py-xl-17 {
        padding-top: 17px !important;
        padding-bottom: 17px !important;
    }

    .py-xl-18 {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .py-xl-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .py-xl-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .py-xl-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .py-xl-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .py-xl-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .py-xl-45 {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .py-xl-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .py-xl-55 {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .py-xl-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .py-xl-65 {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .py-xl-70 {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .py-xl-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }

    .py-xl-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .py-xl-90 {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }

    .py-xl-95 {
        padding-top: 95px !important;
        padding-bottom: 95px !important;
    }

    .py-xl-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .py-xl-110 {
        padding-top: 110px !important;
        padding-bottom: 110px !important;
    }

    .py-xl-115 {
        padding-top: 115px !important;
        padding-bottom: 115px !important;
    }

    .py-xl-120 {
        padding-top: 120px !important;
        padding-bottom: 120px !important;
    }

    .py-xl-130 {
        padding-top: 130px !important;
        padding-bottom: 130px !important;
    }

    .py-xl-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }

    .py-xl-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important;
    }

    .py-xl-180 {
        padding-top: 180px !important;
        padding-bottom: 180px !important;
    }

    .py-xl-190 {
        padding-top: 190px !important;
        padding-bottom: 190px !important;
    }

    .py-xl-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important;
    }

    .py-xl-210 {
        padding-top: 210px !important;
        padding-bottom: 210px !important;
    }

    .py-xl-235 {
        padding-top: 235px !important;
        padding-bottom: 235px !important;
    }

    .py-xl-240 {
        padding-top: 240px !important;
        padding-bottom: 240px !important;
    }

    .py-xl-270 {
        padding-top: 270px !important;
        padding-bottom: 270px !important;
    }

    .py-xl-290 {
        padding-top: 290px !important;
        padding-bottom: 290px !important;
    }

    .py-xl-300 {
        padding-top: 300px !important;
        padding-bottom: 300px !important;
    }

    .pt-xl-0 {
        padding-top: 0 !important;
    }

    .pt-xl-1 {
        padding-top: 1px !important;
    }

    .pt-xl-2 {
        padding-top: 2px !important;
    }

    .pt-xl-3 {
        padding-top: 3px !important;
    }

    .pt-xl-4 {
        padding-top: 4px !important;
    }

    .pt-xl-5 {
        padding-top: 5px !important;
    }

    .pt-xl-6 {
        padding-top: 6px !important;
    }

    .pt-xl-7 {
        padding-top: 7px !important;
    }

    .pt-xl-8 {
        padding-top: 8px !important;
    }

    .pt-xl-9 {
        padding-top: 9px !important;
    }

    .pt-xl-10 {
        padding-top: 10px !important;
    }

    .pt-xl-11 {
        padding-top: 11px !important;
    }

    .pt-xl-12 {
        padding-top: 12px !important;
    }

    .pt-xl-13 {
        padding-top: 13px !important;
    }

    .pt-xl-15 {
        padding-top: 15px !important;
    }

    .pt-xl-17 {
        padding-top: 17px !important;
    }

    .pt-xl-18 {
        padding-top: 18px !important;
    }

    .pt-xl-20 {
        padding-top: 20px !important;
    }

    .pt-xl-25 {
        padding-top: 25px !important;
    }

    .pt-xl-30 {
        padding-top: 30px !important;
    }

    .pt-xl-35 {
        padding-top: 35px !important;
    }

    .pt-xl-40 {
        padding-top: 40px !important;
    }

    .pt-xl-45 {
        padding-top: 45px !important;
    }

    .pt-xl-50 {
        padding-top: 50px !important;
    }

    .pt-xl-55 {
        padding-top: 55px !important;
    }

    .pt-xl-60 {
        padding-top: 60px !important;
    }

    .pt-xl-65 {
        padding-top: 65px !important;
    }

    .pt-xl-70 {
        padding-top: 70px !important;
    }

    .pt-xl-75 {
        padding-top: 75px !important;
    }

    .pt-xl-80 {
        padding-top: 80px !important;
    }

    .pt-xl-90 {
        padding-top: 90px !important;
    }

    .pt-xl-95 {
        padding-top: 95px !important;
    }

    .pt-xl-100 {
        padding-top: 100px !important;
    }

    .pt-xl-110 {
        padding-top: 110px !important;
    }

    .pt-xl-115 {
        padding-top: 115px !important;
    }

    .pt-xl-120 {
        padding-top: 120px !important;
    }

    .pt-xl-130 {
        padding-top: 130px !important;
    }

    .pt-xl-150 {
        padding-top: 150px !important;
    }

    .pt-xl-160 {
        padding-top: 160px !important;
    }

    .pt-xl-180 {
        padding-top: 180px !important;
    }

    .pt-xl-190 {
        padding-top: 190px !important;
    }

    .pt-xl-200 {
        padding-top: 200px !important;
    }

    .pt-xl-210 {
        padding-top: 210px !important;
    }

    .pt-xl-235 {
        padding-top: 235px !important;
    }

    .pt-xl-240 {
        padding-top: 240px !important;
    }

    .pt-xl-270 {
        padding-top: 270px !important;
    }

    .pt-xl-290 {
        padding-top: 290px !important;
    }

    .pt-xl-300 {
        padding-top: 300px !important;
    }

    .pe-xl-0 {
        padding-left: 0 !important;
    }

    .pe-xl-1 {
        padding-left: 1px !important;
    }

    .pe-xl-2 {
        padding-left: 2px !important;
    }

    .pe-xl-3 {
        padding-left: 3px !important;
    }

    .pe-xl-4 {
        padding-left: 4px !important;
    }

    .pe-xl-5 {
        padding-left: 5px !important;
    }

    .pe-xl-6 {
        padding-left: 6px !important;
    }

    .pe-xl-7 {
        padding-left: 7px !important;
    }

    .pe-xl-8 {
        padding-left: 8px !important;
    }

    .pe-xl-9 {
        padding-left: 9px !important;
    }

    .pe-xl-10 {
        padding-left: 10px !important;
    }

    .pe-xl-11 {
        padding-left: 11px !important;
    }

    .pe-xl-12 {
        padding-left: 12px !important;
    }

    .pe-xl-13 {
        padding-left: 13px !important;
    }

    .pe-xl-15 {
        padding-left: 15px !important;
    }

    .pe-xl-17 {
        padding-left: 17px !important;
    }

    .pe-xl-18 {
        padding-left: 18px !important;
    }

    .pe-xl-20 {
        padding-left: 20px !important;
    }

    .pe-xl-25 {
        padding-left: 25px !important;
    }

    .pe-xl-30 {
        padding-left: 30px !important;
    }

    .pe-xl-35 {
        padding-left: 35px !important;
    }

    .pe-xl-40 {
        padding-left: 40px !important;
    }

    .pe-xl-45 {
        padding-left: 45px !important;
    }

    .pe-xl-50 {
        padding-left: 50px !important;
    }

    .pe-xl-55 {
        padding-left: 55px !important;
    }

    .pe-xl-60 {
        padding-left: 60px !important;
    }

    .pe-xl-65 {
        padding-left: 65px !important;
    }

    .pe-xl-70 {
        padding-left: 70px !important;
    }

    .pe-xl-75 {
        padding-left: 75px !important;
    }

    .pe-xl-80 {
        padding-left: 80px !important;
    }

    .pe-xl-90 {
        padding-left: 90px !important;
    }

    .pe-xl-95 {
        padding-left: 95px !important;
    }

    .pe-xl-100 {
        padding-left: 100px !important;
    }

    .pe-xl-110 {
        padding-left: 110px !important;
    }

    .pe-xl-115 {
        padding-left: 115px !important;
    }

    .pe-xl-120 {
        padding-left: 120px !important;
    }

    .pe-xl-130 {
        padding-left: 130px !important;
    }

    .pe-xl-150 {
        padding-left: 150px !important;
    }

    .pe-xl-160 {
        padding-left: 160px !important;
    }

    .pe-xl-180 {
        padding-left: 180px !important;
    }

    .pe-xl-190 {
        padding-left: 190px !important;
    }

    .pe-xl-200 {
        padding-left: 200px !important;
    }

    .pe-xl-210 {
        padding-left: 210px !important;
    }

    .pe-xl-235 {
        padding-left: 235px !important;
    }

    .pe-xl-240 {
        padding-left: 240px !important;
    }

    .pe-xl-270 {
        padding-left: 270px !important;
    }

    .pe-xl-290 {
        padding-left: 290px !important;
    }

    .pe-xl-300 {
        padding-left: 300px !important;
    }

    .pb-xl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xl-1 {
        padding-bottom: 1px !important;
    }

    .pb-xl-2 {
        padding-bottom: 2px !important;
    }

    .pb-xl-3 {
        padding-bottom: 3px !important;
    }

    .pb-xl-4 {
        padding-bottom: 4px !important;
    }

    .pb-xl-5 {
        padding-bottom: 5px !important;
    }

    .pb-xl-6 {
        padding-bottom: 6px !important;
    }

    .pb-xl-7 {
        padding-bottom: 7px !important;
    }

    .pb-xl-8 {
        padding-bottom: 8px !important;
    }

    .pb-xl-9 {
        padding-bottom: 9px !important;
    }

    .pb-xl-10 {
        padding-bottom: 10px !important;
    }

    .pb-xl-11 {
        padding-bottom: 11px !important;
    }

    .pb-xl-12 {
        padding-bottom: 12px !important;
    }

    .pb-xl-13 {
        padding-bottom: 13px !important;
    }

    .pb-xl-15 {
        padding-bottom: 15px !important;
    }

    .pb-xl-17 {
        padding-bottom: 17px !important;
    }

    .pb-xl-18 {
        padding-bottom: 18px !important;
    }

    .pb-xl-20 {
        padding-bottom: 20px !important;
    }

    .pb-xl-25 {
        padding-bottom: 25px !important;
    }

    .pb-xl-30 {
        padding-bottom: 30px !important;
    }

    .pb-xl-35 {
        padding-bottom: 35px !important;
    }

    .pb-xl-40 {
        padding-bottom: 40px !important;
    }

    .pb-xl-45 {
        padding-bottom: 45px !important;
    }

    .pb-xl-50 {
        padding-bottom: 50px !important;
    }

    .pb-xl-55 {
        padding-bottom: 55px !important;
    }

    .pb-xl-60 {
        padding-bottom: 60px !important;
    }

    .pb-xl-65 {
        padding-bottom: 65px !important;
    }

    .pb-xl-70 {
        padding-bottom: 70px !important;
    }

    .pb-xl-75 {
        padding-bottom: 75px !important;
    }

    .pb-xl-80 {
        padding-bottom: 80px !important;
    }

    .pb-xl-90 {
        padding-bottom: 90px !important;
    }

    .pb-xl-95 {
        padding-bottom: 95px !important;
    }

    .pb-xl-100 {
        padding-bottom: 100px !important;
    }

    .pb-xl-110 {
        padding-bottom: 110px !important;
    }

    .pb-xl-115 {
        padding-bottom: 115px !important;
    }

    .pb-xl-120 {
        padding-bottom: 120px !important;
    }

    .pb-xl-130 {
        padding-bottom: 130px !important;
    }

    .pb-xl-150 {
        padding-bottom: 150px !important;
    }

    .pb-xl-160 {
        padding-bottom: 160px !important;
    }

    .pb-xl-180 {
        padding-bottom: 180px !important;
    }

    .pb-xl-190 {
        padding-bottom: 190px !important;
    }

    .pb-xl-200 {
        padding-bottom: 200px !important;
    }

    .pb-xl-210 {
        padding-bottom: 210px !important;
    }

    .pb-xl-235 {
        padding-bottom: 235px !important;
    }

    .pb-xl-240 {
        padding-bottom: 240px !important;
    }

    .pb-xl-270 {
        padding-bottom: 270px !important;
    }

    .pb-xl-290 {
        padding-bottom: 290px !important;
    }

    .pb-xl-300 {
        padding-bottom: 300px !important;
    }

    .ps-xl-0 {
        padding-right: 0 !important;
    }

    .ps-xl-1 {
        padding-right: 1px !important;
    }

    .ps-xl-2 {
        padding-right: 2px !important;
    }

    .ps-xl-3 {
        padding-right: 3px !important;
    }

    .ps-xl-4 {
        padding-right: 4px !important;
    }

    .ps-xl-5 {
        padding-right: 5px !important;
    }

    .ps-xl-6 {
        padding-right: 6px !important;
    }

    .ps-xl-7 {
        padding-right: 7px !important;
    }

    .ps-xl-8 {
        padding-right: 8px !important;
    }

    .ps-xl-9 {
        padding-right: 9px !important;
    }

    .ps-xl-10 {
        padding-right: 10px !important;
    }

    .ps-xl-11 {
        padding-right: 11px !important;
    }

    .ps-xl-12 {
        padding-right: 12px !important;
    }

    .ps-xl-13 {
        padding-right: 13px !important;
    }

    .ps-xl-15 {
        padding-right: 15px !important;
    }

    .ps-xl-17 {
        padding-right: 17px !important;
    }

    .ps-xl-18 {
        padding-right: 18px !important;
    }

    .ps-xl-20 {
        padding-right: 20px !important;
    }

    .ps-xl-25 {
        padding-right: 25px !important;
    }

    .ps-xl-30 {
        padding-right: 30px !important;
    }

    .ps-xl-35 {
        padding-right: 35px !important;
    }

    .ps-xl-40 {
        padding-right: 40px !important;
    }

    .ps-xl-45 {
        padding-right: 45px !important;
    }

    .ps-xl-50 {
        padding-right: 50px !important;
    }

    .ps-xl-55 {
        padding-right: 55px !important;
    }

    .ps-xl-60 {
        padding-right: 60px !important;
    }

    .ps-xl-65 {
        padding-right: 65px !important;
    }

    .ps-xl-70 {
        padding-right: 70px !important;
    }

    .ps-xl-75 {
        padding-right: 75px !important;
    }

    .ps-xl-80 {
        padding-right: 80px !important;
    }

    .ps-xl-90 {
        padding-right: 90px !important;
    }

    .ps-xl-95 {
        padding-right: 95px !important;
    }

    .ps-xl-100 {
        padding-right: 100px !important;
    }

    .ps-xl-110 {
        padding-right: 110px !important;
    }

    .ps-xl-115 {
        padding-right: 115px !important;
    }

    .ps-xl-120 {
        padding-right: 120px !important;
    }

    .ps-xl-130 {
        padding-right: 130px !important;
    }

    .ps-xl-150 {
        padding-right: 150px !important;
    }

    .ps-xl-160 {
        padding-right: 160px !important;
    }

    .ps-xl-180 {
        padding-right: 180px !important;
    }

    .ps-xl-190 {
        padding-right: 190px !important;
    }

    .ps-xl-200 {
        padding-right: 200px !important;
    }

    .ps-xl-210 {
        padding-right: 210px !important;
    }

    .ps-xl-235 {
        padding-right: 235px !important;
    }

    .ps-xl-240 {
        padding-right: 240px !important;
    }

    .ps-xl-270 {
        padding-right: 270px !important;
    }

    .ps-xl-290 {
        padding-right: 290px !important;
    }

    .ps-xl-300 {
        padding-right: 300px !important;
    }

    .text-xl-start {
        text-align: right !important;
    }

    .text-xl-end {
        text-align: left !important;
    }

    .text-xl-center {
        text-align: center !important;
    }
}

@media (min-width: 1400px) {
    .float-xxl-start {
        float: right !important;
    }

    .float-xxl-end {
        float: left !important;
    }

    .float-xxl-none {
        float: none !important;
    }

    .d-xxl-inline {
        display: inline !important;
    }

    .d-xxl-inline-block {
        display: inline-block !important;
    }

    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-grid {
        display: grid !important;
    }

    .d-xxl-table {
        display: table !important;
    }

    .d-xxl-table-row {
        display: table-row !important;
    }

    .d-xxl-table-cell {
        display: table-cell !important;
    }

    .d-xxl-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xxl-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .d-xxl-none {
        display: none !important;
    }

    .flex-xxl-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xxl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xxl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xxl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xxl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xxl-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xxl-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xxl-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xxl-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .flex-xxl-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xxl-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xxl-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .gap-xxl-0 {
        gap: 0 !important;
    }

    .gap-xxl-1 {
        gap: 1px !important;
    }

    .gap-xxl-2 {
        gap: 2px !important;
    }

    .gap-xxl-3 {
        gap: 3px !important;
    }

    .gap-xxl-4 {
        gap: 4px !important;
    }

    .gap-xxl-5 {
        gap: 5px !important;
    }

    .gap-xxl-6 {
        gap: 6px !important;
    }

    .gap-xxl-7 {
        gap: 7px !important;
    }

    .gap-xxl-8 {
        gap: 8px !important;
    }

    .gap-xxl-9 {
        gap: 9px !important;
    }

    .gap-xxl-10 {
        gap: 10px !important;
    }

    .gap-xxl-11 {
        gap: 11px !important;
    }

    .gap-xxl-12 {
        gap: 12px !important;
    }

    .gap-xxl-13 {
        gap: 13px !important;
    }

    .gap-xxl-15 {
        gap: 15px !important;
    }

    .gap-xxl-17 {
        gap: 17px !important;
    }

    .gap-xxl-18 {
        gap: 18px !important;
    }

    .gap-xxl-20 {
        gap: 20px !important;
    }

    .gap-xxl-25 {
        gap: 25px !important;
    }

    .gap-xxl-30 {
        gap: 30px !important;
    }

    .gap-xxl-35 {
        gap: 35px !important;
    }

    .gap-xxl-40 {
        gap: 40px !important;
    }

    .gap-xxl-45 {
        gap: 45px !important;
    }

    .gap-xxl-50 {
        gap: 50px !important;
    }

    .gap-xxl-55 {
        gap: 55px !important;
    }

    .gap-xxl-60 {
        gap: 60px !important;
    }

    .gap-xxl-65 {
        gap: 65px !important;
    }

    .gap-xxl-70 {
        gap: 70px !important;
    }

    .gap-xxl-75 {
        gap: 75px !important;
    }

    .gap-xxl-80 {
        gap: 80px !important;
    }

    .gap-xxl-90 {
        gap: 90px !important;
    }

    .gap-xxl-95 {
        gap: 95px !important;
    }

    .gap-xxl-100 {
        gap: 100px !important;
    }

    .gap-xxl-110 {
        gap: 110px !important;
    }

    .gap-xxl-115 {
        gap: 115px !important;
    }

    .gap-xxl-120 {
        gap: 120px !important;
    }

    .gap-xxl-130 {
        gap: 130px !important;
    }

    .gap-xxl-150 {
        gap: 150px !important;
    }

    .gap-xxl-160 {
        gap: 160px !important;
    }

    .gap-xxl-180 {
        gap: 180px !important;
    }

    .gap-xxl-190 {
        gap: 190px !important;
    }

    .gap-xxl-200 {
        gap: 200px !important;
    }

    .gap-xxl-210 {
        gap: 210px !important;
    }

    .gap-xxl-235 {
        gap: 235px !important;
    }

    .gap-xxl-240 {
        gap: 240px !important;
    }

    .gap-xxl-270 {
        gap: 270px !important;
    }

    .gap-xxl-290 {
        gap: 290px !important;
    }

    .gap-xxl-300 {
        gap: 300px !important;
    }

    .justify-content-xxl-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xxl-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xxl-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .justify-content-xxl-evenly {
        -webkit-box-pack: space-evenly !important;
        -webkit-justify-content: space-evenly !important;
        -ms-flex-pack: space-evenly !important;
        justify-content: space-evenly !important;
    }

    .align-items-xxl-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xxl-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xxl-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xxl-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xxl-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xxl-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xxl-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xxl-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xxl-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xxl-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xxl-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    .order-xxl-first {
        -webkit-box-ordinal-group: 0 !important;
        -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }

    .order-xxl-0 {
        -webkit-box-ordinal-group: 1 !important;
        -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
        order: 0 !important;
    }

    .order-xxl-1 {
        -webkit-box-ordinal-group: 2 !important;
        -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }

    .order-xxl-2 {
        -webkit-box-ordinal-group: 3 !important;
        -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
        order: 2 !important;
    }

    .order-xxl-3 {
        -webkit-box-ordinal-group: 4 !important;
        -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
        order: 3 !important;
    }

    .order-xxl-4 {
        -webkit-box-ordinal-group: 5 !important;
        -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
        order: 4 !important;
    }

    .order-xxl-5 {
        -webkit-box-ordinal-group: 6 !important;
        -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
        order: 5 !important;
    }

    .order-xxl-last {
        -webkit-box-ordinal-group: 7 !important;
        -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
        order: 6 !important;
    }

    .m-xxl-0 {
        margin: 0 !important;
    }

    .m-xxl-1 {
        margin: 1px !important;
    }

    .m-xxl-2 {
        margin: 2px !important;
    }

    .m-xxl-3 {
        margin: 3px !important;
    }

    .m-xxl-4 {
        margin: 4px !important;
    }

    .m-xxl-5 {
        margin: 5px !important;
    }

    .m-xxl-6 {
        margin: 6px !important;
    }

    .m-xxl-7 {
        margin: 7px !important;
    }

    .m-xxl-8 {
        margin: 8px !important;
    }

    .m-xxl-9 {
        margin: 9px !important;
    }

    .m-xxl-10 {
        margin: 10px !important;
    }

    .m-xxl-11 {
        margin: 11px !important;
    }

    .m-xxl-12 {
        margin: 12px !important;
    }

    .m-xxl-13 {
        margin: 13px !important;
    }

    .m-xxl-15 {
        margin: 15px !important;
    }

    .m-xxl-17 {
        margin: 17px !important;
    }

    .m-xxl-18 {
        margin: 18px !important;
    }

    .m-xxl-20 {
        margin: 20px !important;
    }

    .m-xxl-25 {
        margin: 25px !important;
    }

    .m-xxl-30 {
        margin: 30px !important;
    }

    .m-xxl-35 {
        margin: 35px !important;
    }

    .m-xxl-40 {
        margin: 40px !important;
    }

    .m-xxl-45 {
        margin: 45px !important;
    }

    .m-xxl-50 {
        margin: 50px !important;
    }

    .m-xxl-55 {
        margin: 55px !important;
    }

    .m-xxl-60 {
        margin: 60px !important;
    }

    .m-xxl-65 {
        margin: 65px !important;
    }

    .m-xxl-70 {
        margin: 70px !important;
    }

    .m-xxl-75 {
        margin: 75px !important;
    }

    .m-xxl-80 {
        margin: 80px !important;
    }

    .m-xxl-90 {
        margin: 90px !important;
    }

    .m-xxl-95 {
        margin: 95px !important;
    }

    .m-xxl-100 {
        margin: 100px !important;
    }

    .m-xxl-110 {
        margin: 110px !important;
    }

    .m-xxl-115 {
        margin: 115px !important;
    }

    .m-xxl-120 {
        margin: 120px !important;
    }

    .m-xxl-130 {
        margin: 130px !important;
    }

    .m-xxl-150 {
        margin: 150px !important;
    }

    .m-xxl-160 {
        margin: 160px !important;
    }

    .m-xxl-180 {
        margin: 180px !important;
    }

    .m-xxl-190 {
        margin: 190px !important;
    }

    .m-xxl-200 {
        margin: 200px !important;
    }

    .m-xxl-210 {
        margin: 210px !important;
    }

    .m-xxl-235 {
        margin: 235px !important;
    }

    .m-xxl-240 {
        margin: 240px !important;
    }

    .m-xxl-270 {
        margin: 270px !important;
    }

    .m-xxl-290 {
        margin: 290px !important;
    }

    .m-xxl-300 {
        margin: 300px !important;
    }

    .m-xxl-auto {
        margin: auto !important;
    }

    .mx-xxl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-xxl-1 {
        margin-left: 1px !important;
        margin-right: 1px !important;
    }

    .mx-xxl-2 {
        margin-left: 2px !important;
        margin-right: 2px !important;
    }

    .mx-xxl-3 {
        margin-left: 3px !important;
        margin-right: 3px !important;
    }

    .mx-xxl-4 {
        margin-left: 4px !important;
        margin-right: 4px !important;
    }

    .mx-xxl-5 {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }

    .mx-xxl-6 {
        margin-left: 6px !important;
        margin-right: 6px !important;
    }

    .mx-xxl-7 {
        margin-left: 7px !important;
        margin-right: 7px !important;
    }

    .mx-xxl-8 {
        margin-left: 8px !important;
        margin-right: 8px !important;
    }

    .mx-xxl-9 {
        margin-left: 9px !important;
        margin-right: 9px !important;
    }

    .mx-xxl-10 {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }

    .mx-xxl-11 {
        margin-left: 11px !important;
        margin-right: 11px !important;
    }

    .mx-xxl-12 {
        margin-left: 12px !important;
        margin-right: 12px !important;
    }

    .mx-xxl-13 {
        margin-left: 13px !important;
        margin-right: 13px !important;
    }

    .mx-xxl-15 {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }

    .mx-xxl-17 {
        margin-left: 17px !important;
        margin-right: 17px !important;
    }

    .mx-xxl-18 {
        margin-left: 18px !important;
        margin-right: 18px !important;
    }

    .mx-xxl-20 {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .mx-xxl-25 {
        margin-left: 25px !important;
        margin-right: 25px !important;
    }

    .mx-xxl-30 {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .mx-xxl-35 {
        margin-left: 35px !important;
        margin-right: 35px !important;
    }

    .mx-xxl-40 {
        margin-left: 40px !important;
        margin-right: 40px !important;
    }

    .mx-xxl-45 {
        margin-left: 45px !important;
        margin-right: 45px !important;
    }

    .mx-xxl-50 {
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .mx-xxl-55 {
        margin-left: 55px !important;
        margin-right: 55px !important;
    }

    .mx-xxl-60 {
        margin-left: 60px !important;
        margin-right: 60px !important;
    }

    .mx-xxl-65 {
        margin-left: 65px !important;
        margin-right: 65px !important;
    }

    .mx-xxl-70 {
        margin-left: 70px !important;
        margin-right: 70px !important;
    }

    .mx-xxl-75 {
        margin-left: 75px !important;
        margin-right: 75px !important;
    }

    .mx-xxl-80 {
        margin-left: 80px !important;
        margin-right: 80px !important;
    }

    .mx-xxl-90 {
        margin-left: 90px !important;
        margin-right: 90px !important;
    }

    .mx-xxl-95 {
        margin-left: 95px !important;
        margin-right: 95px !important;
    }

    .mx-xxl-100 {
        margin-left: 100px !important;
        margin-right: 100px !important;
    }

    .mx-xxl-110 {
        margin-left: 110px !important;
        margin-right: 110px !important;
    }

    .mx-xxl-115 {
        margin-left: 115px !important;
        margin-right: 115px !important;
    }

    .mx-xxl-120 {
        margin-left: 120px !important;
        margin-right: 120px !important;
    }

    .mx-xxl-130 {
        margin-left: 130px !important;
        margin-right: 130px !important;
    }

    .mx-xxl-150 {
        margin-left: 150px !important;
        margin-right: 150px !important;
    }

    .mx-xxl-160 {
        margin-left: 160px !important;
        margin-right: 160px !important;
    }

    .mx-xxl-180 {
        margin-left: 180px !important;
        margin-right: 180px !important;
    }

    .mx-xxl-190 {
        margin-left: 190px !important;
        margin-right: 190px !important;
    }

    .mx-xxl-200 {
        margin-left: 200px !important;
        margin-right: 200px !important;
    }

    .mx-xxl-210 {
        margin-left: 210px !important;
        margin-right: 210px !important;
    }

    .mx-xxl-235 {
        margin-left: 235px !important;
        margin-right: 235px !important;
    }

    .mx-xxl-240 {
        margin-left: 240px !important;
        margin-right: 240px !important;
    }

    .mx-xxl-270 {
        margin-left: 270px !important;
        margin-right: 270px !important;
    }

    .mx-xxl-290 {
        margin-left: 290px !important;
        margin-right: 290px !important;
    }

    .mx-xxl-300 {
        margin-left: 300px !important;
        margin-right: 300px !important;
    }

    .mx-xxl-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-xxl-0 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .my-xxl-1 {
        margin-top: 1px !important;
        margin-bottom: 1px !important;
    }

    .my-xxl-2 {
        margin-top: 2px !important;
        margin-bottom: 2px !important;
    }

    .my-xxl-3 {
        margin-top: 3px !important;
        margin-bottom: 3px !important;
    }

    .my-xxl-4 {
        margin-top: 4px !important;
        margin-bottom: 4px !important;
    }

    .my-xxl-5 {
        margin-top: 5px !important;
        margin-bottom: 5px !important;
    }

    .my-xxl-6 {
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .my-xxl-7 {
        margin-top: 7px !important;
        margin-bottom: 7px !important;
    }

    .my-xxl-8 {
        margin-top: 8px !important;
        margin-bottom: 8px !important;
    }

    .my-xxl-9 {
        margin-top: 9px !important;
        margin-bottom: 9px !important;
    }

    .my-xxl-10 {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .my-xxl-11 {
        margin-top: 11px !important;
        margin-bottom: 11px !important;
    }

    .my-xxl-12 {
        margin-top: 12px !important;
        margin-bottom: 12px !important;
    }

    .my-xxl-13 {
        margin-top: 13px !important;
        margin-bottom: 13px !important;
    }

    .my-xxl-15 {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }

    .my-xxl-17 {
        margin-top: 17px !important;
        margin-bottom: 17px !important;
    }

    .my-xxl-18 {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
    }

    .my-xxl-20 {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .my-xxl-25 {
        margin-top: 25px !important;
        margin-bottom: 25px !important;
    }

    .my-xxl-30 {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .my-xxl-35 {
        margin-top: 35px !important;
        margin-bottom: 35px !important;
    }

    .my-xxl-40 {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .my-xxl-45 {
        margin-top: 45px !important;
        margin-bottom: 45px !important;
    }

    .my-xxl-50 {
        margin-top: 50px !important;
        margin-bottom: 50px !important;
    }

    .my-xxl-55 {
        margin-top: 55px !important;
        margin-bottom: 55px !important;
    }

    .my-xxl-60 {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .my-xxl-65 {
        margin-top: 65px !important;
        margin-bottom: 65px !important;
    }

    .my-xxl-70 {
        margin-top: 70px !important;
        margin-bottom: 70px !important;
    }

    .my-xxl-75 {
        margin-top: 75px !important;
        margin-bottom: 75px !important;
    }

    .my-xxl-80 {
        margin-top: 80px !important;
        margin-bottom: 80px !important;
    }

    .my-xxl-90 {
        margin-top: 90px !important;
        margin-bottom: 90px !important;
    }

    .my-xxl-95 {
        margin-top: 95px !important;
        margin-bottom: 95px !important;
    }

    .my-xxl-100 {
        margin-top: 100px !important;
        margin-bottom: 100px !important;
    }

    .my-xxl-110 {
        margin-top: 110px !important;
        margin-bottom: 110px !important;
    }

    .my-xxl-115 {
        margin-top: 115px !important;
        margin-bottom: 115px !important;
    }

    .my-xxl-120 {
        margin-top: 120px !important;
        margin-bottom: 120px !important;
    }

    .my-xxl-130 {
        margin-top: 130px !important;
        margin-bottom: 130px !important;
    }

    .my-xxl-150 {
        margin-top: 150px !important;
        margin-bottom: 150px !important;
    }

    .my-xxl-160 {
        margin-top: 160px !important;
        margin-bottom: 160px !important;
    }

    .my-xxl-180 {
        margin-top: 180px !important;
        margin-bottom: 180px !important;
    }

    .my-xxl-190 {
        margin-top: 190px !important;
        margin-bottom: 190px !important;
    }

    .my-xxl-200 {
        margin-top: 200px !important;
        margin-bottom: 200px !important;
    }

    .my-xxl-210 {
        margin-top: 210px !important;
        margin-bottom: 210px !important;
    }

    .my-xxl-235 {
        margin-top: 235px !important;
        margin-bottom: 235px !important;
    }

    .my-xxl-240 {
        margin-top: 240px !important;
        margin-bottom: 240px !important;
    }

    .my-xxl-270 {
        margin-top: 270px !important;
        margin-bottom: 270px !important;
    }

    .my-xxl-290 {
        margin-top: 290px !important;
        margin-bottom: 290px !important;
    }

    .my-xxl-300 {
        margin-top: 300px !important;
        margin-bottom: 300px !important;
    }

    .my-xxl-auto {
        margin-top: auto !important;
        margin-bottom: auto !important;
    }

    .mt-xxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxl-1 {
        margin-top: 1px !important;
    }

    .mt-xxl-2 {
        margin-top: 2px !important;
    }

    .mt-xxl-3 {
        margin-top: 3px !important;
    }

    .mt-xxl-4 {
        margin-top: 4px !important;
    }

    .mt-xxl-5 {
        margin-top: 5px !important;
    }

    .mt-xxl-6 {
        margin-top: 6px !important;
    }

    .mt-xxl-7 {
        margin-top: 7px !important;
    }

    .mt-xxl-8 {
        margin-top: 8px !important;
    }

    .mt-xxl-9 {
        margin-top: 9px !important;
    }

    .mt-xxl-10 {
        margin-top: 10px !important;
    }

    .mt-xxl-11 {
        margin-top: 11px !important;
    }

    .mt-xxl-12 {
        margin-top: 12px !important;
    }

    .mt-xxl-13 {
        margin-top: 13px !important;
    }

    .mt-xxl-15 {
        margin-top: 15px !important;
    }

    .mt-xxl-17 {
        margin-top: 17px !important;
    }

    .mt-xxl-18 {
        margin-top: 18px !important;
    }

    .mt-xxl-20 {
        margin-top: 20px !important;
    }

    .mt-xxl-25 {
        margin-top: 25px !important;
    }

    .mt-xxl-30 {
        margin-top: 30px !important;
    }

    .mt-xxl-35 {
        margin-top: 35px !important;
    }

    .mt-xxl-40 {
        margin-top: 40px !important;
    }

    .mt-xxl-45 {
        margin-top: 45px !important;
    }

    .mt-xxl-50 {
        margin-top: 50px !important;
    }

    .mt-xxl-55 {
        margin-top: 55px !important;
    }

    .mt-xxl-60 {
        margin-top: 60px !important;
    }

    .mt-xxl-65 {
        margin-top: 65px !important;
    }

    .mt-xxl-70 {
        margin-top: 70px !important;
    }

    .mt-xxl-75 {
        margin-top: 75px !important;
    }

    .mt-xxl-80 {
        margin-top: 80px !important;
    }

    .mt-xxl-90 {
        margin-top: 90px !important;
    }

    .mt-xxl-95 {
        margin-top: 95px !important;
    }

    .mt-xxl-100 {
        margin-top: 100px !important;
    }

    .mt-xxl-110 {
        margin-top: 110px !important;
    }

    .mt-xxl-115 {
        margin-top: 115px !important;
    }

    .mt-xxl-120 {
        margin-top: 120px !important;
    }

    .mt-xxl-130 {
        margin-top: 130px !important;
    }

    .mt-xxl-150 {
        margin-top: 150px !important;
    }

    .mt-xxl-160 {
        margin-top: 160px !important;
    }

    .mt-xxl-180 {
        margin-top: 180px !important;
    }

    .mt-xxl-190 {
        margin-top: 190px !important;
    }

    .mt-xxl-200 {
        margin-top: 200px !important;
    }

    .mt-xxl-210 {
        margin-top: 210px !important;
    }

    .mt-xxl-235 {
        margin-top: 235px !important;
    }

    .mt-xxl-240 {
        margin-top: 240px !important;
    }

    .mt-xxl-270 {
        margin-top: 270px !important;
    }

    .mt-xxl-290 {
        margin-top: 290px !important;
    }

    .mt-xxl-300 {
        margin-top: 300px !important;
    }

    .mt-xxl-auto {
        margin-top: auto !important;
    }

    .me-xxl-0 {
        margin-left: 0 !important;
    }

    .me-xxl-1 {
        margin-left: 1px !important;
    }

    .me-xxl-2 {
        margin-left: 2px !important;
    }

    .me-xxl-3 {
        margin-left: 3px !important;
    }

    .me-xxl-4 {
        margin-left: 4px !important;
    }

    .me-xxl-5 {
        margin-left: 5px !important;
    }

    .me-xxl-6 {
        margin-left: 6px !important;
    }

    .me-xxl-7 {
        margin-left: 7px !important;
    }

    .me-xxl-8 {
        margin-left: 8px !important;
    }

    .me-xxl-9 {
        margin-left: 9px !important;
    }

    .me-xxl-10 {
        margin-left: 10px !important;
    }

    .me-xxl-11 {
        margin-left: 11px !important;
    }

    .me-xxl-12 {
        margin-left: 12px !important;
    }

    .me-xxl-13 {
        margin-left: 13px !important;
    }

    .me-xxl-15 {
        margin-left: 15px !important;
    }

    .me-xxl-17 {
        margin-left: 17px !important;
    }

    .me-xxl-18 {
        margin-left: 18px !important;
    }

    .me-xxl-20 {
        margin-left: 20px !important;
    }

    .me-xxl-25 {
        margin-left: 25px !important;
    }

    .me-xxl-30 {
        margin-left: 30px !important;
    }

    .me-xxl-35 {
        margin-left: 35px !important;
    }

    .me-xxl-40 {
        margin-left: 40px !important;
    }

    .me-xxl-45 {
        margin-left: 45px !important;
    }

    .me-xxl-50 {
        margin-left: 50px !important;
    }

    .me-xxl-55 {
        margin-left: 55px !important;
    }

    .me-xxl-60 {
        margin-left: 60px !important;
    }

    .me-xxl-65 {
        margin-left: 65px !important;
    }

    .me-xxl-70 {
        margin-left: 70px !important;
    }

    .me-xxl-75 {
        margin-left: 75px !important;
    }

    .me-xxl-80 {
        margin-left: 80px !important;
    }

    .me-xxl-90 {
        margin-left: 90px !important;
    }

    .me-xxl-95 {
        margin-left: 95px !important;
    }

    .me-xxl-100 {
        margin-left: 100px !important;
    }

    .me-xxl-110 {
        margin-left: 110px !important;
    }

    .me-xxl-115 {
        margin-left: 115px !important;
    }

    .me-xxl-120 {
        margin-left: 120px !important;
    }

    .me-xxl-130 {
        margin-left: 130px !important;
    }

    .me-xxl-150 {
        margin-left: 150px !important;
    }

    .me-xxl-160 {
        margin-left: 160px !important;
    }

    .me-xxl-180 {
        margin-left: 180px !important;
    }

    .me-xxl-190 {
        margin-left: 190px !important;
    }

    .me-xxl-200 {
        margin-left: 200px !important;
    }

    .me-xxl-210 {
        margin-left: 210px !important;
    }

    .me-xxl-235 {
        margin-left: 235px !important;
    }

    .me-xxl-240 {
        margin-left: 240px !important;
    }

    .me-xxl-270 {
        margin-left: 270px !important;
    }

    .me-xxl-290 {
        margin-left: 290px !important;
    }

    .me-xxl-300 {
        margin-left: 300px !important;
    }

    .me-xxl-auto {
        margin-left: auto !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxl-1 {
        margin-bottom: 1px !important;
    }

    .mb-xxl-2 {
        margin-bottom: 2px !important;
    }

    .mb-xxl-3 {
        margin-bottom: 3px !important;
    }

    .mb-xxl-4 {
        margin-bottom: 4px !important;
    }

    .mb-xxl-5 {
        margin-bottom: 5px !important;
    }

    .mb-xxl-6 {
        margin-bottom: 6px !important;
    }

    .mb-xxl-7 {
        margin-bottom: 7px !important;
    }

    .mb-xxl-8 {
        margin-bottom: 8px !important;
    }

    .mb-xxl-9 {
        margin-bottom: 9px !important;
    }

    .mb-xxl-10 {
        margin-bottom: 10px !important;
    }

    .mb-xxl-11 {
        margin-bottom: 11px !important;
    }

    .mb-xxl-12 {
        margin-bottom: 12px !important;
    }

    .mb-xxl-13 {
        margin-bottom: 13px !important;
    }

    .mb-xxl-15 {
        margin-bottom: 15px !important;
    }

    .mb-xxl-17 {
        margin-bottom: 17px !important;
    }

    .mb-xxl-18 {
        margin-bottom: 18px !important;
    }

    .mb-xxl-20 {
        margin-bottom: 20px !important;
    }

    .mb-xxl-25 {
        margin-bottom: 25px !important;
    }

    .mb-xxl-30 {
        margin-bottom: 30px !important;
    }

    .mb-xxl-35 {
        margin-bottom: 35px !important;
    }

    .mb-xxl-40 {
        margin-bottom: 40px !important;
    }

    .mb-xxl-45 {
        margin-bottom: 45px !important;
    }

    .mb-xxl-50 {
        margin-bottom: 50px !important;
    }

    .mb-xxl-55 {
        margin-bottom: 55px !important;
    }

    .mb-xxl-60 {
        margin-bottom: 60px !important;
    }

    .mb-xxl-65 {
        margin-bottom: 65px !important;
    }

    .mb-xxl-70 {
        margin-bottom: 70px !important;
    }

    .mb-xxl-75 {
        margin-bottom: 75px !important;
    }

    .mb-xxl-80 {
        margin-bottom: 80px !important;
    }

    .mb-xxl-90 {
        margin-bottom: 90px !important;
    }

    .mb-xxl-95 {
        margin-bottom: 95px !important;
    }

    .mb-xxl-100 {
        margin-bottom: 100px !important;
    }

    .mb-xxl-110 {
        margin-bottom: 110px !important;
    }

    .mb-xxl-115 {
        margin-bottom: 115px !important;
    }

    .mb-xxl-120 {
        margin-bottom: 120px !important;
    }

    .mb-xxl-130 {
        margin-bottom: 130px !important;
    }

    .mb-xxl-150 {
        margin-bottom: 150px !important;
    }

    .mb-xxl-160 {
        margin-bottom: 160px !important;
    }

    .mb-xxl-180 {
        margin-bottom: 180px !important;
    }

    .mb-xxl-190 {
        margin-bottom: 190px !important;
    }

    .mb-xxl-200 {
        margin-bottom: 200px !important;
    }

    .mb-xxl-210 {
        margin-bottom: 210px !important;
    }

    .mb-xxl-235 {
        margin-bottom: 235px !important;
    }

    .mb-xxl-240 {
        margin-bottom: 240px !important;
    }

    .mb-xxl-270 {
        margin-bottom: 270px !important;
    }

    .mb-xxl-290 {
        margin-bottom: 290px !important;
    }

    .mb-xxl-300 {
        margin-bottom: 300px !important;
    }

    .mb-xxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxl-0 {
        margin-right: 0 !important;
    }

    .ms-xxl-1 {
        margin-right: 1px !important;
    }

    .ms-xxl-2 {
        margin-right: 2px !important;
    }

    .ms-xxl-3 {
        margin-right: 3px !important;
    }

    .ms-xxl-4 {
        margin-right: 4px !important;
    }

    .ms-xxl-5 {
        margin-right: 5px !important;
    }

    .ms-xxl-6 {
        margin-right: 6px !important;
    }

    .ms-xxl-7 {
        margin-right: 7px !important;
    }

    .ms-xxl-8 {
        margin-right: 8px !important;
    }

    .ms-xxl-9 {
        margin-right: 9px !important;
    }

    .ms-xxl-10 {
        margin-right: 10px !important;
    }

    .ms-xxl-11 {
        margin-right: 11px !important;
    }

    .ms-xxl-12 {
        margin-right: 12px !important;
    }

    .ms-xxl-13 {
        margin-right: 13px !important;
    }

    .ms-xxl-15 {
        margin-right: 15px !important;
    }

    .ms-xxl-17 {
        margin-right: 17px !important;
    }

    .ms-xxl-18 {
        margin-right: 18px !important;
    }

    .ms-xxl-20 {
        margin-right: 20px !important;
    }

    .ms-xxl-25 {
        margin-right: 25px !important;
    }

    .ms-xxl-30 {
        margin-right: 30px !important;
    }

    .ms-xxl-35 {
        margin-right: 35px !important;
    }

    .ms-xxl-40 {
        margin-right: 40px !important;
    }

    .ms-xxl-45 {
        margin-right: 45px !important;
    }

    .ms-xxl-50 {
        margin-right: 50px !important;
    }

    .ms-xxl-55 {
        margin-right: 55px !important;
    }

    .ms-xxl-60 {
        margin-right: 60px !important;
    }

    .ms-xxl-65 {
        margin-right: 65px !important;
    }

    .ms-xxl-70 {
        margin-right: 70px !important;
    }

    .ms-xxl-75 {
        margin-right: 75px !important;
    }

    .ms-xxl-80 {
        margin-right: 80px !important;
    }

    .ms-xxl-90 {
        margin-right: 90px !important;
    }

    .ms-xxl-95 {
        margin-right: 95px !important;
    }

    .ms-xxl-100 {
        margin-right: 100px !important;
    }

    .ms-xxl-110 {
        margin-right: 110px !important;
    }

    .ms-xxl-115 {
        margin-right: 115px !important;
    }

    .ms-xxl-120 {
        margin-right: 120px !important;
    }

    .ms-xxl-130 {
        margin-right: 130px !important;
    }

    .ms-xxl-150 {
        margin-right: 150px !important;
    }

    .ms-xxl-160 {
        margin-right: 160px !important;
    }

    .ms-xxl-180 {
        margin-right: 180px !important;
    }

    .ms-xxl-190 {
        margin-right: 190px !important;
    }

    .ms-xxl-200 {
        margin-right: 200px !important;
    }

    .ms-xxl-210 {
        margin-right: 210px !important;
    }

    .ms-xxl-235 {
        margin-right: 235px !important;
    }

    .ms-xxl-240 {
        margin-right: 240px !important;
    }

    .ms-xxl-270 {
        margin-right: 270px !important;
    }

    .ms-xxl-290 {
        margin-right: 290px !important;
    }

    .ms-xxl-300 {
        margin-right: 300px !important;
    }

    .ms-xxl-auto {
        margin-right: auto !important;
    }

    .m-xxl-n1 {
        margin: -1px !important;
    }

    .m-xxl-n2 {
        margin: -2px !important;
    }

    .m-xxl-n3 {
        margin: -3px !important;
    }

    .m-xxl-n4 {
        margin: -4px !important;
    }

    .m-xxl-n5 {
        margin: -5px !important;
    }

    .m-xxl-n6 {
        margin: -6px !important;
    }

    .m-xxl-n7 {
        margin: -7px !important;
    }

    .m-xxl-n8 {
        margin: -8px !important;
    }

    .m-xxl-n9 {
        margin: -9px !important;
    }

    .m-xxl-n10 {
        margin: -10px !important;
    }

    .m-xxl-n11 {
        margin: -11px !important;
    }

    .m-xxl-n12 {
        margin: -12px !important;
    }

    .m-xxl-n13 {
        margin: -13px !important;
    }

    .m-xxl-n15 {
        margin: -15px !important;
    }

    .m-xxl-n17 {
        margin: -17px !important;
    }

    .m-xxl-n18 {
        margin: -18px !important;
    }

    .m-xxl-n20 {
        margin: -20px !important;
    }

    .m-xxl-n25 {
        margin: -25px !important;
    }

    .m-xxl-n30 {
        margin: -30px !important;
    }

    .m-xxl-n35 {
        margin: -35px !important;
    }

    .m-xxl-n40 {
        margin: -40px !important;
    }

    .m-xxl-n45 {
        margin: -45px !important;
    }

    .m-xxl-n50 {
        margin: -50px !important;
    }

    .m-xxl-n55 {
        margin: -55px !important;
    }

    .m-xxl-n60 {
        margin: -60px !important;
    }

    .m-xxl-n65 {
        margin: -65px !important;
    }

    .m-xxl-n70 {
        margin: -70px !important;
    }

    .m-xxl-n75 {
        margin: -75px !important;
    }

    .m-xxl-n80 {
        margin: -80px !important;
    }

    .m-xxl-n90 {
        margin: -90px !important;
    }

    .m-xxl-n95 {
        margin: -95px !important;
    }

    .m-xxl-n100 {
        margin: -100px !important;
    }

    .m-xxl-n110 {
        margin: -110px !important;
    }

    .m-xxl-n115 {
        margin: -115px !important;
    }

    .m-xxl-n120 {
        margin: -120px !important;
    }

    .m-xxl-n130 {
        margin: -130px !important;
    }

    .m-xxl-n150 {
        margin: -150px !important;
    }

    .m-xxl-n160 {
        margin: -160px !important;
    }

    .m-xxl-n180 {
        margin: -180px !important;
    }

    .m-xxl-n190 {
        margin: -190px !important;
    }

    .m-xxl-n200 {
        margin: -200px !important;
    }

    .m-xxl-n210 {
        margin: -210px !important;
    }

    .m-xxl-n235 {
        margin: -235px !important;
    }

    .m-xxl-n240 {
        margin: -240px !important;
    }

    .m-xxl-n270 {
        margin: -270px !important;
    }

    .m-xxl-n290 {
        margin: -290px !important;
    }

    .m-xxl-n300 {
        margin: -300px !important;
    }

    .mx-xxl-n1 {
        margin-left: -1px !important;
        margin-right: -1px !important;
    }

    .mx-xxl-n2 {
        margin-left: -2px !important;
        margin-right: -2px !important;
    }

    .mx-xxl-n3 {
        margin-left: -3px !important;
        margin-right: -3px !important;
    }

    .mx-xxl-n4 {
        margin-left: -4px !important;
        margin-right: -4px !important;
    }

    .mx-xxl-n5 {
        margin-left: -5px !important;
        margin-right: -5px !important;
    }

    .mx-xxl-n6 {
        margin-left: -6px !important;
        margin-right: -6px !important;
    }

    .mx-xxl-n7 {
        margin-left: -7px !important;
        margin-right: -7px !important;
    }

    .mx-xxl-n8 {
        margin-left: -8px !important;
        margin-right: -8px !important;
    }

    .mx-xxl-n9 {
        margin-left: -9px !important;
        margin-right: -9px !important;
    }

    .mx-xxl-n10 {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .mx-xxl-n11 {
        margin-left: -11px !important;
        margin-right: -11px !important;
    }

    .mx-xxl-n12 {
        margin-left: -12px !important;
        margin-right: -12px !important;
    }

    .mx-xxl-n13 {
        margin-left: -13px !important;
        margin-right: -13px !important;
    }

    .mx-xxl-n15 {
        margin-left: -15px !important;
        margin-right: -15px !important;
    }

    .mx-xxl-n17 {
        margin-left: -17px !important;
        margin-right: -17px !important;
    }

    .mx-xxl-n18 {
        margin-left: -18px !important;
        margin-right: -18px !important;
    }

    .mx-xxl-n20 {
        margin-left: -20px !important;
        margin-right: -20px !important;
    }

    .mx-xxl-n25 {
        margin-left: -25px !important;
        margin-right: -25px !important;
    }

    .mx-xxl-n30 {
        margin-left: -30px !important;
        margin-right: -30px !important;
    }

    .mx-xxl-n35 {
        margin-left: -35px !important;
        margin-right: -35px !important;
    }

    .mx-xxl-n40 {
        margin-left: -40px !important;
        margin-right: -40px !important;
    }

    .mx-xxl-n45 {
        margin-left: -45px !important;
        margin-right: -45px !important;
    }

    .mx-xxl-n50 {
        margin-left: -50px !important;
        margin-right: -50px !important;
    }

    .mx-xxl-n55 {
        margin-left: -55px !important;
        margin-right: -55px !important;
    }

    .mx-xxl-n60 {
        margin-left: -60px !important;
        margin-right: -60px !important;
    }

    .mx-xxl-n65 {
        margin-left: -65px !important;
        margin-right: -65px !important;
    }

    .mx-xxl-n70 {
        margin-left: -70px !important;
        margin-right: -70px !important;
    }

    .mx-xxl-n75 {
        margin-left: -75px !important;
        margin-right: -75px !important;
    }

    .mx-xxl-n80 {
        margin-left: -80px !important;
        margin-right: -80px !important;
    }

    .mx-xxl-n90 {
        margin-left: -90px !important;
        margin-right: -90px !important;
    }

    .mx-xxl-n95 {
        margin-left: -95px !important;
        margin-right: -95px !important;
    }

    .mx-xxl-n100 {
        margin-left: -100px !important;
        margin-right: -100px !important;
    }

    .mx-xxl-n110 {
        margin-left: -110px !important;
        margin-right: -110px !important;
    }

    .mx-xxl-n115 {
        margin-left: -115px !important;
        margin-right: -115px !important;
    }

    .mx-xxl-n120 {
        margin-left: -120px !important;
        margin-right: -120px !important;
    }

    .mx-xxl-n130 {
        margin-left: -130px !important;
        margin-right: -130px !important;
    }

    .mx-xxl-n150 {
        margin-left: -150px !important;
        margin-right: -150px !important;
    }

    .mx-xxl-n160 {
        margin-left: -160px !important;
        margin-right: -160px !important;
    }

    .mx-xxl-n180 {
        margin-left: -180px !important;
        margin-right: -180px !important;
    }

    .mx-xxl-n190 {
        margin-left: -190px !important;
        margin-right: -190px !important;
    }

    .mx-xxl-n200 {
        margin-left: -200px !important;
        margin-right: -200px !important;
    }

    .mx-xxl-n210 {
        margin-left: -210px !important;
        margin-right: -210px !important;
    }

    .mx-xxl-n235 {
        margin-left: -235px !important;
        margin-right: -235px !important;
    }

    .mx-xxl-n240 {
        margin-left: -240px !important;
        margin-right: -240px !important;
    }

    .mx-xxl-n270 {
        margin-left: -270px !important;
        margin-right: -270px !important;
    }

    .mx-xxl-n290 {
        margin-left: -290px !important;
        margin-right: -290px !important;
    }

    .mx-xxl-n300 {
        margin-left: -300px !important;
        margin-right: -300px !important;
    }

    .my-xxl-n1 {
        margin-top: -1px !important;
        margin-bottom: -1px !important;
    }

    .my-xxl-n2 {
        margin-top: -2px !important;
        margin-bottom: -2px !important;
    }

    .my-xxl-n3 {
        margin-top: -3px !important;
        margin-bottom: -3px !important;
    }

    .my-xxl-n4 {
        margin-top: -4px !important;
        margin-bottom: -4px !important;
    }

    .my-xxl-n5 {
        margin-top: -5px !important;
        margin-bottom: -5px !important;
    }

    .my-xxl-n6 {
        margin-top: -6px !important;
        margin-bottom: -6px !important;
    }

    .my-xxl-n7 {
        margin-top: -7px !important;
        margin-bottom: -7px !important;
    }

    .my-xxl-n8 {
        margin-top: -8px !important;
        margin-bottom: -8px !important;
    }

    .my-xxl-n9 {
        margin-top: -9px !important;
        margin-bottom: -9px !important;
    }

    .my-xxl-n10 {
        margin-top: -10px !important;
        margin-bottom: -10px !important;
    }

    .my-xxl-n11 {
        margin-top: -11px !important;
        margin-bottom: -11px !important;
    }

    .my-xxl-n12 {
        margin-top: -12px !important;
        margin-bottom: -12px !important;
    }

    .my-xxl-n13 {
        margin-top: -13px !important;
        margin-bottom: -13px !important;
    }

    .my-xxl-n15 {
        margin-top: -15px !important;
        margin-bottom: -15px !important;
    }

    .my-xxl-n17 {
        margin-top: -17px !important;
        margin-bottom: -17px !important;
    }

    .my-xxl-n18 {
        margin-top: -18px !important;
        margin-bottom: -18px !important;
    }

    .my-xxl-n20 {
        margin-top: -20px !important;
        margin-bottom: -20px !important;
    }

    .my-xxl-n25 {
        margin-top: -25px !important;
        margin-bottom: -25px !important;
    }

    .my-xxl-n30 {
        margin-top: -30px !important;
        margin-bottom: -30px !important;
    }

    .my-xxl-n35 {
        margin-top: -35px !important;
        margin-bottom: -35px !important;
    }

    .my-xxl-n40 {
        margin-top: -40px !important;
        margin-bottom: -40px !important;
    }

    .my-xxl-n45 {
        margin-top: -45px !important;
        margin-bottom: -45px !important;
    }

    .my-xxl-n50 {
        margin-top: -50px !important;
        margin-bottom: -50px !important;
    }

    .my-xxl-n55 {
        margin-top: -55px !important;
        margin-bottom: -55px !important;
    }

    .my-xxl-n60 {
        margin-top: -60px !important;
        margin-bottom: -60px !important;
    }

    .my-xxl-n65 {
        margin-top: -65px !important;
        margin-bottom: -65px !important;
    }

    .my-xxl-n70 {
        margin-top: -70px !important;
        margin-bottom: -70px !important;
    }

    .my-xxl-n75 {
        margin-top: -75px !important;
        margin-bottom: -75px !important;
    }

    .my-xxl-n80 {
        margin-top: -80px !important;
        margin-bottom: -80px !important;
    }

    .my-xxl-n90 {
        margin-top: -90px !important;
        margin-bottom: -90px !important;
    }

    .my-xxl-n95 {
        margin-top: -95px !important;
        margin-bottom: -95px !important;
    }

    .my-xxl-n100 {
        margin-top: -100px !important;
        margin-bottom: -100px !important;
    }

    .my-xxl-n110 {
        margin-top: -110px !important;
        margin-bottom: -110px !important;
    }

    .my-xxl-n115 {
        margin-top: -115px !important;
        margin-bottom: -115px !important;
    }

    .my-xxl-n120 {
        margin-top: -120px !important;
        margin-bottom: -120px !important;
    }

    .my-xxl-n130 {
        margin-top: -130px !important;
        margin-bottom: -130px !important;
    }

    .my-xxl-n150 {
        margin-top: -150px !important;
        margin-bottom: -150px !important;
    }

    .my-xxl-n160 {
        margin-top: -160px !important;
        margin-bottom: -160px !important;
    }

    .my-xxl-n180 {
        margin-top: -180px !important;
        margin-bottom: -180px !important;
    }

    .my-xxl-n190 {
        margin-top: -190px !important;
        margin-bottom: -190px !important;
    }

    .my-xxl-n200 {
        margin-top: -200px !important;
        margin-bottom: -200px !important;
    }

    .my-xxl-n210 {
        margin-top: -210px !important;
        margin-bottom: -210px !important;
    }

    .my-xxl-n235 {
        margin-top: -235px !important;
        margin-bottom: -235px !important;
    }

    .my-xxl-n240 {
        margin-top: -240px !important;
        margin-bottom: -240px !important;
    }

    .my-xxl-n270 {
        margin-top: -270px !important;
        margin-bottom: -270px !important;
    }

    .my-xxl-n290 {
        margin-top: -290px !important;
        margin-bottom: -290px !important;
    }

    .my-xxl-n300 {
        margin-top: -300px !important;
        margin-bottom: -300px !important;
    }

    .mt-xxl-n1 {
        margin-top: -1px !important;
    }

    .mt-xxl-n2 {
        margin-top: -2px !important;
    }

    .mt-xxl-n3 {
        margin-top: -3px !important;
    }

    .mt-xxl-n4 {
        margin-top: -4px !important;
    }

    .mt-xxl-n5 {
        margin-top: -5px !important;
    }

    .mt-xxl-n6 {
        margin-top: -6px !important;
    }

    .mt-xxl-n7 {
        margin-top: -7px !important;
    }

    .mt-xxl-n8 {
        margin-top: -8px !important;
    }

    .mt-xxl-n9 {
        margin-top: -9px !important;
    }

    .mt-xxl-n10 {
        margin-top: -10px !important;
    }

    .mt-xxl-n11 {
        margin-top: -11px !important;
    }

    .mt-xxl-n12 {
        margin-top: -12px !important;
    }

    .mt-xxl-n13 {
        margin-top: -13px !important;
    }

    .mt-xxl-n15 {
        margin-top: -15px !important;
    }

    .mt-xxl-n17 {
        margin-top: -17px !important;
    }

    .mt-xxl-n18 {
        margin-top: -18px !important;
    }

    .mt-xxl-n20 {
        margin-top: -20px !important;
    }

    .mt-xxl-n25 {
        margin-top: -25px !important;
    }

    .mt-xxl-n30 {
        margin-top: -30px !important;
    }

    .mt-xxl-n35 {
        margin-top: -35px !important;
    }

    .mt-xxl-n40 {
        margin-top: -40px !important;
    }

    .mt-xxl-n45 {
        margin-top: -45px !important;
    }

    .mt-xxl-n50 {
        margin-top: -50px !important;
    }

    .mt-xxl-n55 {
        margin-top: -55px !important;
    }

    .mt-xxl-n60 {
        margin-top: -60px !important;
    }

    .mt-xxl-n65 {
        margin-top: -65px !important;
    }

    .mt-xxl-n70 {
        margin-top: -70px !important;
    }

    .mt-xxl-n75 {
        margin-top: -75px !important;
    }

    .mt-xxl-n80 {
        margin-top: -80px !important;
    }

    .mt-xxl-n90 {
        margin-top: -90px !important;
    }

    .mt-xxl-n95 {
        margin-top: -95px !important;
    }

    .mt-xxl-n100 {
        margin-top: -100px !important;
    }

    .mt-xxl-n110 {
        margin-top: -110px !important;
    }

    .mt-xxl-n115 {
        margin-top: -115px !important;
    }

    .mt-xxl-n120 {
        margin-top: -120px !important;
    }

    .mt-xxl-n130 {
        margin-top: -130px !important;
    }

    .mt-xxl-n150 {
        margin-top: -150px !important;
    }

    .mt-xxl-n160 {
        margin-top: -160px !important;
    }

    .mt-xxl-n180 {
        margin-top: -180px !important;
    }

    .mt-xxl-n190 {
        margin-top: -190px !important;
    }

    .mt-xxl-n200 {
        margin-top: -200px !important;
    }

    .mt-xxl-n210 {
        margin-top: -210px !important;
    }

    .mt-xxl-n235 {
        margin-top: -235px !important;
    }

    .mt-xxl-n240 {
        margin-top: -240px !important;
    }

    .mt-xxl-n270 {
        margin-top: -270px !important;
    }

    .mt-xxl-n290 {
        margin-top: -290px !important;
    }

    .mt-xxl-n300 {
        margin-top: -300px !important;
    }

    .me-xxl-n1 {
        margin-left: -1px !important;
    }

    .me-xxl-n2 {
        margin-left: -2px !important;
    }

    .me-xxl-n3 {
        margin-left: -3px !important;
    }

    .me-xxl-n4 {
        margin-left: -4px !important;
    }

    .me-xxl-n5 {
        margin-left: -5px !important;
    }

    .me-xxl-n6 {
        margin-left: -6px !important;
    }

    .me-xxl-n7 {
        margin-left: -7px !important;
    }

    .me-xxl-n8 {
        margin-left: -8px !important;
    }

    .me-xxl-n9 {
        margin-left: -9px !important;
    }

    .me-xxl-n10 {
        margin-left: -10px !important;
    }

    .me-xxl-n11 {
        margin-left: -11px !important;
    }

    .me-xxl-n12 {
        margin-left: -12px !important;
    }

    .me-xxl-n13 {
        margin-left: -13px !important;
    }

    .me-xxl-n15 {
        margin-left: -15px !important;
    }

    .me-xxl-n17 {
        margin-left: -17px !important;
    }

    .me-xxl-n18 {
        margin-left: -18px !important;
    }

    .me-xxl-n20 {
        margin-left: -20px !important;
    }

    .me-xxl-n25 {
        margin-left: -25px !important;
    }

    .me-xxl-n30 {
        margin-left: -30px !important;
    }

    .me-xxl-n35 {
        margin-left: -35px !important;
    }

    .me-xxl-n40 {
        margin-left: -40px !important;
    }

    .me-xxl-n45 {
        margin-left: -45px !important;
    }

    .me-xxl-n50 {
        margin-left: -50px !important;
    }

    .me-xxl-n55 {
        margin-left: -55px !important;
    }

    .me-xxl-n60 {
        margin-left: -60px !important;
    }

    .me-xxl-n65 {
        margin-left: -65px !important;
    }

    .me-xxl-n70 {
        margin-left: -70px !important;
    }

    .me-xxl-n75 {
        margin-left: -75px !important;
    }

    .me-xxl-n80 {
        margin-left: -80px !important;
    }

    .me-xxl-n90 {
        margin-left: -90px !important;
    }

    .me-xxl-n95 {
        margin-left: -95px !important;
    }

    .me-xxl-n100 {
        margin-left: -100px !important;
    }

    .me-xxl-n110 {
        margin-left: -110px !important;
    }

    .me-xxl-n115 {
        margin-left: -115px !important;
    }

    .me-xxl-n120 {
        margin-left: -120px !important;
    }

    .me-xxl-n130 {
        margin-left: -130px !important;
    }

    .me-xxl-n150 {
        margin-left: -150px !important;
    }

    .me-xxl-n160 {
        margin-left: -160px !important;
    }

    .me-xxl-n180 {
        margin-left: -180px !important;
    }

    .me-xxl-n190 {
        margin-left: -190px !important;
    }

    .me-xxl-n200 {
        margin-left: -200px !important;
    }

    .me-xxl-n210 {
        margin-left: -210px !important;
    }

    .me-xxl-n235 {
        margin-left: -235px !important;
    }

    .me-xxl-n240 {
        margin-left: -240px !important;
    }

    .me-xxl-n270 {
        margin-left: -270px !important;
    }

    .me-xxl-n290 {
        margin-left: -290px !important;
    }

    .me-xxl-n300 {
        margin-left: -300px !important;
    }

    .mb-xxl-n1 {
        margin-bottom: -1px !important;
    }

    .mb-xxl-n2 {
        margin-bottom: -2px !important;
    }

    .mb-xxl-n3 {
        margin-bottom: -3px !important;
    }

    .mb-xxl-n4 {
        margin-bottom: -4px !important;
    }

    .mb-xxl-n5 {
        margin-bottom: -5px !important;
    }

    .mb-xxl-n6 {
        margin-bottom: -6px !important;
    }

    .mb-xxl-n7 {
        margin-bottom: -7px !important;
    }

    .mb-xxl-n8 {
        margin-bottom: -8px !important;
    }

    .mb-xxl-n9 {
        margin-bottom: -9px !important;
    }

    .mb-xxl-n10 {
        margin-bottom: -10px !important;
    }

    .mb-xxl-n11 {
        margin-bottom: -11px !important;
    }

    .mb-xxl-n12 {
        margin-bottom: -12px !important;
    }

    .mb-xxl-n13 {
        margin-bottom: -13px !important;
    }

    .mb-xxl-n15 {
        margin-bottom: -15px !important;
    }

    .mb-xxl-n17 {
        margin-bottom: -17px !important;
    }

    .mb-xxl-n18 {
        margin-bottom: -18px !important;
    }

    .mb-xxl-n20 {
        margin-bottom: -20px !important;
    }

    .mb-xxl-n25 {
        margin-bottom: -25px !important;
    }

    .mb-xxl-n30 {
        margin-bottom: -30px !important;
    }

    .mb-xxl-n35 {
        margin-bottom: -35px !important;
    }

    .mb-xxl-n40 {
        margin-bottom: -40px !important;
    }

    .mb-xxl-n45 {
        margin-bottom: -45px !important;
    }

    .mb-xxl-n50 {
        margin-bottom: -50px !important;
    }

    .mb-xxl-n55 {
        margin-bottom: -55px !important;
    }

    .mb-xxl-n60 {
        margin-bottom: -60px !important;
    }

    .mb-xxl-n65 {
        margin-bottom: -65px !important;
    }

    .mb-xxl-n70 {
        margin-bottom: -70px !important;
    }

    .mb-xxl-n75 {
        margin-bottom: -75px !important;
    }

    .mb-xxl-n80 {
        margin-bottom: -80px !important;
    }

    .mb-xxl-n90 {
        margin-bottom: -90px !important;
    }

    .mb-xxl-n95 {
        margin-bottom: -95px !important;
    }

    .mb-xxl-n100 {
        margin-bottom: -100px !important;
    }

    .mb-xxl-n110 {
        margin-bottom: -110px !important;
    }

    .mb-xxl-n115 {
        margin-bottom: -115px !important;
    }

    .mb-xxl-n120 {
        margin-bottom: -120px !important;
    }

    .mb-xxl-n130 {
        margin-bottom: -130px !important;
    }

    .mb-xxl-n150 {
        margin-bottom: -150px !important;
    }

    .mb-xxl-n160 {
        margin-bottom: -160px !important;
    }

    .mb-xxl-n180 {
        margin-bottom: -180px !important;
    }

    .mb-xxl-n190 {
        margin-bottom: -190px !important;
    }

    .mb-xxl-n200 {
        margin-bottom: -200px !important;
    }

    .mb-xxl-n210 {
        margin-bottom: -210px !important;
    }

    .mb-xxl-n235 {
        margin-bottom: -235px !important;
    }

    .mb-xxl-n240 {
        margin-bottom: -240px !important;
    }

    .mb-xxl-n270 {
        margin-bottom: -270px !important;
    }

    .mb-xxl-n290 {
        margin-bottom: -290px !important;
    }

    .mb-xxl-n300 {
        margin-bottom: -300px !important;
    }

    .ms-xxl-n1 {
        margin-right: -1px !important;
    }

    .ms-xxl-n2 {
        margin-right: -2px !important;
    }

    .ms-xxl-n3 {
        margin-right: -3px !important;
    }

    .ms-xxl-n4 {
        margin-right: -4px !important;
    }

    .ms-xxl-n5 {
        margin-right: -5px !important;
    }

    .ms-xxl-n6 {
        margin-right: -6px !important;
    }

    .ms-xxl-n7 {
        margin-right: -7px !important;
    }

    .ms-xxl-n8 {
        margin-right: -8px !important;
    }

    .ms-xxl-n9 {
        margin-right: -9px !important;
    }

    .ms-xxl-n10 {
        margin-right: -10px !important;
    }

    .ms-xxl-n11 {
        margin-right: -11px !important;
    }

    .ms-xxl-n12 {
        margin-right: -12px !important;
    }

    .ms-xxl-n13 {
        margin-right: -13px !important;
    }

    .ms-xxl-n15 {
        margin-right: -15px !important;
    }

    .ms-xxl-n17 {
        margin-right: -17px !important;
    }

    .ms-xxl-n18 {
        margin-right: -18px !important;
    }

    .ms-xxl-n20 {
        margin-right: -20px !important;
    }

    .ms-xxl-n25 {
        margin-right: -25px !important;
    }

    .ms-xxl-n30 {
        margin-right: -30px !important;
    }

    .ms-xxl-n35 {
        margin-right: -35px !important;
    }

    .ms-xxl-n40 {
        margin-right: -40px !important;
    }

    .ms-xxl-n45 {
        margin-right: -45px !important;
    }

    .ms-xxl-n50 {
        margin-right: -50px !important;
    }

    .ms-xxl-n55 {
        margin-right: -55px !important;
    }

    .ms-xxl-n60 {
        margin-right: -60px !important;
    }

    .ms-xxl-n65 {
        margin-right: -65px !important;
    }

    .ms-xxl-n70 {
        margin-right: -70px !important;
    }

    .ms-xxl-n75 {
        margin-right: -75px !important;
    }

    .ms-xxl-n80 {
        margin-right: -80px !important;
    }

    .ms-xxl-n90 {
        margin-right: -90px !important;
    }

    .ms-xxl-n95 {
        margin-right: -95px !important;
    }

    .ms-xxl-n100 {
        margin-right: -100px !important;
    }

    .ms-xxl-n110 {
        margin-right: -110px !important;
    }

    .ms-xxl-n115 {
        margin-right: -115px !important;
    }

    .ms-xxl-n120 {
        margin-right: -120px !important;
    }

    .ms-xxl-n130 {
        margin-right: -130px !important;
    }

    .ms-xxl-n150 {
        margin-right: -150px !important;
    }

    .ms-xxl-n160 {
        margin-right: -160px !important;
    }

    .ms-xxl-n180 {
        margin-right: -180px !important;
    }

    .ms-xxl-n190 {
        margin-right: -190px !important;
    }

    .ms-xxl-n200 {
        margin-right: -200px !important;
    }

    .ms-xxl-n210 {
        margin-right: -210px !important;
    }

    .ms-xxl-n235 {
        margin-right: -235px !important;
    }

    .ms-xxl-n240 {
        margin-right: -240px !important;
    }

    .ms-xxl-n270 {
        margin-right: -270px !important;
    }

    .ms-xxl-n290 {
        margin-right: -290px !important;
    }

    .ms-xxl-n300 {
        margin-right: -300px !important;
    }

    .p-xxl-0 {
        padding: 0 !important;
    }

    .p-xxl-1 {
        padding: 1px !important;
    }

    .p-xxl-2 {
        padding: 2px !important;
    }

    .p-xxl-3 {
        padding: 3px !important;
    }

    .p-xxl-4 {
        padding: 4px !important;
    }

    .p-xxl-5 {
        padding: 5px !important;
    }

    .p-xxl-6 {
        padding: 6px !important;
    }

    .p-xxl-7 {
        padding: 7px !important;
    }

    .p-xxl-8 {
        padding: 8px !important;
    }

    .p-xxl-9 {
        padding: 9px !important;
    }

    .p-xxl-10 {
        padding: 10px !important;
    }

    .p-xxl-11 {
        padding: 11px !important;
    }

    .p-xxl-12 {
        padding: 12px !important;
    }

    .p-xxl-13 {
        padding: 13px !important;
    }

    .p-xxl-15 {
        padding: 15px !important;
    }

    .p-xxl-17 {
        padding: 17px !important;
    }

    .p-xxl-18 {
        padding: 18px !important;
    }

    .p-xxl-20 {
        padding: 20px !important;
    }

    .p-xxl-25 {
        padding: 25px !important;
    }

    .p-xxl-30 {
        padding: 30px !important;
    }

    .p-xxl-35 {
        padding: 35px !important;
    }

    .p-xxl-40 {
        padding: 40px !important;
    }

    .p-xxl-45 {
        padding: 45px !important;
    }

    .p-xxl-50 {
        padding: 50px !important;
    }

    .p-xxl-55 {
        padding: 55px !important;
    }

    .p-xxl-60 {
        padding: 60px !important;
    }

    .p-xxl-65 {
        padding: 65px !important;
    }

    .p-xxl-70 {
        padding: 70px !important;
    }

    .p-xxl-75 {
        padding: 75px !important;
    }

    .p-xxl-80 {
        padding: 80px !important;
    }

    .p-xxl-90 {
        padding: 90px !important;
    }

    .p-xxl-95 {
        padding: 95px !important;
    }

    .p-xxl-100 {
        padding: 100px !important;
    }

    .p-xxl-110 {
        padding: 110px !important;
    }

    .p-xxl-115 {
        padding: 115px !important;
    }

    .p-xxl-120 {
        padding: 120px !important;
    }

    .p-xxl-130 {
        padding: 130px !important;
    }

    .p-xxl-150 {
        padding: 150px !important;
    }

    .p-xxl-160 {
        padding: 160px !important;
    }

    .p-xxl-180 {
        padding: 180px !important;
    }

    .p-xxl-190 {
        padding: 190px !important;
    }

    .p-xxl-200 {
        padding: 200px !important;
    }

    .p-xxl-210 {
        padding: 210px !important;
    }

    .p-xxl-235 {
        padding: 235px !important;
    }

    .p-xxl-240 {
        padding: 240px !important;
    }

    .p-xxl-270 {
        padding: 270px !important;
    }

    .p-xxl-290 {
        padding: 290px !important;
    }

    .p-xxl-300 {
        padding: 300px !important;
    }

    .px-xxl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-xxl-1 {
        padding-left: 1px !important;
        padding-right: 1px !important;
    }

    .px-xxl-2 {
        padding-left: 2px !important;
        padding-right: 2px !important;
    }

    .px-xxl-3 {
        padding-left: 3px !important;
        padding-right: 3px !important;
    }

    .px-xxl-4 {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .px-xxl-5 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .px-xxl-6 {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .px-xxl-7 {
        padding-left: 7px !important;
        padding-right: 7px !important;
    }

    .px-xxl-8 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .px-xxl-9 {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }

    .px-xxl-10 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .px-xxl-11 {
        padding-left: 11px !important;
        padding-right: 11px !important;
    }

    .px-xxl-12 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .px-xxl-13 {
        padding-left: 13px !important;
        padding-right: 13px !important;
    }

    .px-xxl-15 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .px-xxl-17 {
        padding-left: 17px !important;
        padding-right: 17px !important;
    }

    .px-xxl-18 {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .px-xxl-20 {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .px-xxl-25 {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }

    .px-xxl-30 {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }

    .px-xxl-35 {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }

    .px-xxl-40 {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }

    .px-xxl-45 {
        padding-left: 45px !important;
        padding-right: 45px !important;
    }

    .px-xxl-50 {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }

    .px-xxl-55 {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }

    .px-xxl-60 {
        padding-left: 60px !important;
        padding-right: 60px !important;
    }

    .px-xxl-65 {
        padding-left: 65px !important;
        padding-right: 65px !important;
    }

    .px-xxl-70 {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }

    .px-xxl-75 {
        padding-left: 75px !important;
        padding-right: 75px !important;
    }

    .px-xxl-80 {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .px-xxl-90 {
        padding-left: 90px !important;
        padding-right: 90px !important;
    }

    .px-xxl-95 {
        padding-left: 95px !important;
        padding-right: 95px !important;
    }

    .px-xxl-100 {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }

    .px-xxl-110 {
        padding-left: 110px !important;
        padding-right: 110px !important;
    }

    .px-xxl-115 {
        padding-left: 115px !important;
        padding-right: 115px !important;
    }

    .px-xxl-120 {
        padding-left: 120px !important;
        padding-right: 120px !important;
    }

    .px-xxl-130 {
        padding-left: 130px !important;
        padding-right: 130px !important;
    }

    .px-xxl-150 {
        padding-left: 150px !important;
        padding-right: 150px !important;
    }

    .px-xxl-160 {
        padding-left: 160px !important;
        padding-right: 160px !important;
    }

    .px-xxl-180 {
        padding-left: 180px !important;
        padding-right: 180px !important;
    }

    .px-xxl-190 {
        padding-left: 190px !important;
        padding-right: 190px !important;
    }

    .px-xxl-200 {
        padding-left: 200px !important;
        padding-right: 200px !important;
    }

    .px-xxl-210 {
        padding-left: 210px !important;
        padding-right: 210px !important;
    }

    .px-xxl-235 {
        padding-left: 235px !important;
        padding-right: 235px !important;
    }

    .px-xxl-240 {
        padding-left: 240px !important;
        padding-right: 240px !important;
    }

    .px-xxl-270 {
        padding-left: 270px !important;
        padding-right: 270px !important;
    }

    .px-xxl-290 {
        padding-left: 290px !important;
        padding-right: 290px !important;
    }

    .px-xxl-300 {
        padding-left: 300px !important;
        padding-right: 300px !important;
    }

    .py-xxl-0 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .py-xxl-1 {
        padding-top: 1px !important;
        padding-bottom: 1px !important;
    }

    .py-xxl-2 {
        padding-top: 2px !important;
        padding-bottom: 2px !important;
    }

    .py-xxl-3 {
        padding-top: 3px !important;
        padding-bottom: 3px !important;
    }

    .py-xxl-4 {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .py-xxl-5 {
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    .py-xxl-6 {
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    .py-xxl-7 {
        padding-top: 7px !important;
        padding-bottom: 7px !important;
    }

    .py-xxl-8 {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .py-xxl-9 {
        padding-top: 9px !important;
        padding-bottom: 9px !important;
    }

    .py-xxl-10 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .py-xxl-11 {
        padding-top: 11px !important;
        padding-bottom: 11px !important;
    }

    .py-xxl-12 {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    .py-xxl-13 {
        padding-top: 13px !important;
        padding-bottom: 13px !important;
    }

    .py-xxl-15 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .py-xxl-17 {
        padding-top: 17px !important;
        padding-bottom: 17px !important;
    }

    .py-xxl-18 {
        padding-top: 18px !important;
        padding-bottom: 18px !important;
    }

    .py-xxl-20 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .py-xxl-25 {
        padding-top: 25px !important;
        padding-bottom: 25px !important;
    }

    .py-xxl-30 {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }

    .py-xxl-35 {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    .py-xxl-40 {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .py-xxl-45 {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .py-xxl-50 {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    .py-xxl-55 {
        padding-top: 55px !important;
        padding-bottom: 55px !important;
    }

    .py-xxl-60 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .py-xxl-65 {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .py-xxl-70 {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .py-xxl-75 {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }

    .py-xxl-80 {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .py-xxl-90 {
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }

    .py-xxl-95 {
        padding-top: 95px !important;
        padding-bottom: 95px !important;
    }

    .py-xxl-100 {
        padding-top: 100px !important;
        padding-bottom: 100px !important;
    }

    .py-xxl-110 {
        padding-top: 110px !important;
        padding-bottom: 110px !important;
    }

    .py-xxl-115 {
        padding-top: 115px !important;
        padding-bottom: 115px !important;
    }

    .py-xxl-120 {
        padding-top: 120px !important;
        padding-bottom: 120px !important;
    }

    .py-xxl-130 {
        padding-top: 130px !important;
        padding-bottom: 130px !important;
    }

    .py-xxl-150 {
        padding-top: 150px !important;
        padding-bottom: 150px !important;
    }

    .py-xxl-160 {
        padding-top: 160px !important;
        padding-bottom: 160px !important;
    }

    .py-xxl-180 {
        padding-top: 180px !important;
        padding-bottom: 180px !important;
    }

    .py-xxl-190 {
        padding-top: 190px !important;
        padding-bottom: 190px !important;
    }

    .py-xxl-200 {
        padding-top: 200px !important;
        padding-bottom: 200px !important;
    }

    .py-xxl-210 {
        padding-top: 210px !important;
        padding-bottom: 210px !important;
    }

    .py-xxl-235 {
        padding-top: 235px !important;
        padding-bottom: 235px !important;
    }

    .py-xxl-240 {
        padding-top: 240px !important;
        padding-bottom: 240px !important;
    }

    .py-xxl-270 {
        padding-top: 270px !important;
        padding-bottom: 270px !important;
    }

    .py-xxl-290 {
        padding-top: 290px !important;
        padding-bottom: 290px !important;
    }

    .py-xxl-300 {
        padding-top: 300px !important;
        padding-bottom: 300px !important;
    }

    .pt-xxl-0 {
        padding-top: 0 !important;
    }

    .pt-xxl-1 {
        padding-top: 1px !important;
    }

    .pt-xxl-2 {
        padding-top: 2px !important;
    }

    .pt-xxl-3 {
        padding-top: 3px !important;
    }

    .pt-xxl-4 {
        padding-top: 4px !important;
    }

    .pt-xxl-5 {
        padding-top: 5px !important;
    }

    .pt-xxl-6 {
        padding-top: 6px !important;
    }

    .pt-xxl-7 {
        padding-top: 7px !important;
    }

    .pt-xxl-8 {
        padding-top: 8px !important;
    }

    .pt-xxl-9 {
        padding-top: 9px !important;
    }

    .pt-xxl-10 {
        padding-top: 10px !important;
    }

    .pt-xxl-11 {
        padding-top: 11px !important;
    }

    .pt-xxl-12 {
        padding-top: 12px !important;
    }

    .pt-xxl-13 {
        padding-top: 13px !important;
    }

    .pt-xxl-15 {
        padding-top: 15px !important;
    }

    .pt-xxl-17 {
        padding-top: 17px !important;
    }

    .pt-xxl-18 {
        padding-top: 18px !important;
    }

    .pt-xxl-20 {
        padding-top: 20px !important;
    }

    .pt-xxl-25 {
        padding-top: 25px !important;
    }

    .pt-xxl-30 {
        padding-top: 30px !important;
    }

    .pt-xxl-35 {
        padding-top: 35px !important;
    }

    .pt-xxl-40 {
        padding-top: 40px !important;
    }

    .pt-xxl-45 {
        padding-top: 45px !important;
    }

    .pt-xxl-50 {
        padding-top: 50px !important;
    }

    .pt-xxl-55 {
        padding-top: 55px !important;
    }

    .pt-xxl-60 {
        padding-top: 60px !important;
    }

    .pt-xxl-65 {
        padding-top: 65px !important;
    }

    .pt-xxl-70 {
        padding-top: 70px !important;
    }

    .pt-xxl-75 {
        padding-top: 75px !important;
    }

    .pt-xxl-80 {
        padding-top: 80px !important;
    }

    .pt-xxl-90 {
        padding-top: 90px !important;
    }

    .pt-xxl-95 {
        padding-top: 95px !important;
    }

    .pt-xxl-100 {
        padding-top: 100px !important;
    }

    .pt-xxl-110 {
        padding-top: 110px !important;
    }

    .pt-xxl-115 {
        padding-top: 115px !important;
    }

    .pt-xxl-120 {
        padding-top: 120px !important;
    }

    .pt-xxl-130 {
        padding-top: 130px !important;
    }

    .pt-xxl-150 {
        padding-top: 150px !important;
    }

    .pt-xxl-160 {
        padding-top: 160px !important;
    }

    .pt-xxl-180 {
        padding-top: 180px !important;
    }

    .pt-xxl-190 {
        padding-top: 190px !important;
    }

    .pt-xxl-200 {
        padding-top: 200px !important;
    }

    .pt-xxl-210 {
        padding-top: 210px !important;
    }

    .pt-xxl-235 {
        padding-top: 235px !important;
    }

    .pt-xxl-240 {
        padding-top: 240px !important;
    }

    .pt-xxl-270 {
        padding-top: 270px !important;
    }

    .pt-xxl-290 {
        padding-top: 290px !important;
    }

    .pt-xxl-300 {
        padding-top: 300px !important;
    }

    .pe-xxl-0 {
        padding-left: 0 !important;
    }

    .pe-xxl-1 {
        padding-left: 1px !important;
    }

    .pe-xxl-2 {
        padding-left: 2px !important;
    }

    .pe-xxl-3 {
        padding-left: 3px !important;
    }

    .pe-xxl-4 {
        padding-left: 4px !important;
    }

    .pe-xxl-5 {
        padding-left: 5px !important;
    }

    .pe-xxl-6 {
        padding-left: 6px !important;
    }

    .pe-xxl-7 {
        padding-left: 7px !important;
    }

    .pe-xxl-8 {
        padding-left: 8px !important;
    }

    .pe-xxl-9 {
        padding-left: 9px !important;
    }

    .pe-xxl-10 {
        padding-left: 10px !important;
    }

    .pe-xxl-11 {
        padding-left: 11px !important;
    }

    .pe-xxl-12 {
        padding-left: 12px !important;
    }

    .pe-xxl-13 {
        padding-left: 13px !important;
    }

    .pe-xxl-15 {
        padding-left: 15px !important;
    }

    .pe-xxl-17 {
        padding-left: 17px !important;
    }

    .pe-xxl-18 {
        padding-left: 18px !important;
    }

    .pe-xxl-20 {
        padding-left: 20px !important;
    }

    .pe-xxl-25 {
        padding-left: 25px !important;
    }

    .pe-xxl-30 {
        padding-left: 30px !important;
    }

    .pe-xxl-35 {
        padding-left: 35px !important;
    }

    .pe-xxl-40 {
        padding-left: 40px !important;
    }

    .pe-xxl-45 {
        padding-left: 45px !important;
    }

    .pe-xxl-50 {
        padding-left: 50px !important;
    }

    .pe-xxl-55 {
        padding-left: 55px !important;
    }

    .pe-xxl-60 {
        padding-left: 60px !important;
    }

    .pe-xxl-65 {
        padding-left: 65px !important;
    }

    .pe-xxl-70 {
        padding-left: 70px !important;
    }

    .pe-xxl-75 {
        padding-left: 75px !important;
    }

    .pe-xxl-80 {
        padding-left: 80px !important;
    }

    .pe-xxl-90 {
        padding-left: 90px !important;
    }

    .pe-xxl-95 {
        padding-left: 95px !important;
    }

    .pe-xxl-100 {
        padding-left: 100px !important;
    }

    .pe-xxl-110 {
        padding-left: 110px !important;
    }

    .pe-xxl-115 {
        padding-left: 115px !important;
    }

    .pe-xxl-120 {
        padding-left: 120px !important;
    }

    .pe-xxl-130 {
        padding-left: 130px !important;
    }

    .pe-xxl-150 {
        padding-left: 150px !important;
    }

    .pe-xxl-160 {
        padding-left: 160px !important;
    }

    .pe-xxl-180 {
        padding-left: 180px !important;
    }

    .pe-xxl-190 {
        padding-left: 190px !important;
    }

    .pe-xxl-200 {
        padding-left: 200px !important;
    }

    .pe-xxl-210 {
        padding-left: 210px !important;
    }

    .pe-xxl-235 {
        padding-left: 235px !important;
    }

    .pe-xxl-240 {
        padding-left: 240px !important;
    }

    .pe-xxl-270 {
        padding-left: 270px !important;
    }

    .pe-xxl-290 {
        padding-left: 290px !important;
    }

    .pe-xxl-300 {
        padding-left: 300px !important;
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xxl-1 {
        padding-bottom: 1px !important;
    }

    .pb-xxl-2 {
        padding-bottom: 2px !important;
    }

    .pb-xxl-3 {
        padding-bottom: 3px !important;
    }

    .pb-xxl-4 {
        padding-bottom: 4px !important;
    }

    .pb-xxl-5 {
        padding-bottom: 5px !important;
    }

    .pb-xxl-6 {
        padding-bottom: 6px !important;
    }

    .pb-xxl-7 {
        padding-bottom: 7px !important;
    }

    .pb-xxl-8 {
        padding-bottom: 8px !important;
    }

    .pb-xxl-9 {
        padding-bottom: 9px !important;
    }

    .pb-xxl-10 {
        padding-bottom: 10px !important;
    }

    .pb-xxl-11 {
        padding-bottom: 11px !important;
    }

    .pb-xxl-12 {
        padding-bottom: 12px !important;
    }

    .pb-xxl-13 {
        padding-bottom: 13px !important;
    }

    .pb-xxl-15 {
        padding-bottom: 15px !important;
    }

    .pb-xxl-17 {
        padding-bottom: 17px !important;
    }

    .pb-xxl-18 {
        padding-bottom: 18px !important;
    }

    .pb-xxl-20 {
        padding-bottom: 20px !important;
    }

    .pb-xxl-25 {
        padding-bottom: 25px !important;
    }

    .pb-xxl-30 {
        padding-bottom: 30px !important;
    }

    .pb-xxl-35 {
        padding-bottom: 35px !important;
    }

    .pb-xxl-40 {
        padding-bottom: 40px !important;
    }

    .pb-xxl-45 {
        padding-bottom: 45px !important;
    }

    .pb-xxl-50 {
        padding-bottom: 50px !important;
    }

    .pb-xxl-55 {
        padding-bottom: 55px !important;
    }

    .pb-xxl-60 {
        padding-bottom: 60px !important;
    }

    .pb-xxl-65 {
        padding-bottom: 65px !important;
    }

    .pb-xxl-70 {
        padding-bottom: 70px !important;
    }

    .pb-xxl-75 {
        padding-bottom: 75px !important;
    }

    .pb-xxl-80 {
        padding-bottom: 80px !important;
    }

    .pb-xxl-90 {
        padding-bottom: 90px !important;
    }

    .pb-xxl-95 {
        padding-bottom: 95px !important;
    }

    .pb-xxl-100 {
        padding-bottom: 100px !important;
    }

    .pb-xxl-110 {
        padding-bottom: 110px !important;
    }

    .pb-xxl-115 {
        padding-bottom: 115px !important;
    }

    .pb-xxl-120 {
        padding-bottom: 120px !important;
    }

    .pb-xxl-130 {
        padding-bottom: 130px !important;
    }

    .pb-xxl-150 {
        padding-bottom: 150px !important;
    }

    .pb-xxl-160 {
        padding-bottom: 160px !important;
    }

    .pb-xxl-180 {
        padding-bottom: 180px !important;
    }

    .pb-xxl-190 {
        padding-bottom: 190px !important;
    }

    .pb-xxl-200 {
        padding-bottom: 200px !important;
    }

    .pb-xxl-210 {
        padding-bottom: 210px !important;
    }

    .pb-xxl-235 {
        padding-bottom: 235px !important;
    }

    .pb-xxl-240 {
        padding-bottom: 240px !important;
    }

    .pb-xxl-270 {
        padding-bottom: 270px !important;
    }

    .pb-xxl-290 {
        padding-bottom: 290px !important;
    }

    .pb-xxl-300 {
        padding-bottom: 300px !important;
    }

    .ps-xxl-0 {
        padding-right: 0 !important;
    }

    .ps-xxl-1 {
        padding-right: 1px !important;
    }

    .ps-xxl-2 {
        padding-right: 2px !important;
    }

    .ps-xxl-3 {
        padding-right: 3px !important;
    }

    .ps-xxl-4 {
        padding-right: 4px !important;
    }

    .ps-xxl-5 {
        padding-right: 5px !important;
    }

    .ps-xxl-6 {
        padding-right: 6px !important;
    }

    .ps-xxl-7 {
        padding-right: 7px !important;
    }

    .ps-xxl-8 {
        padding-right: 8px !important;
    }

    .ps-xxl-9 {
        padding-right: 9px !important;
    }

    .ps-xxl-10 {
        padding-right: 10px !important;
    }

    .ps-xxl-11 {
        padding-right: 11px !important;
    }

    .ps-xxl-12 {
        padding-right: 12px !important;
    }

    .ps-xxl-13 {
        padding-right: 13px !important;
    }

    .ps-xxl-15 {
        padding-right: 15px !important;
    }

    .ps-xxl-17 {
        padding-right: 17px !important;
    }

    .ps-xxl-18 {
        padding-right: 18px !important;
    }

    .ps-xxl-20 {
        padding-right: 20px !important;
    }

    .ps-xxl-25 {
        padding-right: 25px !important;
    }

    .ps-xxl-30 {
        padding-right: 30px !important;
    }

    .ps-xxl-35 {
        padding-right: 35px !important;
    }

    .ps-xxl-40 {
        padding-right: 40px !important;
    }

    .ps-xxl-45 {
        padding-right: 45px !important;
    }

    .ps-xxl-50 {
        padding-right: 50px !important;
    }

    .ps-xxl-55 {
        padding-right: 55px !important;
    }

    .ps-xxl-60 {
        padding-right: 60px !important;
    }

    .ps-xxl-65 {
        padding-right: 65px !important;
    }

    .ps-xxl-70 {
        padding-right: 70px !important;
    }

    .ps-xxl-75 {
        padding-right: 75px !important;
    }

    .ps-xxl-80 {
        padding-right: 80px !important;
    }

    .ps-xxl-90 {
        padding-right: 90px !important;
    }

    .ps-xxl-95 {
        padding-right: 95px !important;
    }

    .ps-xxl-100 {
        padding-right: 100px !important;
    }

    .ps-xxl-110 {
        padding-right: 110px !important;
    }

    .ps-xxl-115 {
        padding-right: 115px !important;
    }

    .ps-xxl-120 {
        padding-right: 120px !important;
    }

    .ps-xxl-130 {
        padding-right: 130px !important;
    }

    .ps-xxl-150 {
        padding-right: 150px !important;
    }

    .ps-xxl-160 {
        padding-right: 160px !important;
    }

    .ps-xxl-180 {
        padding-right: 180px !important;
    }

    .ps-xxl-190 {
        padding-right: 190px !important;
    }

    .ps-xxl-200 {
        padding-right: 200px !important;
    }

    .ps-xxl-210 {
        padding-right: 210px !important;
    }

    .ps-xxl-235 {
        padding-right: 235px !important;
    }

    .ps-xxl-240 {
        padding-right: 240px !important;
    }

    .ps-xxl-270 {
        padding-right: 270px !important;
    }

    .ps-xxl-290 {
        padding-right: 290px !important;
    }

    .ps-xxl-300 {
        padding-right: 300px !important;
    }

    .text-xxl-start {
        text-align: right !important;
    }

    .text-xxl-end {
        text-align: left !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .fs-1 {
        font-size: 2.5rem !important;
    }

    .fs-2 {
        font-size: 2rem !important;
    }

    .fs-3 {
        font-size: 1.75rem !important;
    }

    .fs-4 {
        font-size: 1.5rem !important;
    }
}

@media print {
    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-grid {
        display: grid !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .d-print-none {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .section__slider {
        padding: 150px 0;
    }

    .footer .about-img-small {
        right: 70px !important;
    }
}

@media (max-width: 1199px) {
    .footer .about-img-large {
        width: 100%;
        float: unset;
        margin-bottom: 30px;
    }

    .footer .footer-logo {
        margin-top: 50px;
    }

    .footer .footer-logo .saba-logo {
        max-width: 50%;
    }

    .footer .footer-logo .shoar {
        max-width: 50%;
    }
}

@media (max-width: 1199px) and (min-width: 620px) {
    .section-w-rectangle .layout-content .layout-content-img .img-small {
        right: -60px;
    }

    .section-w-rectangle .layout-content .layout-content-img .img-small.left {
        left: -60px;
    }
}

@media (max-width: 1022px) {
    body.page-dark .card-img-top-overlay .card-content .card-body {
        position: relative;
        background: #303133;
    }

    /* .swiper-fluid .swiper-slide {
		width: 33.33% !important;
	} */

}

@media (min-width: 992px) {
    .section__slider .container__center {
        max-width: 1200px;
        width: 85%;
    }

    .section__slider .container__center:after {
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        background: linear-gradient(to top, #f2f3f3, rgba(248, 248, 248, 0));
    }

    .section__slider .container__center {
        max-width: 1070px;
        width: 100%;
    }

    .navbar-top .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        top: 100%;
        right: 0;
        margin-top: 0;
    }

    .logo-md-hidden {
        display: none !important;
    }

    .h-md-100 {
        height: 100% !important;
    }
}

@media (max-width: 991px) {

    .logo-sm-hidden {
        display: none !important;
    }

    body.page-dark .navbar-top .navbar-brand,
    body.page-dark .navbar-top .navbar-brand:after {
        background: transparent;
    }

    .section-w-rectangle .shape-rectangle {
        display: none;
    }

    .navbar-top .navbar-collapse {
        position: absolute;
        top: 70px;
        /* background: rgba(255, 255, 255, 0.91) !important; */
        background: #fff !important;
        width: 100%;
        margin: 0 auto;
        right: 0;
        left: 0;
        border-top: 1px solid #e7e7e7;
    }

    .navbar-top.navbar-opaque .navbar-nav {
        padding: 0;
    }

    .navbar-top .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid #efefef;
    }

    .navbar-top .navbar-nav .dropdown-menu {
        background-color: #f3f4f5;
        margin: 0 15px;
        border: 1px solid #efefef;
        border-bottom: 0;
        margin-bottom: 15px;
    }

    .navbar-top .navbar-nav .dropdown-menu ul.nav {
        padding: 0;
    }

    .navbar-top .navbar-nav .dropdown-menu ul.nav .nav-item .nav-link:hover {
        background: #eceef1;
        border-radius: 0 !important;
    }

    .navbar-top .navbar-nav .item-dropdown.nav-item .nav-link:before {
        background: #d9d9d9;
    }

    .navbar-top .navbar-nav .nav-item .nav-link:hover:before {
        display: none;
    }

    .item-dropdown .icon {
        display: block;
    }

    .navbar .navbar-toggle {
        background: #302c6f;
        border-radius: 0;
        height: 100%;
        padding: 15px 25px 15px 25px;
        border-left: 4px solid #cf2a27;
        color: #fff;
    }

    .navbar-top .navbar-brand {
        background: transparent;
    }

    .navbar-top .navbar-brand:after {
        display: none;
    }

    body.has-topbar .navbar-top.navbar-opaque > .container {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        margin: 0;
    }

    /* .footer {
		background: url('../../sabasteel/img/root/footer-bg-3-mini.jpg');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: bottom;
	} */
    .area .banner {
        min-width: 100%;
    }

    .area .banner .banner-title {
        font-size: 20px;
    }

    .md-order-1 {
        order: 1;
    }

    .md-order-2 {
        order: 2;
    }

    .md-order-3 {
        order: 3;
    }

    .swiper-3d .swiper-slide {
        width: 50%;
    }

    /* .swiper-fluid .swiper-slide {
		width: 50% !important;
	} */

}

@media (min-width: 828px) and (max-width: 1023px) {

    .h-md-auto,
    .h-sm-100.h-md-auto {
        height: unset !important;
    }
}

@media (min-width: 621px) {
    .h-sm-100 {
        height: 100% !important;
    }
}

@media (max-width: 620px) {

    .font-25 {
        font-size: 18px !important;
    }

    ul.nav-tabs.nav-pills,
    .nav.nav-tabs[class*=-column] {
        flex-direction: row !important;
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    ul.nav-tabs.nav-pills li.nav-item,
    .nav.nav-tabs[class*=-column] li.nav-item {
        flex: 0 0 50%;
        max-width: 50%;
        font-size: 14px;
        padding: 0 10px;
    }

    ul.nav-tabs.nav-pills li.nav-item .nav-link,
    .nav.nav-tabs[class*=-column] li.nav-item .nav-link {
        font-size: 14px;
        padding: 10px 5px;
    }

    .card-img-top-overlay .card-content .card-body .card-title {
        font-size: 16px;
        margin-bottom: 0;
    }

    .section-w-rectangle .layout-content .layout-content-img .img-small {
        top: -30px;
        bottom: 0;
        right: 000;
        left: 0;
        width: 60%;
        height: 60%;
        max-height: unset;
        min-height: unset;
        margin-top: 0 !important;
    }

    .footer .about-img-large {
        width: 100%;
        margin: 0 !important;
        height: 100%;
        --img-height: 100%;
    }

    .footer .text-img-saba .title {
        font-size: 12px;
    }

    .section-w-rectangle .layout-content .layout-content-img .img-small img,
    .section-w-rectangle .layout-content .layout-content-img .img-large {
        border-radius: 10px;
        border-width: 5px;
    }

    .section-w-rectangle .layout-content .layout-content-img .img-small.left {
        left: 0;
    }

    .footer .section-title-footer {
        margin-top: 30px;
    }

    .footer .footer-list .icon {
        display: none;
    }

    .footer .footer-copyright {
        height: unset;
    }

    .footer .footer-logo {
        margin-top: 0;
    }

    /* .footer .footer-logo .shoar,
	.footer .footer-logo .saba-logo {
		display: block !important;
		width: 100%;
	} */
    .shape-parent .layout-content-text,
    .shape-parent .layout-content-img {
        margin-bottom: 60px;
    }

    .about-footer-text {
        padding-bottom: 40px;
    }

    .section-header .section-header-title {
        padding: 15px 0 !important;
    }

    .section-header .section-header-title .title {
        font-size: 20px;
    }

    .section-header .section-header-title .title:after {
        bottom: -15px;
    }

    .pagination li {
        position: relative;
        min-width: 60px;
        height: 34px;
        border-radius: 4px;
    }

    .pagination li {
        display: none;
    }

    .pagination li:first-child,
    .pagination li:last-child {
        display: flex;
    }

    .pagination li.disabled:first-child:after {
        content: 'قبلی';
        font-size: 14px;
        margin-right: 4px;
        font-family: 'Vazirmatn';
    }

    .pagination li.disabled:last-child:before {
        content: 'بعدی';
        font-size: 14px;
        margin-left: 4px;
        font-family: 'Vazirmatn';
    }

    .pagination li:first-child a:after {
        content: 'قبلی';
        font-size: 14px;
        margin-right: 4px;
        font-family: 'Vazirmatn';
    }

    .pagination li:last-child a:before {
        content: 'بعدی';
        font-size: 14px;
        margin-left: 4px;
        font-family: 'Vazirmatn';
    }

    .page-not-found .notfound-info {
        padding: 30px 15px;
        border-width: 10px;
    }

    .page-not-found .title {
        font-size: 50px;
    }

    .page-not-found .title-2 {
        font-size: 18px;
    }

    .page-not-found .btn-back {
        font-size: 16px;
    }

    .swiper-3d .swiper-slide {
        width: 90%;
    }

    /* .swiper-fluid .swiper-slide {
		width: 90% !important;
	} */
}

@media (max-width: 320px) {
    .footer .text-img-saba .title {
        font-size: 10px;
    }

    .footer .about-img-small {
        width: 60%;
    }
}

/** زیرمنوی هدر **/
.dropdown-menu .drop-hover {
    position: relative;
}

.dropdown-menu .icon {
    top: 16px !important;
}

.dropdown-menu .drop-hover:hover .dropdown-submenu {
    display: block !important;
    padding: 15px;
}

@media (min-width: 992px) {
    .dropdown-menu .drop-hover:hover .dropdown-submenu {
        right: 210px;
        top: -20px;
    }
}

.modal-btn-view {
    background: #302c6f;
    color: #fff;
    border-color: #302c6f;
    padding: 8px 18px;
    font-weight: 400;
}

.modal-btn-view:hover {
    background: #26235a;
    color: #fff;
    border-color: #26235a;
}


/* استایل‌های جدید هدر */
@media (min-width: 991px) and (max-width: 1200px) {
    body.has-topbar .navbar-top.navbar-opaque .container {
        margin: 0;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        border-radius: 0;
    }

    .navbar-top .navbar-brand {
        background: transparent;
    }

    .navbar-top .navbar-brand:after {
        display: none;
    }

    .navbar .navbar-toggle {
        background: #302c6f;
        border-radius: 0;
        height: 100%;
        padding: 15px 25px 15px 25px;
        border-left: 4px solid #cf2a27;
        color: #fff;
    }

    .navbar-top .navbar-collapse {
        position: absolute;
        top: 70px;
        background: #fff !important;
        width: 100%;
        margin: 0 auto;
        right: 0;
        left: 0;
        border-top: 1px solid #e7e7e7;
    }

    .navbar-top.navbar-opaque .navbar-nav {
        padding-right: 0;
    }

    .navbar-top .navbar-nav.order-2 > .nav-item > .nav-link:before {
        display: none;
    }

    .navbar-top .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid #efefef;
    }

    .navbar-top .navbar-nav .dropdown-menu {
        background-color: #f3f4f5;
        margin: 0 15px;
        border: 1px solid #efefef;
        border-bottom: 0;
        margin-bottom: 15px;
    }
}

.logo-lg-hidden {
    display: none;
}

.logo-lg-show {
    display: block;
}

@media (min-width: 1200px) {
    .logo-lg-hidden {
        display: block;
    }

    .logo-lg-show {
        display: none;
    }
}


/*کاتالوگ*/
.catalogs-section {
    padding: 40px 0;
    margin-bottom: 80px;
}

.catalogs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.catalogs-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.catalogs-section .section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.catalogs-section .section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #cf2a27, #ff6b6b);
    border-radius: 2px;
    animation: slideIn 0.8s ease-out 0.3s both;
}

.catalogs-section .section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.catalogs-section .catalogs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.catalogs-section .catalog-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-top: 4px solid #383568;
    animation: fadeInUp 0.6s ease-out both;
}

.catalogs-section .catalog-card:nth-child(1) {
    animation-delay: 0.4s;
}

.catalogs-section .catalog-card:nth-child(2) {
    animation-delay: 0.5s;
}

.catalogs-section .catalog-card:nth-child(3) {
    animation-delay: 0.6s;
}

.catalogs-section .catalog-card:nth-child(4) {
    animation-delay: 0.7s;
}

.catalogs-section .catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background: white;
}

.catalogs-section .card-number {
    color: #302c6f;
    font-size: 58px;
    font-weight: 700;
    position: absolute;
    left: 28px;
    top: 0;
    opacity: 7%;
    animation: pulse 2s infinite ease-in-out;
}

.catalogs-section .card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.catalogs-section .card-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.catalogs-section .card-image {
    width: 100px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.catalogs-section .card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.catalogs-section .card-title {
    font-size: 20px;
    color: #383568;
    margin-bottom: 18px;
    font-weight: 600;
    animation: fadeIn 0.5s ease-out 0.3s both;
}

.catalogs-section .download-btn {
    display: inline-flex;
    align-items: center;
    background: #302c6f;
    color: white;
    padding: 10px 14px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(56, 53, 104, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    justify-content: center;
    gap: 8px;
    animation: fadeIn 0.5s ease-out 0.5s both;
}

.catalogs-section .download-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.catalogs-section .download-btn i {
    position: relative;
    top: -1px;
    opacity: 60%;
    font-size: 14px;
    transition: all 0.3s ease;
}

.catalogs-section .download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(56, 53, 104, 0.4);
}

.catalogs-section .download-btn:hover:before {
    left: 100%;
}

.catalogs-section .download-btn:hover i {
    opacity: 1;
}

.catalogs-section .download-btn svg {
    margin-right: 8px;
}

/* انیمیشن های جدید */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.08;
    }
    50% {
        opacity: 0.14;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .catalogs-section .catalogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .catalogs-section .catalogs-grid {
        grid-template-columns: 1fr;
    }

}