/** var root**/
/** breakpoints **/
/** spacing margin padding **/
/** var root**/
/** breakpoints **/
/** spacing margin padding **/

p {
    font-size: 14px;
    line-height: 171%;
}

.container {
    max-width: var(--kmnd-container-max-width);
    padding: 0 var(--kmnd-container-padding);
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.container_lg {
    max-width: var(--kmnd-container-max-width-lg);
}

.container_xl {
    max-width: var(--kmnd-container-max-width-xl);
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
}

/** var root**/
/** breakpoints **/
/** spacing margin padding **/
.d-flex {
    display: flex !important;
}

.d-block {
    display: block !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-grid {
    display: grid !important;
}

.d-inline-grid {
    display: inline-grid !important;
}

.d-none {
    display: none !important;
}

@media (min-width: 320px) {
    .d-xs-flex {
        display: flex !important;
    }

    .d-xs-block {
        display: block !important;
    }

    .d-xs-inline-flex {
        display: inline-flex !important;
    }

    .d-xs-inline-block {
        display: inline-block !important;
    }

    .d-xs-grid {
        display: grid !important;
    }

    .d-xs-inline-grid {
        display: inline-grid !important;
    }

    .d-xs-none {
        display: none !important;
    }
}

@media (min-width: 576px) {
    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-inline-flex {
        display: inline-flex !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-grid {
        display: grid !important;
    }

    .d-sm-inline-grid {
        display: inline-grid !important;
    }

    .d-sm-none {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .d-md-flex {
        display: flex !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-inline-flex {
        display: inline-flex !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-grid {
        display: grid !important;
    }

    .d-md-inline-grid {
        display: inline-grid !important;
    }

    .d-md-none {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-grid {
        display: grid !important;
    }

    .d-lg-inline-grid {
        display: inline-grid !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-grid {
        display: grid !important;
    }

    .d-xl-inline-grid {
        display: inline-grid !important;
    }

    .d-xl-none {
        display: none !important;
    }
}

@media (min-width: 1400px) {
    .d-xxl-flex {
        display: flex !important;
    }

    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-inline-flex {
        display: inline-flex !important;
    }

    .d-xxl-inline-block {
        display: inline-block !important;
    }

    .d-xxl-grid {
        display: grid !important;
    }

    .d-xxl-inline-grid {
        display: inline-grid !important;
    }

    .d-xxl-none {
        display: none !important;
    }
}

.grid {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-column {
    grid-auto-flow: column !important;
}

.grid-row {
    grid-auto-flow: row !important;
}

.grid-dense {
    grid-auto-flow: dense !important;
}

.grid-rows-1 {
    grid-template-rows: 1fr;
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-rows-2 {
    grid-template-rows: 1fr 1fr;
}

.grid-cols-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-rows-3 {
    grid-template-rows: 1fr 1fr 1fr;
}

.grid-cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.grid-rows-4 {
    grid-template-rows: 1fr 1fr 1fr 1fr;
}

.grid-cols-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-rows-5 {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
}

.grid-cols-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.grid-rows-6 {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-cols-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-rows-7 {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-cols-7 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-rows-8 {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-cols-8 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-rows-9 {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-cols-9 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-rows-10 {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-cols-10 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-rows-11 {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-cols-11 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-rows-12 {
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid-cols-12 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.gc-1 {
    grid-column-start: 1;
}

.gr-1 {
    grid-row-start: 1;
}

.gw-1 {
    grid-column-end: span 1;
}

.gh-1 {
    grid-row-end: span 1;
}

.gc-2 {
    grid-column-start: 2;
}

.gr-2 {
    grid-row-start: 2;
}

.gw-2 {
    grid-column-end: span 2;
}

.gh-2 {
    grid-row-end: span 2;
}

.gc-3 {
    grid-column-start: 3;
}

.gr-3 {
    grid-row-start: 3;
}

.gw-3 {
    grid-column-end: span 3;
}

.gh-3 {
    grid-row-end: span 3;
}

.gc-4 {
    grid-column-start: 4;
}

.gr-4 {
    grid-row-start: 4;
}

.gw-4 {
    grid-column-end: span 4;
}

.gh-4 {
    grid-row-end: span 4;
}

.gc-5 {
    grid-column-start: 5;
}

.gr-5 {
    grid-row-start: 5;
}

.gw-5 {
    grid-column-end: span 5;
}

.gh-5 {
    grid-row-end: span 5;
}

.gc-6 {
    grid-column-start: 6;
}

.gr-6 {
    grid-row-start: 6;
}

.gw-6 {
    grid-column-end: span 6;
}

.gh-6 {
    grid-row-end: span 6;
}

.gc-7 {
    grid-column-start: 7;
}

.gr-7 {
    grid-row-start: 7;
}

.gw-7 {
    grid-column-end: span 7;
}

.gh-7 {
    grid-row-end: span 7;
}

.gc-8 {
    grid-column-start: 8;
}

.gr-8 {
    grid-row-start: 8;
}

.gw-8 {
    grid-column-end: span 8;
}

.gh-8 {
    grid-row-end: span 8;
}

.gc-9 {
    grid-column-start: 9;
}

.gr-9 {
    grid-row-start: 9;
}

.gw-9 {
    grid-column-end: span 9;
}

.gh-9 {
    grid-row-end: span 9;
}

.gc-10 {
    grid-column-start: 10;
}

.gr-10 {
    grid-row-start: 10;
}

.gw-10 {
    grid-column-end: span 10;
}

.gh-10 {
    grid-row-end: span 10;
}

.gc-11 {
    grid-column-start: 11;
}

.gr-11 {
    grid-row-start: 11;
}

.gw-11 {
    grid-column-end: span 11;
}

.gh-11 {
    grid-row-end: span 11;
}

.gc-12 {
    grid-column-start: 12;
}

.gr-12 {
    grid-row-start: 12;
}

.gw-12 {
    grid-column-end: span 12;
}

.gh-12 {
    grid-row-end: span 12;
}

@media (min-width: 320px) {
    .grid-xs-column {
        grid-auto-flow: column !important;
    }

    .grid-xs-row {
        grid-auto-flow: row !important;
    }

    .grid-xs-dense {
        grid-auto-flow: dense !important;
    }

    .grid-rows-xs-1 {
        grid-template-rows: 1fr;
    }

    .grid-cols-xs-1 {
        grid-template-columns: 1fr;
    }

    .grid-rows-xs-2 {
        grid-template-rows: 1fr 1fr;
    }

    .grid-cols-xs-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-rows-xs-3 {
        grid-template-rows: 1fr 1fr 1fr;
    }

    .grid-cols-xs-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-rows-xs-4 {
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xs-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xs-5 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xs-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xs-6 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xs-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xs-7 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xs-7 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xs-8 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xs-8 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xs-9 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xs-9 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xs-10 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xs-10 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xs-11 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xs-11 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xs-12 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xs-12 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .gc-xs-1 {
        grid-column-start: 1;
    }

    .gr-xs-1 {
        grid-row-start: 1;
    }

    .gw-xs-1 {
        grid-column-end: span 1;
    }

    .gh-xs-1 {
        grid-row-end: span 1;
    }

    .gc-xs-2 {
        grid-column-start: 2;
    }

    .gr-xs-2 {
        grid-row-start: 2;
    }

    .gw-xs-2 {
        grid-column-end: span 2;
    }

    .gh-xs-2 {
        grid-row-end: span 2;
    }

    .gc-xs-3 {
        grid-column-start: 3;
    }

    .gr-xs-3 {
        grid-row-start: 3;
    }

    .gw-xs-3 {
        grid-column-end: span 3;
    }

    .gh-xs-3 {
        grid-row-end: span 3;
    }

    .gc-xs-4 {
        grid-column-start: 4;
    }

    .gr-xs-4 {
        grid-row-start: 4;
    }

    .gw-xs-4 {
        grid-column-end: span 4;
    }

    .gh-xs-4 {
        grid-row-end: span 4;
    }

    .gc-xs-5 {
        grid-column-start: 5;
    }

    .gr-xs-5 {
        grid-row-start: 5;
    }

    .gw-xs-5 {
        grid-column-end: span 5;
    }

    .gh-xs-5 {
        grid-row-end: span 5;
    }

    .gc-xs-6 {
        grid-column-start: 6;
    }

    .gr-xs-6 {
        grid-row-start: 6;
    }

    .gw-xs-6 {
        grid-column-end: span 6;
    }

    .gh-xs-6 {
        grid-row-end: span 6;
    }

    .gc-xs-7 {
        grid-column-start: 7;
    }

    .gr-xs-7 {
        grid-row-start: 7;
    }

    .gw-xs-7 {
        grid-column-end: span 7;
    }

    .gh-xs-7 {
        grid-row-end: span 7;
    }

    .gc-xs-8 {
        grid-column-start: 8;
    }

    .gr-xs-8 {
        grid-row-start: 8;
    }

    .gw-xs-8 {
        grid-column-end: span 8;
    }

    .gh-xs-8 {
        grid-row-end: span 8;
    }

    .gc-xs-9 {
        grid-column-start: 9;
    }

    .gr-xs-9 {
        grid-row-start: 9;
    }

    .gw-xs-9 {
        grid-column-end: span 9;
    }

    .gh-xs-9 {
        grid-row-end: span 9;
    }

    .gc-xs-10 {
        grid-column-start: 10;
    }

    .gr-xs-10 {
        grid-row-start: 10;
    }

    .gw-xs-10 {
        grid-column-end: span 10;
    }

    .gh-xs-10 {
        grid-row-end: span 10;
    }

    .gc-xs-11 {
        grid-column-start: 11;
    }

    .gr-xs-11 {
        grid-row-start: 11;
    }

    .gw-xs-11 {
        grid-column-end: span 11;
    }

    .gh-xs-11 {
        grid-row-end: span 11;
    }

    .gc-xs-12 {
        grid-column-start: 12;
    }

    .gr-xs-12 {
        grid-row-start: 12;
    }

    .gw-xs-12 {
        grid-column-end: span 12;
    }

    .gh-xs-12 {
        grid-row-end: span 12;
    }
}

@media (min-width: 576px) {
    .grid-sm-column {
        grid-auto-flow: column !important;
    }

    .grid-sm-row {
        grid-auto-flow: row !important;
    }

    .grid-sm-dense {
        grid-auto-flow: dense !important;
    }

    .grid-rows-sm-1 {
        grid-template-rows: 1fr;
    }

    .grid-cols-sm-1 {
        grid-template-columns: 1fr;
    }

    .grid-rows-sm-2 {
        grid-template-rows: 1fr 1fr;
    }

    .grid-cols-sm-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-rows-sm-3 {
        grid-template-rows: 1fr 1fr 1fr;
    }

    .grid-cols-sm-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-rows-sm-4 {
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }

    .grid-cols-sm-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .grid-rows-sm-5 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-sm-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-sm-6 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-sm-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-sm-7 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-sm-7 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-sm-8 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-sm-8 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-sm-9 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-sm-9 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-sm-10 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-sm-10 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-sm-11 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-sm-11 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-sm-12 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-sm-12 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .gc-sm-1 {
        grid-column-start: 1;
    }

    .gr-sm-1 {
        grid-row-start: 1;
    }

    .gw-sm-1 {
        grid-column-end: span 1;
    }

    .gh-sm-1 {
        grid-row-end: span 1;
    }

    .gc-sm-2 {
        grid-column-start: 2;
    }

    .gr-sm-2 {
        grid-row-start: 2;
    }

    .gw-sm-2 {
        grid-column-end: span 2;
    }

    .gh-sm-2 {
        grid-row-end: span 2;
    }

    .gc-sm-3 {
        grid-column-start: 3;
    }

    .gr-sm-3 {
        grid-row-start: 3;
    }

    .gw-sm-3 {
        grid-column-end: span 3;
    }

    .gh-sm-3 {
        grid-row-end: span 3;
    }

    .gc-sm-4 {
        grid-column-start: 4;
    }

    .gr-sm-4 {
        grid-row-start: 4;
    }

    .gw-sm-4 {
        grid-column-end: span 4;
    }

    .gh-sm-4 {
        grid-row-end: span 4;
    }

    .gc-sm-5 {
        grid-column-start: 5;
    }

    .gr-sm-5 {
        grid-row-start: 5;
    }

    .gw-sm-5 {
        grid-column-end: span 5;
    }

    .gh-sm-5 {
        grid-row-end: span 5;
    }

    .gc-sm-6 {
        grid-column-start: 6;
    }

    .gr-sm-6 {
        grid-row-start: 6;
    }

    .gw-sm-6 {
        grid-column-end: span 6;
    }

    .gh-sm-6 {
        grid-row-end: span 6;
    }

    .gc-sm-7 {
        grid-column-start: 7;
    }

    .gr-sm-7 {
        grid-row-start: 7;
    }

    .gw-sm-7 {
        grid-column-end: span 7;
    }

    .gh-sm-7 {
        grid-row-end: span 7;
    }

    .gc-sm-8 {
        grid-column-start: 8;
    }

    .gr-sm-8 {
        grid-row-start: 8;
    }

    .gw-sm-8 {
        grid-column-end: span 8;
    }

    .gh-sm-8 {
        grid-row-end: span 8;
    }

    .gc-sm-9 {
        grid-column-start: 9;
    }

    .gr-sm-9 {
        grid-row-start: 9;
    }

    .gw-sm-9 {
        grid-column-end: span 9;
    }

    .gh-sm-9 {
        grid-row-end: span 9;
    }

    .gc-sm-10 {
        grid-column-start: 10;
    }

    .gr-sm-10 {
        grid-row-start: 10;
    }

    .gw-sm-10 {
        grid-column-end: span 10;
    }

    .gh-sm-10 {
        grid-row-end: span 10;
    }

    .gc-sm-11 {
        grid-column-start: 11;
    }

    .gr-sm-11 {
        grid-row-start: 11;
    }

    .gw-sm-11 {
        grid-column-end: span 11;
    }

    .gh-sm-11 {
        grid-row-end: span 11;
    }

    .gc-sm-12 {
        grid-column-start: 12;
    }

    .gr-sm-12 {
        grid-row-start: 12;
    }

    .gw-sm-12 {
        grid-column-end: span 12;
    }

    .gh-sm-12 {
        grid-row-end: span 12;
    }
}

@media (min-width: 768px) {
    .grid-md-column {
        grid-auto-flow: column !important;
    }

    .grid-md-row {
        grid-auto-flow: row !important;
    }

    .grid-md-dense {
        grid-auto-flow: dense !important;
    }

    .grid-rows-md-1 {
        grid-template-rows: 1fr;
    }

    .grid-cols-md-1 {
        grid-template-columns: 1fr;
    }

    .grid-rows-md-2 {
        grid-template-rows: 1fr 1fr;
    }

    .grid-cols-md-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-rows-md-3 {
        grid-template-rows: 1fr 1fr 1fr;
    }

    .grid-cols-md-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-rows-md-4 {
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }

    .grid-cols-md-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .grid-rows-md-5 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-md-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-md-6 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-md-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-md-7 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-md-7 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-md-8 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-md-8 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-md-9 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-md-9 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-md-10 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-md-10 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-md-11 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-md-11 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-md-12 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-md-12 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .gc-md-1 {
        grid-column-start: 1;
    }

    .gr-md-1 {
        grid-row-start: 1;
    }

    .gw-md-1 {
        grid-column-end: span 1;
    }

    .gh-md-1 {
        grid-row-end: span 1;
    }

    .gc-md-2 {
        grid-column-start: 2;
    }

    .gr-md-2 {
        grid-row-start: 2;
    }

    .gw-md-2 {
        grid-column-end: span 2;
    }

    .gh-md-2 {
        grid-row-end: span 2;
    }

    .gc-md-3 {
        grid-column-start: 3;
    }

    .gr-md-3 {
        grid-row-start: 3;
    }

    .gw-md-3 {
        grid-column-end: span 3;
    }

    .gh-md-3 {
        grid-row-end: span 3;
    }

    .gc-md-4 {
        grid-column-start: 4;
    }

    .gr-md-4 {
        grid-row-start: 4;
    }

    .gw-md-4 {
        grid-column-end: span 4;
    }

    .gh-md-4 {
        grid-row-end: span 4;
    }

    .gc-md-5 {
        grid-column-start: 5;
    }

    .gr-md-5 {
        grid-row-start: 5;
    }

    .gw-md-5 {
        grid-column-end: span 5;
    }

    .gh-md-5 {
        grid-row-end: span 5;
    }

    .gc-md-6 {
        grid-column-start: 6;
    }

    .gr-md-6 {
        grid-row-start: 6;
    }

    .gw-md-6 {
        grid-column-end: span 6;
    }

    .gh-md-6 {
        grid-row-end: span 6;
    }

    .gc-md-7 {
        grid-column-start: 7;
    }

    .gr-md-7 {
        grid-row-start: 7;
    }

    .gw-md-7 {
        grid-column-end: span 7;
    }

    .gh-md-7 {
        grid-row-end: span 7;
    }

    .gc-md-8 {
        grid-column-start: 8;
    }

    .gr-md-8 {
        grid-row-start: 8;
    }

    .gw-md-8 {
        grid-column-end: span 8;
    }

    .gh-md-8 {
        grid-row-end: span 8;
    }

    .gc-md-9 {
        grid-column-start: 9;
    }

    .gr-md-9 {
        grid-row-start: 9;
    }

    .gw-md-9 {
        grid-column-end: span 9;
    }

    .gh-md-9 {
        grid-row-end: span 9;
    }

    .gc-md-10 {
        grid-column-start: 10;
    }

    .gr-md-10 {
        grid-row-start: 10;
    }

    .gw-md-10 {
        grid-column-end: span 10;
    }

    .gh-md-10 {
        grid-row-end: span 10;
    }

    .gc-md-11 {
        grid-column-start: 11;
    }

    .gr-md-11 {
        grid-row-start: 11;
    }

    .gw-md-11 {
        grid-column-end: span 11;
    }

    .gh-md-11 {
        grid-row-end: span 11;
    }

    .gc-md-12 {
        grid-column-start: 12;
    }

    .gr-md-12 {
        grid-row-start: 12;
    }

    .gw-md-12 {
        grid-column-end: span 12;
    }

    .gh-md-12 {
        grid-row-end: span 12;
    }
}

@media (min-width: 992px) {
    .grid-lg-column {
        grid-auto-flow: column !important;
    }

    .grid-lg-row {
        grid-auto-flow: row !important;
    }

    .grid-lg-dense {
        grid-auto-flow: dense !important;
    }

    .grid-rows-lg-1 {
        grid-template-rows: 1fr;
    }

    .grid-cols-lg-1 {
        grid-template-columns: 1fr;
    }

    .grid-rows-lg-2 {
        grid-template-rows: 1fr 1fr;
    }

    .grid-cols-lg-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-rows-lg-3 {
        grid-template-rows: 1fr 1fr 1fr;
    }

    .grid-cols-lg-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-rows-lg-4 {
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }

    .grid-cols-lg-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .grid-rows-lg-5 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-lg-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-lg-6 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-lg-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-lg-7 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-lg-7 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-lg-8 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-lg-8 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-lg-9 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-lg-9 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-lg-10 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-lg-10 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-lg-11 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-lg-11 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-lg-12 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-lg-12 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .gc-lg-1 {
        grid-column-start: 1;
    }

    .gr-lg-1 {
        grid-row-start: 1;
    }

    .gw-lg-1 {
        grid-column-end: span 1;
    }

    .gh-lg-1 {
        grid-row-end: span 1;
    }

    .gc-lg-2 {
        grid-column-start: 2;
    }

    .gr-lg-2 {
        grid-row-start: 2;
    }

    .gw-lg-2 {
        grid-column-end: span 2;
    }

    .gh-lg-2 {
        grid-row-end: span 2;
    }

    .gc-lg-3 {
        grid-column-start: 3;
    }

    .gr-lg-3 {
        grid-row-start: 3;
    }

    .gw-lg-3 {
        grid-column-end: span 3;
    }

    .gh-lg-3 {
        grid-row-end: span 3;
    }

    .gc-lg-4 {
        grid-column-start: 4;
    }

    .gr-lg-4 {
        grid-row-start: 4;
    }

    .gw-lg-4 {
        grid-column-end: span 4;
    }

    .gh-lg-4 {
        grid-row-end: span 4;
    }

    .gc-lg-5 {
        grid-column-start: 5;
    }

    .gr-lg-5 {
        grid-row-start: 5;
    }

    .gw-lg-5 {
        grid-column-end: span 5;
    }

    .gh-lg-5 {
        grid-row-end: span 5;
    }

    .gc-lg-6 {
        grid-column-start: 6;
    }

    .gr-lg-6 {
        grid-row-start: 6;
    }

    .gw-lg-6 {
        grid-column-end: span 6;
    }

    .gh-lg-6 {
        grid-row-end: span 6;
    }

    .gc-lg-7 {
        grid-column-start: 7;
    }

    .gr-lg-7 {
        grid-row-start: 7;
    }

    .gw-lg-7 {
        grid-column-end: span 7;
    }

    .gh-lg-7 {
        grid-row-end: span 7;
    }

    .gc-lg-8 {
        grid-column-start: 8;
    }

    .gr-lg-8 {
        grid-row-start: 8;
    }

    .gw-lg-8 {
        grid-column-end: span 8;
    }

    .gh-lg-8 {
        grid-row-end: span 8;
    }

    .gc-lg-9 {
        grid-column-start: 9;
    }

    .gr-lg-9 {
        grid-row-start: 9;
    }

    .gw-lg-9 {
        grid-column-end: span 9;
    }

    .gh-lg-9 {
        grid-row-end: span 9;
    }

    .gc-lg-10 {
        grid-column-start: 10;
    }

    .gr-lg-10 {
        grid-row-start: 10;
    }

    .gw-lg-10 {
        grid-column-end: span 10;
    }

    .gh-lg-10 {
        grid-row-end: span 10;
    }

    .gc-lg-11 {
        grid-column-start: 11;
    }

    .gr-lg-11 {
        grid-row-start: 11;
    }

    .gw-lg-11 {
        grid-column-end: span 11;
    }

    .gh-lg-11 {
        grid-row-end: span 11;
    }

    .gc-lg-12 {
        grid-column-start: 12;
    }

    .gr-lg-12 {
        grid-row-start: 12;
    }

    .gw-lg-12 {
        grid-column-end: span 12;
    }

    .gh-lg-12 {
        grid-row-end: span 12;
    }
}

@media (min-width: 1200px) {
    .grid-xl-column {
        grid-auto-flow: column !important;
    }

    .grid-xl-row {
        grid-auto-flow: row !important;
    }

    .grid-xl-dense {
        grid-auto-flow: dense !important;
    }

    .grid-rows-xl-1 {
        grid-template-rows: 1fr;
    }

    .grid-cols-xl-1 {
        grid-template-columns: 1fr;
    }

    .grid-rows-xl-2 {
        grid-template-rows: 1fr 1fr;
    }

    .grid-cols-xl-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-rows-xl-3 {
        grid-template-rows: 1fr 1fr 1fr;
    }

    .grid-cols-xl-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-rows-xl-4 {
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xl-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xl-5 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xl-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xl-6 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xl-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xl-7 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xl-7 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xl-8 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xl-8 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xl-9 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xl-9 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xl-10 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xl-10 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xl-11 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xl-11 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xl-12 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xl-12 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .gc-xl-1 {
        grid-column-start: 1;
    }

    .gr-xl-1 {
        grid-row-start: 1;
    }

    .gw-xl-1 {
        grid-column-end: span 1;
    }

    .gh-xl-1 {
        grid-row-end: span 1;
    }

    .gc-xl-2 {
        grid-column-start: 2;
    }

    .gr-xl-2 {
        grid-row-start: 2;
    }

    .gw-xl-2 {
        grid-column-end: span 2;
    }

    .gh-xl-2 {
        grid-row-end: span 2;
    }

    .gc-xl-3 {
        grid-column-start: 3;
    }

    .gr-xl-3 {
        grid-row-start: 3;
    }

    .gw-xl-3 {
        grid-column-end: span 3;
    }

    .gh-xl-3 {
        grid-row-end: span 3;
    }

    .gc-xl-4 {
        grid-column-start: 4;
    }

    .gr-xl-4 {
        grid-row-start: 4;
    }

    .gw-xl-4 {
        grid-column-end: span 4;
    }

    .gh-xl-4 {
        grid-row-end: span 4;
    }

    .gc-xl-5 {
        grid-column-start: 5;
    }

    .gr-xl-5 {
        grid-row-start: 5;
    }

    .gw-xl-5 {
        grid-column-end: span 5;
    }

    .gh-xl-5 {
        grid-row-end: span 5;
    }

    .gc-xl-6 {
        grid-column-start: 6;
    }

    .gr-xl-6 {
        grid-row-start: 6;
    }

    .gw-xl-6 {
        grid-column-end: span 6;
    }

    .gh-xl-6 {
        grid-row-end: span 6;
    }

    .gc-xl-7 {
        grid-column-start: 7;
    }

    .gr-xl-7 {
        grid-row-start: 7;
    }

    .gw-xl-7 {
        grid-column-end: span 7;
    }

    .gh-xl-7 {
        grid-row-end: span 7;
    }

    .gc-xl-8 {
        grid-column-start: 8;
    }

    .gr-xl-8 {
        grid-row-start: 8;
    }

    .gw-xl-8 {
        grid-column-end: span 8;
    }

    .gh-xl-8 {
        grid-row-end: span 8;
    }

    .gc-xl-9 {
        grid-column-start: 9;
    }

    .gr-xl-9 {
        grid-row-start: 9;
    }

    .gw-xl-9 {
        grid-column-end: span 9;
    }

    .gh-xl-9 {
        grid-row-end: span 9;
    }

    .gc-xl-10 {
        grid-column-start: 10;
    }

    .gr-xl-10 {
        grid-row-start: 10;
    }

    .gw-xl-10 {
        grid-column-end: span 10;
    }

    .gh-xl-10 {
        grid-row-end: span 10;
    }

    .gc-xl-11 {
        grid-column-start: 11;
    }

    .gr-xl-11 {
        grid-row-start: 11;
    }

    .gw-xl-11 {
        grid-column-end: span 11;
    }

    .gh-xl-11 {
        grid-row-end: span 11;
    }

    .gc-xl-12 {
        grid-column-start: 12;
    }

    .gr-xl-12 {
        grid-row-start: 12;
    }

    .gw-xl-12 {
        grid-column-end: span 12;
    }

    .gh-xl-12 {
        grid-row-end: span 12;
    }
}

@media (min-width: 1400px) {
    .grid-xxl-column {
        grid-auto-flow: column !important;
    }

    .grid-xxl-row {
        grid-auto-flow: row !important;
    }

    .grid-xxl-dense {
        grid-auto-flow: dense !important;
    }

    .grid-rows-xxl-1 {
        grid-template-rows: 1fr;
    }

    .grid-cols-xxl-1 {
        grid-template-columns: 1fr;
    }

    .grid-rows-xxl-2 {
        grid-template-rows: 1fr 1fr;
    }

    .grid-cols-xxl-2 {
        grid-template-columns: 1fr 1fr;
    }

    .grid-rows-xxl-3 {
        grid-template-rows: 1fr 1fr 1fr;
    }

    .grid-cols-xxl-3 {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .grid-rows-xxl-4 {
        grid-template-rows: 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xxl-4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xxl-5 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xxl-5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xxl-6 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xxl-6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xxl-7 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xxl-7 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xxl-8 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xxl-8 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xxl-9 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xxl-9 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xxl-10 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xxl-10 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xxl-11 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xxl-11 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-rows-xxl-12 {
        grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .grid-cols-xxl-12 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    }

    .gc-xxl-1 {
        grid-column-start: 1;
    }

    .gr-xxl-1 {
        grid-row-start: 1;
    }

    .gw-xxl-1 {
        grid-column-end: span 1;
    }

    .gh-xxl-1 {
        grid-row-end: span 1;
    }

    .gc-xxl-2 {
        grid-column-start: 2;
    }

    .gr-xxl-2 {
        grid-row-start: 2;
    }

    .gw-xxl-2 {
        grid-column-end: span 2;
    }

    .gh-xxl-2 {
        grid-row-end: span 2;
    }

    .gc-xxl-3 {
        grid-column-start: 3;
    }

    .gr-xxl-3 {
        grid-row-start: 3;
    }

    .gw-xxl-3 {
        grid-column-end: span 3;
    }

    .gh-xxl-3 {
        grid-row-end: span 3;
    }

    .gc-xxl-4 {
        grid-column-start: 4;
    }

    .gr-xxl-4 {
        grid-row-start: 4;
    }

    .gw-xxl-4 {
        grid-column-end: span 4;
    }

    .gh-xxl-4 {
        grid-row-end: span 4;
    }

    .gc-xxl-5 {
        grid-column-start: 5;
    }

    .gr-xxl-5 {
        grid-row-start: 5;
    }

    .gw-xxl-5 {
        grid-column-end: span 5;
    }

    .gh-xxl-5 {
        grid-row-end: span 5;
    }

    .gc-xxl-6 {
        grid-column-start: 6;
    }

    .gr-xxl-6 {
        grid-row-start: 6;
    }

    .gw-xxl-6 {
        grid-column-end: span 6;
    }

    .gh-xxl-6 {
        grid-row-end: span 6;
    }

    .gc-xxl-7 {
        grid-column-start: 7;
    }

    .gr-xxl-7 {
        grid-row-start: 7;
    }

    .gw-xxl-7 {
        grid-column-end: span 7;
    }

    .gh-xxl-7 {
        grid-row-end: span 7;
    }

    .gc-xxl-8 {
        grid-column-start: 8;
    }

    .gr-xxl-8 {
        grid-row-start: 8;
    }

    .gw-xxl-8 {
        grid-column-end: span 8;
    }

    .gh-xxl-8 {
        grid-row-end: span 8;
    }

    .gc-xxl-9 {
        grid-column-start: 9;
    }

    .gr-xxl-9 {
        grid-row-start: 9;
    }

    .gw-xxl-9 {
        grid-column-end: span 9;
    }

    .gh-xxl-9 {
        grid-row-end: span 9;
    }

    .gc-xxl-10 {
        grid-column-start: 10;
    }

    .gr-xxl-10 {
        grid-row-start: 10;
    }

    .gw-xxl-10 {
        grid-column-end: span 10;
    }

    .gh-xxl-10 {
        grid-row-end: span 10;
    }

    .gc-xxl-11 {
        grid-column-start: 11;
    }

    .gr-xxl-11 {
        grid-row-start: 11;
    }

    .gw-xxl-11 {
        grid-column-end: span 11;
    }

    .gh-xxl-11 {
        grid-row-end: span 11;
    }

    .gc-xxl-12 {
        grid-column-start: 12;
    }

    .gr-xxl-12 {
        grid-row-start: 12;
    }

    .gw-xxl-12 {
        grid-column-end: span 12;
    }

    .gh-xxl-12 {
        grid-row-end: span 12;
    }
}

/** var root**/
/** breakpoints **/
/** spacing margin padding **/
.align-items-center {
    align-items: center !important;
}

.align-items-flex-start {
    align-items: flex-start !important;
}

.align-items-flex-end {
    align-items: flex-end !important;
}

@media (min-width: 320px) {
    .align-items-xs-center {
        align-items: center !important;
    }

    .align-items-xs-flex-start {
        align-items: flex-start !important;
    }

    .align-items-xs-flex-end {
        align-items: flex-end !important;
    }
}

@media (min-width: 576px) {
    .align-items-sm-center {
        align-items: center !important;
    }

    .align-items-sm-flex-start {
        align-items: flex-start !important;
    }

    .align-items-sm-flex-end {
        align-items: flex-end !important;
    }
}

@media (min-width: 768px) {
    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-flex-start {
        align-items: flex-start !important;
    }

    .align-items-md-flex-end {
        align-items: flex-end !important;
    }
}

@media (min-width: 992px) {
    .align-items-lg-center {
        align-items: center !important;
    }

    .align-items-lg-flex-start {
        align-items: flex-start !important;
    }

    .align-items-lg-flex-end {
        align-items: flex-end !important;
    }
}

@media (min-width: 1200px) {
    .align-items-xl-center {
        align-items: center !important;
    }

    .align-items-xl-flex-start {
        align-items: flex-start !important;
    }

    .align-items-xl-flex-end {
        align-items: flex-end !important;
    }
}

@media (min-width: 1400px) {
    .align-items-xxl-center {
        align-items: center !important;
    }

    .align-items-xxl-flex-start {
        align-items: flex-start !important;
    }

    .align-items-xxl-flex-end {
        align-items: flex-end !important;
    }
}

.justify-content-flex-start {
    justify-content: flex-start !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-flex-end {
    justify-content: flex-end !important;
}

.justify-content-space-between {
    justify-content: space-between !important;
}

.justify-content-space-around {
    justify-content: space-around !important;
}

@media (min-width: 320px) {
    .justify-content-xs-flex-start {
        justify-content: flex-start !important;
    }

    .justify-content-xs-center {
        justify-content: center !important;
    }

    .justify-content-xs-flex-end {
        justify-content: flex-end !important;
    }

    .justify-content-xs-space-between {
        justify-content: space-between !important;
    }

    .justify-content-xs-space-around {
        justify-content: space-around !important;
    }
}

@media (min-width: 576px) {
    .justify-content-sm-flex-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-flex-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-space-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-space-around {
        justify-content: space-around !important;
    }
}

@media (min-width: 768px) {
    .justify-content-md-flex-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-flex-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-space-between {
        justify-content: space-between !important;
    }

    .justify-content-md-space-around {
        justify-content: space-around !important;
    }
}

@media (min-width: 992px) {
    .justify-content-lg-flex-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-flex-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-space-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-space-around {
        justify-content: space-around !important;
    }
}

@media (min-width: 1200px) {
    .justify-content-xl-flex-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-flex-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-space-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-space-around {
        justify-content: space-around !important;
    }
}

@media (min-width: 1400px) {
    .justify-content-xxl-flex-start {
        justify-content: flex-start !important;
    }

    .justify-content-xxl-center {
        justify-content: center !important;
    }

    .justify-content-xxl-flex-end {
        justify-content: flex-end !important;
    }

    .justify-content-xxl-space-between {
        justify-content: space-between !important;
    }

    .justify-content-xxl-space-around {
        justify-content: space-around !important;
    }
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

@media (min-width: 320px) {
    .flex-xs-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xs-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xs-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
}

@media (min-width: 576px) {
    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
}

@media (min-width: 768px) {
    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
}

@media (min-width: 1400px) {
    .flex-xxl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }
}

.flex-column {
    flex-direction: column !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

@media (min-width: 320px) {
    .flex-xs-column {
        flex-direction: column !important;
    }

    .flex-xs-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xs-row {
        flex-direction: row !important;
    }

    .flex-xs-row-reverse {
        flex-direction: row-reverse !important;
    }
}

@media (min-width: 576px) {
    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }
}

@media (min-width: 768px) {
    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }
}

@media (min-width: 992px) {
    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }
}

@media (min-width: 1200px) {
    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }
}

@media (min-width: 1400px) {
    .flex-xxl-column {
        flex-direction: column !important;
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xxl-row {
        flex-direction: row !important;
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important;
    }
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    color: inherit;
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

b, strong {
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    max-height: 100%;
    max-width: 100%;
    border-style: none;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
    -webkit-appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type=checkbox], [type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/** var root**/
/** breakpoints **/
/** spacing margin padding **/
.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-6 {
    order: 6 !important;
}

.order-7 {
    order: 7 !important;
}

.order-8 {
    order: 8 !important;
}

.order-9 {
    order: 9 !important;
}

.order-10 {
    order: 10 !important;
}

.order-11 {
    order: 11 !important;
}

.order-12 {
    order: 12 !important;
}

.order-13 {
    order: 13 !important;
}

.order-14 {
    order: 14 !important;
}

.order-15 {
    order: 15 !important;
}

.order-16 {
    order: 16 !important;
}

.order-17 {
    order: 17 !important;
}

.order-18 {
    order: 18 !important;
}

.order-19 {
    order: 19 !important;
}

.order-20 {
    order: 20 !important;
}

.order-21 {
    order: 21 !important;
}

.order-22 {
    order: 22 !important;
}

.order-23 {
    order: 23 !important;
}

.order-24 {
    order: 24 !important;
}

.order-25 {
    order: 25 !important;
}

.order-26 {
    order: 26 !important;
}

.order-27 {
    order: 27 !important;
}

.order-28 {
    order: 28 !important;
}

.order-29 {
    order: 29 !important;
}

.order-30 {
    order: 30 !important;
}

.order-31 {
    order: 31 !important;
}

.order-32 {
    order: 32 !important;
}

.order-33 {
    order: 33 !important;
}

.order-34 {
    order: 34 !important;
}

.order-35 {
    order: 35 !important;
}

.order-36 {
    order: 36 !important;
}

.order-37 {
    order: 37 !important;
}

.order-38 {
    order: 38 !important;
}

.order-39 {
    order: 39 !important;
}

.order-40 {
    order: 40 !important;
}

.order-41 {
    order: 41 !important;
}

.order-42 {
    order: 42 !important;
}

.order-43 {
    order: 43 !important;
}

.order-44 {
    order: 44 !important;
}

.order-45 {
    order: 45 !important;
}

.order-46 {
    order: 46 !important;
}

.order-47 {
    order: 47 !important;
}

.order-48 {
    order: 48 !important;
}

.order-49 {
    order: 49 !important;
}

.order-50 {
    order: 50 !important;
}

.order-51 {
    order: 51 !important;
}

.order-52 {
    order: 52 !important;
}

.order-53 {
    order: 53 !important;
}

.order-54 {
    order: 54 !important;
}

.order-55 {
    order: 55 !important;
}

.order-56 {
    order: 56 !important;
}

.order-57 {
    order: 57 !important;
}

.order-58 {
    order: 58 !important;
}

.order-59 {
    order: 59 !important;
}

.order-60 {
    order: 60 !important;
}

.order-61 {
    order: 61 !important;
}

.order-62 {
    order: 62 !important;
}

.order-63 {
    order: 63 !important;
}

.order-64 {
    order: 64 !important;
}

.order-65 {
    order: 65 !important;
}

.order-66 {
    order: 66 !important;
}

.order-67 {
    order: 67 !important;
}

.order-68 {
    order: 68 !important;
}

.order-69 {
    order: 69 !important;
}

.order-70 {
    order: 70 !important;
}

.order-71 {
    order: 71 !important;
}

.order-72 {
    order: 72 !important;
}

.order-73 {
    order: 73 !important;
}

.order-74 {
    order: 74 !important;
}

.order-75 {
    order: 75 !important;
}

.order-76 {
    order: 76 !important;
}

.order-77 {
    order: 77 !important;
}

.order-78 {
    order: 78 !important;
}

.order-79 {
    order: 79 !important;
}

.order-80 {
    order: 80 !important;
}

.order-81 {
    order: 81 !important;
}

.order-82 {
    order: 82 !important;
}

.order-83 {
    order: 83 !important;
}

.order-84 {
    order: 84 !important;
}

.order-85 {
    order: 85 !important;
}

.order-86 {
    order: 86 !important;
}

.order-87 {
    order: 87 !important;
}

.order-88 {
    order: 88 !important;
}

.order-89 {
    order: 89 !important;
}

.order-90 {
    order: 90 !important;
}

.order-91 {
    order: 91 !important;
}

.order-92 {
    order: 92 !important;
}

.order-93 {
    order: 93 !important;
}

.order-94 {
    order: 94 !important;
}

.order-95 {
    order: 95 !important;
}

.order-96 {
    order: 96 !important;
}

.order-97 {
    order: 97 !important;
}

.order-98 {
    order: 98 !important;
}

.order-99 {
    order: 99 !important;
}

.order-100 {
    order: 100 !important;
}

@media (min-width: 320px) {
    .order-xs-1 {
        order: 1 !important;
    }

    .order-xs-2 {
        order: 2 !important;
    }

    .order-xs-3 {
        order: 3 !important;
    }

    .order-xs-4 {
        order: 4 !important;
    }

    .order-xs-5 {
        order: 5 !important;
    }

    .order-xs-6 {
        order: 6 !important;
    }

    .order-xs-7 {
        order: 7 !important;
    }

    .order-xs-8 {
        order: 8 !important;
    }

    .order-xs-9 {
        order: 9 !important;
    }

    .order-xs-10 {
        order: 10 !important;
    }

    .order-xs-11 {
        order: 11 !important;
    }

    .order-xs-12 {
        order: 12 !important;
    }

    .order-xs-13 {
        order: 13 !important;
    }

    .order-xs-14 {
        order: 14 !important;
    }

    .order-xs-15 {
        order: 15 !important;
    }

    .order-xs-16 {
        order: 16 !important;
    }

    .order-xs-17 {
        order: 17 !important;
    }

    .order-xs-18 {
        order: 18 !important;
    }

    .order-xs-19 {
        order: 19 !important;
    }

    .order-xs-20 {
        order: 20 !important;
    }

    .order-xs-21 {
        order: 21 !important;
    }

    .order-xs-22 {
        order: 22 !important;
    }

    .order-xs-23 {
        order: 23 !important;
    }

    .order-xs-24 {
        order: 24 !important;
    }

    .order-xs-25 {
        order: 25 !important;
    }

    .order-xs-26 {
        order: 26 !important;
    }

    .order-xs-27 {
        order: 27 !important;
    }

    .order-xs-28 {
        order: 28 !important;
    }

    .order-xs-29 {
        order: 29 !important;
    }

    .order-xs-30 {
        order: 30 !important;
    }

    .order-xs-31 {
        order: 31 !important;
    }

    .order-xs-32 {
        order: 32 !important;
    }

    .order-xs-33 {
        order: 33 !important;
    }

    .order-xs-34 {
        order: 34 !important;
    }

    .order-xs-35 {
        order: 35 !important;
    }

    .order-xs-36 {
        order: 36 !important;
    }

    .order-xs-37 {
        order: 37 !important;
    }

    .order-xs-38 {
        order: 38 !important;
    }

    .order-xs-39 {
        order: 39 !important;
    }

    .order-xs-40 {
        order: 40 !important;
    }

    .order-xs-41 {
        order: 41 !important;
    }

    .order-xs-42 {
        order: 42 !important;
    }

    .order-xs-43 {
        order: 43 !important;
    }

    .order-xs-44 {
        order: 44 !important;
    }

    .order-xs-45 {
        order: 45 !important;
    }

    .order-xs-46 {
        order: 46 !important;
    }

    .order-xs-47 {
        order: 47 !important;
    }

    .order-xs-48 {
        order: 48 !important;
    }

    .order-xs-49 {
        order: 49 !important;
    }

    .order-xs-50 {
        order: 50 !important;
    }

    .order-xs-51 {
        order: 51 !important;
    }

    .order-xs-52 {
        order: 52 !important;
    }

    .order-xs-53 {
        order: 53 !important;
    }

    .order-xs-54 {
        order: 54 !important;
    }

    .order-xs-55 {
        order: 55 !important;
    }

    .order-xs-56 {
        order: 56 !important;
    }

    .order-xs-57 {
        order: 57 !important;
    }

    .order-xs-58 {
        order: 58 !important;
    }

    .order-xs-59 {
        order: 59 !important;
    }

    .order-xs-60 {
        order: 60 !important;
    }

    .order-xs-61 {
        order: 61 !important;
    }

    .order-xs-62 {
        order: 62 !important;
    }

    .order-xs-63 {
        order: 63 !important;
    }

    .order-xs-64 {
        order: 64 !important;
    }

    .order-xs-65 {
        order: 65 !important;
    }

    .order-xs-66 {
        order: 66 !important;
    }

    .order-xs-67 {
        order: 67 !important;
    }

    .order-xs-68 {
        order: 68 !important;
    }

    .order-xs-69 {
        order: 69 !important;
    }

    .order-xs-70 {
        order: 70 !important;
    }

    .order-xs-71 {
        order: 71 !important;
    }

    .order-xs-72 {
        order: 72 !important;
    }

    .order-xs-73 {
        order: 73 !important;
    }

    .order-xs-74 {
        order: 74 !important;
    }

    .order-xs-75 {
        order: 75 !important;
    }

    .order-xs-76 {
        order: 76 !important;
    }

    .order-xs-77 {
        order: 77 !important;
    }

    .order-xs-78 {
        order: 78 !important;
    }

    .order-xs-79 {
        order: 79 !important;
    }

    .order-xs-80 {
        order: 80 !important;
    }

    .order-xs-81 {
        order: 81 !important;
    }

    .order-xs-82 {
        order: 82 !important;
    }

    .order-xs-83 {
        order: 83 !important;
    }

    .order-xs-84 {
        order: 84 !important;
    }

    .order-xs-85 {
        order: 85 !important;
    }

    .order-xs-86 {
        order: 86 !important;
    }

    .order-xs-87 {
        order: 87 !important;
    }

    .order-xs-88 {
        order: 88 !important;
    }

    .order-xs-89 {
        order: 89 !important;
    }

    .order-xs-90 {
        order: 90 !important;
    }

    .order-xs-91 {
        order: 91 !important;
    }

    .order-xs-92 {
        order: 92 !important;
    }

    .order-xs-93 {
        order: 93 !important;
    }

    .order-xs-94 {
        order: 94 !important;
    }

    .order-xs-95 {
        order: 95 !important;
    }

    .order-xs-96 {
        order: 96 !important;
    }

    .order-xs-97 {
        order: 97 !important;
    }

    .order-xs-98 {
        order: 98 !important;
    }

    .order-xs-99 {
        order: 99 !important;
    }

    .order-xs-100 {
        order: 100 !important;
    }
}

@media (min-width: 576px) {
    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-6 {
        order: 6 !important;
    }

    .order-sm-7 {
        order: 7 !important;
    }

    .order-sm-8 {
        order: 8 !important;
    }

    .order-sm-9 {
        order: 9 !important;
    }

    .order-sm-10 {
        order: 10 !important;
    }

    .order-sm-11 {
        order: 11 !important;
    }

    .order-sm-12 {
        order: 12 !important;
    }

    .order-sm-13 {
        order: 13 !important;
    }

    .order-sm-14 {
        order: 14 !important;
    }

    .order-sm-15 {
        order: 15 !important;
    }

    .order-sm-16 {
        order: 16 !important;
    }

    .order-sm-17 {
        order: 17 !important;
    }

    .order-sm-18 {
        order: 18 !important;
    }

    .order-sm-19 {
        order: 19 !important;
    }

    .order-sm-20 {
        order: 20 !important;
    }

    .order-sm-21 {
        order: 21 !important;
    }

    .order-sm-22 {
        order: 22 !important;
    }

    .order-sm-23 {
        order: 23 !important;
    }

    .order-sm-24 {
        order: 24 !important;
    }

    .order-sm-25 {
        order: 25 !important;
    }

    .order-sm-26 {
        order: 26 !important;
    }

    .order-sm-27 {
        order: 27 !important;
    }

    .order-sm-28 {
        order: 28 !important;
    }

    .order-sm-29 {
        order: 29 !important;
    }

    .order-sm-30 {
        order: 30 !important;
    }

    .order-sm-31 {
        order: 31 !important;
    }

    .order-sm-32 {
        order: 32 !important;
    }

    .order-sm-33 {
        order: 33 !important;
    }

    .order-sm-34 {
        order: 34 !important;
    }

    .order-sm-35 {
        order: 35 !important;
    }

    .order-sm-36 {
        order: 36 !important;
    }

    .order-sm-37 {
        order: 37 !important;
    }

    .order-sm-38 {
        order: 38 !important;
    }

    .order-sm-39 {
        order: 39 !important;
    }

    .order-sm-40 {
        order: 40 !important;
    }

    .order-sm-41 {
        order: 41 !important;
    }

    .order-sm-42 {
        order: 42 !important;
    }

    .order-sm-43 {
        order: 43 !important;
    }

    .order-sm-44 {
        order: 44 !important;
    }

    .order-sm-45 {
        order: 45 !important;
    }

    .order-sm-46 {
        order: 46 !important;
    }

    .order-sm-47 {
        order: 47 !important;
    }

    .order-sm-48 {
        order: 48 !important;
    }

    .order-sm-49 {
        order: 49 !important;
    }

    .order-sm-50 {
        order: 50 !important;
    }

    .order-sm-51 {
        order: 51 !important;
    }

    .order-sm-52 {
        order: 52 !important;
    }

    .order-sm-53 {
        order: 53 !important;
    }

    .order-sm-54 {
        order: 54 !important;
    }

    .order-sm-55 {
        order: 55 !important;
    }

    .order-sm-56 {
        order: 56 !important;
    }

    .order-sm-57 {
        order: 57 !important;
    }

    .order-sm-58 {
        order: 58 !important;
    }

    .order-sm-59 {
        order: 59 !important;
    }

    .order-sm-60 {
        order: 60 !important;
    }

    .order-sm-61 {
        order: 61 !important;
    }

    .order-sm-62 {
        order: 62 !important;
    }

    .order-sm-63 {
        order: 63 !important;
    }

    .order-sm-64 {
        order: 64 !important;
    }

    .order-sm-65 {
        order: 65 !important;
    }

    .order-sm-66 {
        order: 66 !important;
    }

    .order-sm-67 {
        order: 67 !important;
    }

    .order-sm-68 {
        order: 68 !important;
    }

    .order-sm-69 {
        order: 69 !important;
    }

    .order-sm-70 {
        order: 70 !important;
    }

    .order-sm-71 {
        order: 71 !important;
    }

    .order-sm-72 {
        order: 72 !important;
    }

    .order-sm-73 {
        order: 73 !important;
    }

    .order-sm-74 {
        order: 74 !important;
    }

    .order-sm-75 {
        order: 75 !important;
    }

    .order-sm-76 {
        order: 76 !important;
    }

    .order-sm-77 {
        order: 77 !important;
    }

    .order-sm-78 {
        order: 78 !important;
    }

    .order-sm-79 {
        order: 79 !important;
    }

    .order-sm-80 {
        order: 80 !important;
    }

    .order-sm-81 {
        order: 81 !important;
    }

    .order-sm-82 {
        order: 82 !important;
    }

    .order-sm-83 {
        order: 83 !important;
    }

    .order-sm-84 {
        order: 84 !important;
    }

    .order-sm-85 {
        order: 85 !important;
    }

    .order-sm-86 {
        order: 86 !important;
    }

    .order-sm-87 {
        order: 87 !important;
    }

    .order-sm-88 {
        order: 88 !important;
    }

    .order-sm-89 {
        order: 89 !important;
    }

    .order-sm-90 {
        order: 90 !important;
    }

    .order-sm-91 {
        order: 91 !important;
    }

    .order-sm-92 {
        order: 92 !important;
    }

    .order-sm-93 {
        order: 93 !important;
    }

    .order-sm-94 {
        order: 94 !important;
    }

    .order-sm-95 {
        order: 95 !important;
    }

    .order-sm-96 {
        order: 96 !important;
    }

    .order-sm-97 {
        order: 97 !important;
    }

    .order-sm-98 {
        order: 98 !important;
    }

    .order-sm-99 {
        order: 99 !important;
    }

    .order-sm-100 {
        order: 100 !important;
    }
}

@media (min-width: 768px) {
    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-6 {
        order: 6 !important;
    }

    .order-md-7 {
        order: 7 !important;
    }

    .order-md-8 {
        order: 8 !important;
    }

    .order-md-9 {
        order: 9 !important;
    }

    .order-md-10 {
        order: 10 !important;
    }

    .order-md-11 {
        order: 11 !important;
    }

    .order-md-12 {
        order: 12 !important;
    }

    .order-md-13 {
        order: 13 !important;
    }

    .order-md-14 {
        order: 14 !important;
    }

    .order-md-15 {
        order: 15 !important;
    }

    .order-md-16 {
        order: 16 !important;
    }

    .order-md-17 {
        order: 17 !important;
    }

    .order-md-18 {
        order: 18 !important;
    }

    .order-md-19 {
        order: 19 !important;
    }

    .order-md-20 {
        order: 20 !important;
    }

    .order-md-21 {
        order: 21 !important;
    }

    .order-md-22 {
        order: 22 !important;
    }

    .order-md-23 {
        order: 23 !important;
    }

    .order-md-24 {
        order: 24 !important;
    }

    .order-md-25 {
        order: 25 !important;
    }

    .order-md-26 {
        order: 26 !important;
    }

    .order-md-27 {
        order: 27 !important;
    }

    .order-md-28 {
        order: 28 !important;
    }

    .order-md-29 {
        order: 29 !important;
    }

    .order-md-30 {
        order: 30 !important;
    }

    .order-md-31 {
        order: 31 !important;
    }

    .order-md-32 {
        order: 32 !important;
    }

    .order-md-33 {
        order: 33 !important;
    }

    .order-md-34 {
        order: 34 !important;
    }

    .order-md-35 {
        order: 35 !important;
    }

    .order-md-36 {
        order: 36 !important;
    }

    .order-md-37 {
        order: 37 !important;
    }

    .order-md-38 {
        order: 38 !important;
    }

    .order-md-39 {
        order: 39 !important;
    }

    .order-md-40 {
        order: 40 !important;
    }

    .order-md-41 {
        order: 41 !important;
    }

    .order-md-42 {
        order: 42 !important;
    }

    .order-md-43 {
        order: 43 !important;
    }

    .order-md-44 {
        order: 44 !important;
    }

    .order-md-45 {
        order: 45 !important;
    }

    .order-md-46 {
        order: 46 !important;
    }

    .order-md-47 {
        order: 47 !important;
    }

    .order-md-48 {
        order: 48 !important;
    }

    .order-md-49 {
        order: 49 !important;
    }

    .order-md-50 {
        order: 50 !important;
    }

    .order-md-51 {
        order: 51 !important;
    }

    .order-md-52 {
        order: 52 !important;
    }

    .order-md-53 {
        order: 53 !important;
    }

    .order-md-54 {
        order: 54 !important;
    }

    .order-md-55 {
        order: 55 !important;
    }

    .order-md-56 {
        order: 56 !important;
    }

    .order-md-57 {
        order: 57 !important;
    }

    .order-md-58 {
        order: 58 !important;
    }

    .order-md-59 {
        order: 59 !important;
    }

    .order-md-60 {
        order: 60 !important;
    }

    .order-md-61 {
        order: 61 !important;
    }

    .order-md-62 {
        order: 62 !important;
    }

    .order-md-63 {
        order: 63 !important;
    }

    .order-md-64 {
        order: 64 !important;
    }

    .order-md-65 {
        order: 65 !important;
    }

    .order-md-66 {
        order: 66 !important;
    }

    .order-md-67 {
        order: 67 !important;
    }

    .order-md-68 {
        order: 68 !important;
    }

    .order-md-69 {
        order: 69 !important;
    }

    .order-md-70 {
        order: 70 !important;
    }

    .order-md-71 {
        order: 71 !important;
    }

    .order-md-72 {
        order: 72 !important;
    }

    .order-md-73 {
        order: 73 !important;
    }

    .order-md-74 {
        order: 74 !important;
    }

    .order-md-75 {
        order: 75 !important;
    }

    .order-md-76 {
        order: 76 !important;
    }

    .order-md-77 {
        order: 77 !important;
    }

    .order-md-78 {
        order: 78 !important;
    }

    .order-md-79 {
        order: 79 !important;
    }

    .order-md-80 {
        order: 80 !important;
    }

    .order-md-81 {
        order: 81 !important;
    }

    .order-md-82 {
        order: 82 !important;
    }

    .order-md-83 {
        order: 83 !important;
    }

    .order-md-84 {
        order: 84 !important;
    }

    .order-md-85 {
        order: 85 !important;
    }

    .order-md-86 {
        order: 86 !important;
    }

    .order-md-87 {
        order: 87 !important;
    }

    .order-md-88 {
        order: 88 !important;
    }

    .order-md-89 {
        order: 89 !important;
    }

    .order-md-90 {
        order: 90 !important;
    }

    .order-md-91 {
        order: 91 !important;
    }

    .order-md-92 {
        order: 92 !important;
    }

    .order-md-93 {
        order: 93 !important;
    }

    .order-md-94 {
        order: 94 !important;
    }

    .order-md-95 {
        order: 95 !important;
    }

    .order-md-96 {
        order: 96 !important;
    }

    .order-md-97 {
        order: 97 !important;
    }

    .order-md-98 {
        order: 98 !important;
    }

    .order-md-99 {
        order: 99 !important;
    }

    .order-md-100 {
        order: 100 !important;
    }
}

@media (min-width: 992px) {
    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-6 {
        order: 6 !important;
    }

    .order-lg-7 {
        order: 7 !important;
    }

    .order-lg-8 {
        order: 8 !important;
    }

    .order-lg-9 {
        order: 9 !important;
    }

    .order-lg-10 {
        order: 10 !important;
    }

    .order-lg-11 {
        order: 11 !important;
    }

    .order-lg-12 {
        order: 12 !important;
    }

    .order-lg-13 {
        order: 13 !important;
    }

    .order-lg-14 {
        order: 14 !important;
    }

    .order-lg-15 {
        order: 15 !important;
    }

    .order-lg-16 {
        order: 16 !important;
    }

    .order-lg-17 {
        order: 17 !important;
    }

    .order-lg-18 {
        order: 18 !important;
    }

    .order-lg-19 {
        order: 19 !important;
    }

    .order-lg-20 {
        order: 20 !important;
    }

    .order-lg-21 {
        order: 21 !important;
    }

    .order-lg-22 {
        order: 22 !important;
    }

    .order-lg-23 {
        order: 23 !important;
    }

    .order-lg-24 {
        order: 24 !important;
    }

    .order-lg-25 {
        order: 25 !important;
    }

    .order-lg-26 {
        order: 26 !important;
    }

    .order-lg-27 {
        order: 27 !important;
    }

    .order-lg-28 {
        order: 28 !important;
    }

    .order-lg-29 {
        order: 29 !important;
    }

    .order-lg-30 {
        order: 30 !important;
    }

    .order-lg-31 {
        order: 31 !important;
    }

    .order-lg-32 {
        order: 32 !important;
    }

    .order-lg-33 {
        order: 33 !important;
    }

    .order-lg-34 {
        order: 34 !important;
    }

    .order-lg-35 {
        order: 35 !important;
    }

    .order-lg-36 {
        order: 36 !important;
    }

    .order-lg-37 {
        order: 37 !important;
    }

    .order-lg-38 {
        order: 38 !important;
    }

    .order-lg-39 {
        order: 39 !important;
    }

    .order-lg-40 {
        order: 40 !important;
    }

    .order-lg-41 {
        order: 41 !important;
    }

    .order-lg-42 {
        order: 42 !important;
    }

    .order-lg-43 {
        order: 43 !important;
    }

    .order-lg-44 {
        order: 44 !important;
    }

    .order-lg-45 {
        order: 45 !important;
    }

    .order-lg-46 {
        order: 46 !important;
    }

    .order-lg-47 {
        order: 47 !important;
    }

    .order-lg-48 {
        order: 48 !important;
    }

    .order-lg-49 {
        order: 49 !important;
    }

    .order-lg-50 {
        order: 50 !important;
    }

    .order-lg-51 {
        order: 51 !important;
    }

    .order-lg-52 {
        order: 52 !important;
    }

    .order-lg-53 {
        order: 53 !important;
    }

    .order-lg-54 {
        order: 54 !important;
    }

    .order-lg-55 {
        order: 55 !important;
    }

    .order-lg-56 {
        order: 56 !important;
    }

    .order-lg-57 {
        order: 57 !important;
    }

    .order-lg-58 {
        order: 58 !important;
    }

    .order-lg-59 {
        order: 59 !important;
    }

    .order-lg-60 {
        order: 60 !important;
    }

    .order-lg-61 {
        order: 61 !important;
    }

    .order-lg-62 {
        order: 62 !important;
    }

    .order-lg-63 {
        order: 63 !important;
    }

    .order-lg-64 {
        order: 64 !important;
    }

    .order-lg-65 {
        order: 65 !important;
    }

    .order-lg-66 {
        order: 66 !important;
    }

    .order-lg-67 {
        order: 67 !important;
    }

    .order-lg-68 {
        order: 68 !important;
    }

    .order-lg-69 {
        order: 69 !important;
    }

    .order-lg-70 {
        order: 70 !important;
    }

    .order-lg-71 {
        order: 71 !important;
    }

    .order-lg-72 {
        order: 72 !important;
    }

    .order-lg-73 {
        order: 73 !important;
    }

    .order-lg-74 {
        order: 74 !important;
    }

    .order-lg-75 {
        order: 75 !important;
    }

    .order-lg-76 {
        order: 76 !important;
    }

    .order-lg-77 {
        order: 77 !important;
    }

    .order-lg-78 {
        order: 78 !important;
    }

    .order-lg-79 {
        order: 79 !important;
    }

    .order-lg-80 {
        order: 80 !important;
    }

    .order-lg-81 {
        order: 81 !important;
    }

    .order-lg-82 {
        order: 82 !important;
    }

    .order-lg-83 {
        order: 83 !important;
    }

    .order-lg-84 {
        order: 84 !important;
    }

    .order-lg-85 {
        order: 85 !important;
    }

    .order-lg-86 {
        order: 86 !important;
    }

    .order-lg-87 {
        order: 87 !important;
    }

    .order-lg-88 {
        order: 88 !important;
    }

    .order-lg-89 {
        order: 89 !important;
    }

    .order-lg-90 {
        order: 90 !important;
    }

    .order-lg-91 {
        order: 91 !important;
    }

    .order-lg-92 {
        order: 92 !important;
    }

    .order-lg-93 {
        order: 93 !important;
    }

    .order-lg-94 {
        order: 94 !important;
    }

    .order-lg-95 {
        order: 95 !important;
    }

    .order-lg-96 {
        order: 96 !important;
    }

    .order-lg-97 {
        order: 97 !important;
    }

    .order-lg-98 {
        order: 98 !important;
    }

    .order-lg-99 {
        order: 99 !important;
    }

    .order-lg-100 {
        order: 100 !important;
    }
}

@media (min-width: 1200px) {
    .order-xl-1 {
        order: 1 !important;
    }

    .order-xl-2 {
        order: 2 !important;
    }

    .order-xl-3 {
        order: 3 !important;
    }

    .order-xl-4 {
        order: 4 !important;
    }

    .order-xl-5 {
        order: 5 !important;
    }

    .order-xl-6 {
        order: 6 !important;
    }

    .order-xl-7 {
        order: 7 !important;
    }

    .order-xl-8 {
        order: 8 !important;
    }

    .order-xl-9 {
        order: 9 !important;
    }

    .order-xl-10 {
        order: 10 !important;
    }

    .order-xl-11 {
        order: 11 !important;
    }

    .order-xl-12 {
        order: 12 !important;
    }

    .order-xl-13 {
        order: 13 !important;
    }

    .order-xl-14 {
        order: 14 !important;
    }

    .order-xl-15 {
        order: 15 !important;
    }

    .order-xl-16 {
        order: 16 !important;
    }

    .order-xl-17 {
        order: 17 !important;
    }

    .order-xl-18 {
        order: 18 !important;
    }

    .order-xl-19 {
        order: 19 !important;
    }

    .order-xl-20 {
        order: 20 !important;
    }

    .order-xl-21 {
        order: 21 !important;
    }

    .order-xl-22 {
        order: 22 !important;
    }

    .order-xl-23 {
        order: 23 !important;
    }

    .order-xl-24 {
        order: 24 !important;
    }

    .order-xl-25 {
        order: 25 !important;
    }

    .order-xl-26 {
        order: 26 !important;
    }

    .order-xl-27 {
        order: 27 !important;
    }

    .order-xl-28 {
        order: 28 !important;
    }

    .order-xl-29 {
        order: 29 !important;
    }

    .order-xl-30 {
        order: 30 !important;
    }

    .order-xl-31 {
        order: 31 !important;
    }

    .order-xl-32 {
        order: 32 !important;
    }

    .order-xl-33 {
        order: 33 !important;
    }

    .order-xl-34 {
        order: 34 !important;
    }

    .order-xl-35 {
        order: 35 !important;
    }

    .order-xl-36 {
        order: 36 !important;
    }

    .order-xl-37 {
        order: 37 !important;
    }

    .order-xl-38 {
        order: 38 !important;
    }

    .order-xl-39 {
        order: 39 !important;
    }

    .order-xl-40 {
        order: 40 !important;
    }

    .order-xl-41 {
        order: 41 !important;
    }

    .order-xl-42 {
        order: 42 !important;
    }

    .order-xl-43 {
        order: 43 !important;
    }

    .order-xl-44 {
        order: 44 !important;
    }

    .order-xl-45 {
        order: 45 !important;
    }

    .order-xl-46 {
        order: 46 !important;
    }

    .order-xl-47 {
        order: 47 !important;
    }

    .order-xl-48 {
        order: 48 !important;
    }

    .order-xl-49 {
        order: 49 !important;
    }

    .order-xl-50 {
        order: 50 !important;
    }

    .order-xl-51 {
        order: 51 !important;
    }

    .order-xl-52 {
        order: 52 !important;
    }

    .order-xl-53 {
        order: 53 !important;
    }

    .order-xl-54 {
        order: 54 !important;
    }

    .order-xl-55 {
        order: 55 !important;
    }

    .order-xl-56 {
        order: 56 !important;
    }

    .order-xl-57 {
        order: 57 !important;
    }

    .order-xl-58 {
        order: 58 !important;
    }

    .order-xl-59 {
        order: 59 !important;
    }

    .order-xl-60 {
        order: 60 !important;
    }

    .order-xl-61 {
        order: 61 !important;
    }

    .order-xl-62 {
        order: 62 !important;
    }

    .order-xl-63 {
        order: 63 !important;
    }

    .order-xl-64 {
        order: 64 !important;
    }

    .order-xl-65 {
        order: 65 !important;
    }

    .order-xl-66 {
        order: 66 !important;
    }

    .order-xl-67 {
        order: 67 !important;
    }

    .order-xl-68 {
        order: 68 !important;
    }

    .order-xl-69 {
        order: 69 !important;
    }

    .order-xl-70 {
        order: 70 !important;
    }

    .order-xl-71 {
        order: 71 !important;
    }

    .order-xl-72 {
        order: 72 !important;
    }

    .order-xl-73 {
        order: 73 !important;
    }

    .order-xl-74 {
        order: 74 !important;
    }

    .order-xl-75 {
        order: 75 !important;
    }

    .order-xl-76 {
        order: 76 !important;
    }

    .order-xl-77 {
        order: 77 !important;
    }

    .order-xl-78 {
        order: 78 !important;
    }

    .order-xl-79 {
        order: 79 !important;
    }

    .order-xl-80 {
        order: 80 !important;
    }

    .order-xl-81 {
        order: 81 !important;
    }

    .order-xl-82 {
        order: 82 !important;
    }

    .order-xl-83 {
        order: 83 !important;
    }

    .order-xl-84 {
        order: 84 !important;
    }

    .order-xl-85 {
        order: 85 !important;
    }

    .order-xl-86 {
        order: 86 !important;
    }

    .order-xl-87 {
        order: 87 !important;
    }

    .order-xl-88 {
        order: 88 !important;
    }

    .order-xl-89 {
        order: 89 !important;
    }

    .order-xl-90 {
        order: 90 !important;
    }

    .order-xl-91 {
        order: 91 !important;
    }

    .order-xl-92 {
        order: 92 !important;
    }

    .order-xl-93 {
        order: 93 !important;
    }

    .order-xl-94 {
        order: 94 !important;
    }

    .order-xl-95 {
        order: 95 !important;
    }

    .order-xl-96 {
        order: 96 !important;
    }

    .order-xl-97 {
        order: 97 !important;
    }

    .order-xl-98 {
        order: 98 !important;
    }

    .order-xl-99 {
        order: 99 !important;
    }

    .order-xl-100 {
        order: 100 !important;
    }
}

@media (min-width: 1400px) {
    .order-xxl-1 {
        order: 1 !important;
    }

    .order-xxl-2 {
        order: 2 !important;
    }

    .order-xxl-3 {
        order: 3 !important;
    }

    .order-xxl-4 {
        order: 4 !important;
    }

    .order-xxl-5 {
        order: 5 !important;
    }

    .order-xxl-6 {
        order: 6 !important;
    }

    .order-xxl-7 {
        order: 7 !important;
    }

    .order-xxl-8 {
        order: 8 !important;
    }

    .order-xxl-9 {
        order: 9 !important;
    }

    .order-xxl-10 {
        order: 10 !important;
    }

    .order-xxl-11 {
        order: 11 !important;
    }

    .order-xxl-12 {
        order: 12 !important;
    }

    .order-xxl-13 {
        order: 13 !important;
    }

    .order-xxl-14 {
        order: 14 !important;
    }

    .order-xxl-15 {
        order: 15 !important;
    }

    .order-xxl-16 {
        order: 16 !important;
    }

    .order-xxl-17 {
        order: 17 !important;
    }

    .order-xxl-18 {
        order: 18 !important;
    }

    .order-xxl-19 {
        order: 19 !important;
    }

    .order-xxl-20 {
        order: 20 !important;
    }

    .order-xxl-21 {
        order: 21 !important;
    }

    .order-xxl-22 {
        order: 22 !important;
    }

    .order-xxl-23 {
        order: 23 !important;
    }

    .order-xxl-24 {
        order: 24 !important;
    }

    .order-xxl-25 {
        order: 25 !important;
    }

    .order-xxl-26 {
        order: 26 !important;
    }

    .order-xxl-27 {
        order: 27 !important;
    }

    .order-xxl-28 {
        order: 28 !important;
    }

    .order-xxl-29 {
        order: 29 !important;
    }

    .order-xxl-30 {
        order: 30 !important;
    }

    .order-xxl-31 {
        order: 31 !important;
    }

    .order-xxl-32 {
        order: 32 !important;
    }

    .order-xxl-33 {
        order: 33 !important;
    }

    .order-xxl-34 {
        order: 34 !important;
    }

    .order-xxl-35 {
        order: 35 !important;
    }

    .order-xxl-36 {
        order: 36 !important;
    }

    .order-xxl-37 {
        order: 37 !important;
    }

    .order-xxl-38 {
        order: 38 !important;
    }

    .order-xxl-39 {
        order: 39 !important;
    }

    .order-xxl-40 {
        order: 40 !important;
    }

    .order-xxl-41 {
        order: 41 !important;
    }

    .order-xxl-42 {
        order: 42 !important;
    }

    .order-xxl-43 {
        order: 43 !important;
    }

    .order-xxl-44 {
        order: 44 !important;
    }

    .order-xxl-45 {
        order: 45 !important;
    }

    .order-xxl-46 {
        order: 46 !important;
    }

    .order-xxl-47 {
        order: 47 !important;
    }

    .order-xxl-48 {
        order: 48 !important;
    }

    .order-xxl-49 {
        order: 49 !important;
    }

    .order-xxl-50 {
        order: 50 !important;
    }

    .order-xxl-51 {
        order: 51 !important;
    }

    .order-xxl-52 {
        order: 52 !important;
    }

    .order-xxl-53 {
        order: 53 !important;
    }

    .order-xxl-54 {
        order: 54 !important;
    }

    .order-xxl-55 {
        order: 55 !important;
    }

    .order-xxl-56 {
        order: 56 !important;
    }

    .order-xxl-57 {
        order: 57 !important;
    }

    .order-xxl-58 {
        order: 58 !important;
    }

    .order-xxl-59 {
        order: 59 !important;
    }

    .order-xxl-60 {
        order: 60 !important;
    }

    .order-xxl-61 {
        order: 61 !important;
    }

    .order-xxl-62 {
        order: 62 !important;
    }

    .order-xxl-63 {
        order: 63 !important;
    }

    .order-xxl-64 {
        order: 64 !important;
    }

    .order-xxl-65 {
        order: 65 !important;
    }

    .order-xxl-66 {
        order: 66 !important;
    }

    .order-xxl-67 {
        order: 67 !important;
    }

    .order-xxl-68 {
        order: 68 !important;
    }

    .order-xxl-69 {
        order: 69 !important;
    }

    .order-xxl-70 {
        order: 70 !important;
    }

    .order-xxl-71 {
        order: 71 !important;
    }

    .order-xxl-72 {
        order: 72 !important;
    }

    .order-xxl-73 {
        order: 73 !important;
    }

    .order-xxl-74 {
        order: 74 !important;
    }

    .order-xxl-75 {
        order: 75 !important;
    }

    .order-xxl-76 {
        order: 76 !important;
    }

    .order-xxl-77 {
        order: 77 !important;
    }

    .order-xxl-78 {
        order: 78 !important;
    }

    .order-xxl-79 {
        order: 79 !important;
    }

    .order-xxl-80 {
        order: 80 !important;
    }

    .order-xxl-81 {
        order: 81 !important;
    }

    .order-xxl-82 {
        order: 82 !important;
    }

    .order-xxl-83 {
        order: 83 !important;
    }

    .order-xxl-84 {
        order: 84 !important;
    }

    .order-xxl-85 {
        order: 85 !important;
    }

    .order-xxl-86 {
        order: 86 !important;
    }

    .order-xxl-87 {
        order: 87 !important;
    }

    .order-xxl-88 {
        order: 88 !important;
    }

    .order-xxl-89 {
        order: 89 !important;
    }

    .order-xxl-90 {
        order: 90 !important;
    }

    .order-xxl-91 {
        order: 91 !important;
    }

    .order-xxl-92 {
        order: 92 !important;
    }

    .order-xxl-93 {
        order: 93 !important;
    }

    .order-xxl-94 {
        order: 94 !important;
    }

    .order-xxl-95 {
        order: 95 !important;
    }

    .order-xxl-96 {
        order: 96 !important;
    }

    .order-xxl-97 {
        order: 97 !important;
    }

    .order-xxl-98 {
        order: 98 !important;
    }

    .order-xxl-99 {
        order: 99 !important;
    }

    .order-xxl-100 {
        order: 100 !important;
    }
}

/** var root**/
/** breakpoints **/
/** spacing margin padding **/
.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: sticky !important;
}

@media (min-width: 320px) {
    .position-xs-static {
        position: static !important;
    }

    .position-xs-relative {
        position: relative !important;
    }

    .position-xs-absolute {
        position: absolute !important;
    }

    .position-xs-fixed {
        position: fixed !important;
    }

    .position-xs-sticky {
        position: sticky !important;
    }
}

@media (min-width: 576px) {
    .position-sm-static {
        position: static !important;
    }

    .position-sm-relative {
        position: relative !important;
    }

    .position-sm-absolute {
        position: absolute !important;
    }

    .position-sm-fixed {
        position: fixed !important;
    }

    .position-sm-sticky {
        position: sticky !important;
    }
}

@media (min-width: 768px) {
    .position-md-static {
        position: static !important;
    }

    .position-md-relative {
        position: relative !important;
    }

    .position-md-absolute {
        position: absolute !important;
    }

    .position-md-fixed {
        position: fixed !important;
    }

    .position-md-sticky {
        position: sticky !important;
    }
}

@media (min-width: 992px) {
    .position-lg-static {
        position: static !important;
    }

    .position-lg-relative {
        position: relative !important;
    }

    .position-lg-absolute {
        position: absolute !important;
    }

    .position-lg-fixed {
        position: fixed !important;
    }

    .position-lg-sticky {
        position: sticky !important;
    }
}

@media (min-width: 1200px) {
    .position-xl-static {
        position: static !important;
    }

    .position-xl-relative {
        position: relative !important;
    }

    .position-xl-absolute {
        position: absolute !important;
    }

    .position-xl-fixed {
        position: fixed !important;
    }

    .position-xl-sticky {
        position: sticky !important;
    }
}

@media (min-width: 1400px) {
    .position-xxl-static {
        position: static !important;
    }

    .position-xxl-relative {
        position: relative !important;
    }

    .position-xxl-absolute {
        position: absolute !important;
    }

    .position-xxl-fixed {
        position: fixed !important;
    }

    .position-xxl-sticky {
        position: sticky !important;
    }
}

/** var root**/
/** breakpoints **/
/** spacing margin padding **/
.mt-0 {
    margin-top: 0rem !important;
}

.pt-0 {
    padding-top: 0rem !important;
}

.mb-0 {
    margin-bottom: 0rem !important;
}

.pb-0 {
    padding-bottom: 0rem !important;
}

.ml-0 {
    margin-left: 0rem !important;
}

.pl-0 {
    padding-left: 0rem !important;
}

.mr-0 {
    margin-right: 0rem !important;
}

.pr-0 {
    padding-right: 0rem !important;
}

.my-0 {
    margin-top: 0rem !important;
    margin-bottom: 0rem !important;
}

.py-0 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}

.mx-0 {
    margin-left: 0rem !important;
    margin-right: 0rem !important;
}

.px-0 {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
}

.m-0 {
    margin: 0rem !important;
}

.p-0 {
    padding: 0rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.ml-1 {
    margin-left: 0.25rem !important;
}

.pl-1 {
    padding-left: 0.25rem !important;
}

.mr-1 {
    margin-right: 0.25rem !important;
}

.pr-1 {
    padding-right: 0.25rem !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}

.py-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
}

.mx-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
}

.px-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.ml-2 {
    margin-left: 0.5rem !important;
}

.pl-2 {
    padding-left: 0.5rem !important;
}

.mr-2 {
    margin-right: 0.5rem !important;
}

.pr-2 {
    padding-right: 0.5rem !important;
}

.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.mx-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.px-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.ml-3 {
    margin-left: 1rem !important;
}

.pl-3 {
    padding-left: 1rem !important;
}

.mr-3 {
    margin-right: 1rem !important;
}

.pr-3 {
    padding-right: 1rem !important;
}

.my-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.py-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.mx-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.px-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.ml-4 {
    margin-left: 1.5rem !important;
}

.pl-4 {
    padding-left: 1.5rem !important;
}

.mr-4 {
    margin-right: 1.5rem !important;
}

.pr-4 {
    padding-right: 1.5rem !important;
}

.my-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.py-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
}

.mx-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
}

.px-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.mt-5 {
    margin-top: 2rem !important;
}

.pt-5 {
    padding-top: 2rem !important;
}

.mb-5 {
    margin-bottom: 2rem !important;
}

.pb-5 {
    padding-bottom: 2rem !important;
}

.ml-5 {
    margin-left: 2rem !important;
}

.pl-5 {
    padding-left: 2rem !important;
}

.mr-5 {
    margin-right: 2rem !important;
}

.pr-5 {
    padding-right: 2rem !important;
}

.my-5 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.mx-5 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}

.px-5 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.m-5 {
    margin: 2rem !important;
}

.p-5 {
    padding: 2rem !important;
}

.mt-6 {
    margin-top: 3rem !important;
}

.mt-7 {
    margin-top: 64px !important;
}

.mt-8 {
    margin-top: 80px !important;
}

.pt-6 {
    padding-top: 3rem !important;
}

.mb-6 {
    margin-bottom: 3rem !important;
}

.mb-7 {
    margin-bottom: 64px !important;
}

.mb-8 {
    margin-bottom: 80px !important;
}

.pb-6 {
    padding-bottom: 3rem !important;
}

.pb-7 {
    padding-bottom: 120px;
}

.ml-6 {
    margin-left: 3rem !important;
}

.pl-6 {
    padding-left: 3rem !important;
}

.mr-6 {
    margin-right: 3rem !important;
}

.pr-6 {
    padding-right: 3rem !important;
}

.my-6 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.py-6 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.mx-6 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.px-6 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.m-6 {
    margin: 3rem !important;
}

.p-6 {
    padding: 3rem !important;
}

@media (min-width: 320px) {
    .mt-xs-0 {
        margin-top: 0rem !important;
    }

    .pt-xs-0 {
        padding-top: 0rem !important;
    }

    .my-xs-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xs-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xs-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xs-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xs-0 {
        margin: 0rem !important;
    }

    .p-xs-0 {
        padding: 0rem !important;
    }

    .mb-xs-0 {
        margin-bottom: 0rem !important;
    }

    .pb-xs-0 {
        padding-bottom: 0rem !important;
    }

    .my-xs-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xs-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xs-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xs-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xs-0 {
        margin: 0rem !important;
    }

    .p-xs-0 {
        padding: 0rem !important;
    }

    .ml-xs-0 {
        margin-left: 0rem !important;
    }

    .pl-xs-0 {
        padding-left: 0rem !important;
    }

    .my-xs-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xs-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xs-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xs-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xs-0 {
        margin: 0rem !important;
    }

    .p-xs-0 {
        padding: 0rem !important;
    }

    .mr-xs-0 {
        margin-right: 0rem !important;
    }

    .pr-xs-0 {
        padding-right: 0rem !important;
    }

    .my-xs-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xs-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xs-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xs-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xs-0 {
        margin: 0rem !important;
    }

    .p-xs-0 {
        padding: 0rem !important;
    }

    .mt-xs-1 {
        margin-top: 0.25rem !important;
    }

    .pt-xs-1 {
        padding-top: 0.25rem !important;
    }

    .my-xs-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xs-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xs-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xs-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xs-1 {
        margin: 0.25rem !important;
    }

    .p-xs-1 {
        padding: 0.25rem !important;
    }

    .mb-xs-1 {
        margin-bottom: 0.25rem !important;
    }

    .pb-xs-1 {
        padding-bottom: 0.25rem !important;
    }

    .my-xs-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xs-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xs-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xs-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xs-1 {
        margin: 0.25rem !important;
    }

    .p-xs-1 {
        padding: 0.25rem !important;
    }

    .ml-xs-1 {
        margin-left: 0.25rem !important;
    }

    .pl-xs-1 {
        padding-left: 0.25rem !important;
    }

    .my-xs-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xs-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xs-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xs-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xs-1 {
        margin: 0.25rem !important;
    }

    .p-xs-1 {
        padding: 0.25rem !important;
    }

    .mr-xs-1 {
        margin-right: 0.25rem !important;
    }

    .pr-xs-1 {
        padding-right: 0.25rem !important;
    }

    .my-xs-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xs-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xs-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xs-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xs-1 {
        margin: 0.25rem !important;
    }

    .p-xs-1 {
        padding: 0.25rem !important;
    }

    .mt-xs-2 {
        margin-top: 0.5rem !important;
    }

    .pt-xs-2 {
        padding-top: 0.5rem !important;
    }

    .my-xs-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xs-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xs-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xs-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xs-2 {
        margin: 0.5rem !important;
    }

    .p-xs-2 {
        padding: 0.5rem !important;
    }

    .mb-xs-2 {
        margin-bottom: 0.5rem !important;
    }

    .pb-xs-2 {
        padding-bottom: 0.5rem !important;
    }

    .my-xs-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xs-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xs-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xs-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xs-2 {
        margin: 0.5rem !important;
    }

    .p-xs-2 {
        padding: 0.5rem !important;
    }

    .ml-xs-2 {
        margin-left: 0.5rem !important;
    }

    .pl-xs-2 {
        padding-left: 0.5rem !important;
    }

    .my-xs-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xs-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xs-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xs-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xs-2 {
        margin: 0.5rem !important;
    }

    .p-xs-2 {
        padding: 0.5rem !important;
    }

    .mr-xs-2 {
        margin-right: 0.5rem !important;
    }

    .pr-xs-2 {
        padding-right: 0.5rem !important;
    }

    .my-xs-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xs-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xs-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xs-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xs-2 {
        margin: 0.5rem !important;
    }

    .p-xs-2 {
        padding: 0.5rem !important;
    }

    .mt-xs-3 {
        margin-top: 1rem !important;
    }

    .pt-xs-3 {
        padding-top: 1rem !important;
    }

    .my-xs-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xs-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xs-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xs-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xs-3 {
        margin: 1rem !important;
    }

    .p-xs-3 {
        padding: 1rem !important;
    }

    .mb-xs-3 {
        margin-bottom: 1rem !important;
    }

    .pb-xs-3 {
        padding-bottom: 1rem !important;
    }

    .my-xs-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xs-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xs-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xs-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xs-3 {
        margin: 1rem !important;
    }

    .p-xs-3 {
        padding: 1rem !important;
    }

    .ml-xs-3 {
        margin-left: 1rem !important;
    }

    .pl-xs-3 {
        padding-left: 1rem !important;
    }

    .my-xs-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xs-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xs-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xs-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xs-3 {
        margin: 1rem !important;
    }

    .p-xs-3 {
        padding: 1rem !important;
    }

    .mr-xs-3 {
        margin-right: 1rem !important;
    }

    .pr-xs-3 {
        padding-right: 1rem !important;
    }

    .my-xs-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xs-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xs-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xs-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xs-3 {
        margin: 1rem !important;
    }

    .p-xs-3 {
        padding: 1rem !important;
    }

    .mt-xs-4 {
        margin-top: 1.5rem !important;
    }

    .pt-xs-4 {
        padding-top: 1.5rem !important;
    }

    .my-xs-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xs-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xs-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xs-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xs-4 {
        margin: 1.5rem !important;
    }

    .p-xs-4 {
        padding: 1.5rem !important;
    }

    .mb-xs-4 {
        margin-bottom: 1.5rem !important;
    }

    .pb-xs-4 {
        padding-bottom: 1.5rem !important;
    }

    .my-xs-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xs-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xs-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xs-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xs-4 {
        margin: 1.5rem !important;
    }

    .p-xs-4 {
        padding: 1.5rem !important;
    }

    .ml-xs-4 {
        margin-left: 1.5rem !important;
    }

    .pl-xs-4 {
        padding-left: 1.5rem !important;
    }

    .my-xs-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xs-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xs-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xs-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xs-4 {
        margin: 1.5rem !important;
    }

    .p-xs-4 {
        padding: 1.5rem !important;
    }

    .mr-xs-4 {
        margin-right: 1.5rem !important;
    }

    .pr-xs-4 {
        padding-right: 1.5rem !important;
    }

    .my-xs-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xs-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xs-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xs-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xs-4 {
        margin: 1.5rem !important;
    }

    .p-xs-4 {
        padding: 1.5rem !important;
    }

    .mt-xs-5 {
        margin-top: 2rem !important;
    }

    .pt-xs-5 {
        padding-top: 2rem !important;
    }

    .my-xs-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xs-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xs-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xs-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xs-5 {
        margin: 2rem !important;
    }

    .p-xs-5 {
        padding: 2rem !important;
    }

    .mb-xs-5 {
        margin-bottom: 2rem !important;
    }

    .pb-xs-5 {
        padding-bottom: 2rem !important;
    }

    .my-xs-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xs-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xs-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xs-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xs-5 {
        margin: 2rem !important;
    }

    .p-xs-5 {
        padding: 2rem !important;
    }

    .ml-xs-5 {
        margin-left: 2rem !important;
    }

    .pl-xs-5 {
        padding-left: 2rem !important;
    }

    .my-xs-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xs-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xs-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xs-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xs-5 {
        margin: 2rem !important;
    }

    .p-xs-5 {
        padding: 2rem !important;
    }

    .mr-xs-5 {
        margin-right: 2rem !important;
    }

    .pr-xs-5 {
        padding-right: 2rem !important;
    }

    .my-xs-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xs-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xs-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xs-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xs-5 {
        margin: 2rem !important;
    }

    .p-xs-5 {
        padding: 2rem !important;
    }

    .mt-xs-6 {
        margin-top: 3rem !important;
    }

    .pt-xs-6 {
        padding-top: 3rem !important;
    }

    .my-xs-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xs-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xs-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xs-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xs-6 {
        margin: 3rem !important;
    }

    .p-xs-6 {
        padding: 3rem !important;
    }

    .mb-xs-6 {
        margin-bottom: 3rem !important;
    }

    .pb-xs-6 {
        padding-bottom: 3rem !important;
    }

    .my-xs-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xs-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xs-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xs-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xs-6 {
        margin: 3rem !important;
    }

    .p-xs-6 {
        padding: 3rem !important;
    }

    .ml-xs-6 {
        margin-left: 3rem !important;
    }

    .pl-xs-6 {
        padding-left: 3rem !important;
    }

    .my-xs-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xs-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xs-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xs-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xs-6 {
        margin: 3rem !important;
    }

    .p-xs-6 {
        padding: 3rem !important;
    }

    .mr-xs-6 {
        margin-right: 3rem !important;
    }

    .pr-xs-6 {
        padding-right: 3rem !important;
    }

    .my-xs-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xs-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xs-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xs-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xs-6 {
        margin: 3rem !important;
    }

    .p-xs-6 {
        padding: 3rem !important;
    }
}

@media (min-width: 576px) {
    .mt-sm-0 {
        margin-top: 0rem !important;
    }

    .pt-sm-0 {
        padding-top: 0rem !important;
    }

    .my-sm-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-sm-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-sm-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-sm-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-sm-0 {
        margin: 0rem !important;
    }

    .p-sm-0 {
        padding: 0rem !important;
    }

    .mb-sm-0 {
        margin-bottom: 0rem !important;
    }

    .pb-sm-0 {
        padding-bottom: 0rem !important;
    }

    .my-sm-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-sm-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-sm-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-sm-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-sm-0 {
        margin: 0rem !important;
    }

    .p-sm-0 {
        padding: 0rem !important;
    }

    .ml-sm-0 {
        margin-left: 0rem !important;
    }

    .pl-sm-0 {
        padding-left: 0rem !important;
    }

    .my-sm-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-sm-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-sm-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-sm-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-sm-0 {
        margin: 0rem !important;
    }

    .p-sm-0 {
        padding: 0rem !important;
    }

    .mr-sm-0 {
        margin-right: 0rem !important;
    }

    .pr-sm-0 {
        padding-right: 0rem !important;
    }

    .my-sm-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-sm-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-sm-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-sm-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-sm-0 {
        margin: 0rem !important;
    }

    .p-sm-0 {
        padding: 0rem !important;
    }

    .mt-sm-1 {
        margin-top: 0.25rem !important;
    }

    .pt-sm-1 {
        padding-top: 0.25rem !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-sm-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-sm-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .mb-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .pb-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-sm-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-sm-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .ml-sm-1 {
        margin-left: 0.25rem !important;
    }

    .pl-sm-1 {
        padding-left: 0.25rem !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-sm-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-sm-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .mr-sm-1 {
        margin-right: 0.25rem !important;
    }

    .pr-sm-1 {
        padding-right: 0.25rem !important;
    }

    .my-sm-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-sm-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-sm-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-sm-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .mt-sm-2 {
        margin-top: 0.5rem !important;
    }

    .pt-sm-2 {
        padding-top: 0.5rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-sm-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-sm-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .mb-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .pb-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-sm-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-sm-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .ml-sm-2 {
        margin-left: 0.5rem !important;
    }

    .pl-sm-2 {
        padding-left: 0.5rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-sm-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-sm-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .mr-sm-2 {
        margin-right: 0.5rem !important;
    }

    .pr-sm-2 {
        padding-right: 0.5rem !important;
    }

    .my-sm-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-sm-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-sm-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-sm-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .mt-sm-3 {
        margin-top: 1rem !important;
    }

    .pt-sm-3 {
        padding-top: 1rem !important;
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }

    .pb-sm-3 {
        padding-bottom: 1rem !important;
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .ml-sm-3 {
        margin-left: 1rem !important;
    }

    .pl-sm-3 {
        padding-left: 1rem !important;
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .mr-sm-3 {
        margin-right: 1rem !important;
    }

    .pr-sm-3 {
        padding-right: 1rem !important;
    }

    .my-sm-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-sm-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-sm-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-sm-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }

    .pt-sm-4 {
        padding-top: 1.5rem !important;
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-sm-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .pb-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-sm-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .ml-sm-4 {
        margin-left: 1.5rem !important;
    }

    .pl-sm-4 {
        padding-left: 1.5rem !important;
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-sm-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .mr-sm-4 {
        margin-right: 1.5rem !important;
    }

    .pr-sm-4 {
        padding-right: 1.5rem !important;
    }

    .my-sm-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-sm-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-sm-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .mt-sm-5 {
        margin-top: 2rem !important;
    }

    .pt-sm-5 {
        padding-top: 2rem !important;
    }

    .my-sm-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-sm-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-sm-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-sm-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-sm-5 {
        margin: 2rem !important;
    }

    .p-sm-5 {
        padding: 2rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 2rem !important;
    }

    .pb-sm-5 {
        padding-bottom: 2rem !important;
    }

    .my-sm-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-sm-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-sm-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-sm-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-sm-5 {
        margin: 2rem !important;
    }

    .p-sm-5 {
        padding: 2rem !important;
    }

    .ml-sm-5 {
        margin-left: 2rem !important;
    }

    .pl-sm-5 {
        padding-left: 2rem !important;
    }

    .my-sm-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-sm-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-sm-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-sm-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-sm-5 {
        margin: 2rem !important;
    }

    .p-sm-5 {
        padding: 2rem !important;
    }

    .mr-sm-5 {
        margin-right: 2rem !important;
    }

    .pr-sm-5 {
        padding-right: 2rem !important;
    }

    .my-sm-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-sm-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-sm-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-sm-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-sm-5 {
        margin: 2rem !important;
    }

    .p-sm-5 {
        padding: 2rem !important;
    }

    .mt-sm-6 {
        margin-top: 3rem !important;
    }

    .pt-sm-6 {
        padding-top: 3rem !important;
    }

    .my-sm-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-sm-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-sm-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-sm-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-sm-6 {
        margin: 3rem !important;
    }

    .p-sm-6 {
        padding: 3rem !important;
    }

    .mb-sm-6 {
        margin-bottom: 3rem !important;
    }

    .pb-sm-6 {
        padding-bottom: 3rem !important;
    }

    .my-sm-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-sm-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-sm-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-sm-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-sm-6 {
        margin: 3rem !important;
    }

    .p-sm-6 {
        padding: 3rem !important;
    }

    .ml-sm-6 {
        margin-left: 3rem !important;
    }

    .pl-sm-6 {
        padding-left: 3rem !important;
    }

    .my-sm-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-sm-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-sm-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-sm-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-sm-6 {
        margin: 3rem !important;
    }

    .p-sm-6 {
        padding: 3rem !important;
    }

    .mr-sm-6 {
        margin-right: 3rem !important;
    }

    .pr-sm-6 {
        padding-right: 3rem !important;
    }

    .my-sm-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-sm-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-sm-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-sm-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-sm-6 {
        margin: 3rem !important;
    }

    .p-sm-6 {
        padding: 3rem !important;
    }
}

@media (min-width: 768px) {
    .mt-md-0 {
        margin-top: 0rem !important;
    }

    .pt-md-0 {
        padding-top: 0rem !important;
    }

    .my-md-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-md-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-md-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-md-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-md-0 {
        margin: 0rem !important;
    }

    .p-md-0 {
        padding: 0rem !important;
    }

    .mb-md-0 {
        margin-bottom: 0rem !important;
    }

    .pb-md-0 {
        padding-bottom: 0rem !important;
    }

    .my-md-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-md-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-md-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-md-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-md-0 {
        margin: 0rem !important;
    }

    .p-md-0 {
        padding: 0rem !important;
    }

    .ml-md-0 {
        margin-left: 0rem !important;
    }

    .pl-md-0 {
        padding-left: 0rem !important;
    }

    .my-md-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-md-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-md-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-md-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-md-0 {
        margin: 0rem !important;
    }

    .p-md-0 {
        padding: 0rem !important;
    }

    .mr-md-0 {
        margin-right: 0rem !important;
    }

    .pr-md-0 {
        padding-right: 0rem !important;
    }

    .my-md-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-md-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-md-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-md-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-md-0 {
        margin: 0rem !important;
    }

    .p-md-0 {
        padding: 0rem !important;
    }

    .mt-md-1 {
        margin-top: 0.25rem !important;
    }

    .pt-md-1 {
        padding-top: 0.25rem !important;
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-md-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-md-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .mb-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .pb-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-md-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-md-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .ml-md-1 {
        margin-left: 0.25rem !important;
    }

    .pl-md-1 {
        padding-left: 0.25rem !important;
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-md-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-md-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .mr-md-1 {
        margin-right: 0.25rem !important;
    }

    .pr-md-1 {
        padding-right: 0.25rem !important;
    }

    .my-md-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-md-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-md-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-md-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .mt-md-2 {
        margin-top: 0.5rem !important;
    }

    .pt-md-2 {
        padding-top: 0.5rem !important;
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-md-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-md-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .mb-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .pb-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-md-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-md-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .ml-md-2 {
        margin-left: 0.5rem !important;
    }

    .pl-md-2 {
        padding-left: 0.5rem !important;
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-md-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-md-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .mr-md-2 {
        margin-right: 0.5rem !important;
    }

    .pr-md-2 {
        padding-right: 0.5rem !important;
    }

    .my-md-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-md-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-md-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-md-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .mt-md-3 {
        margin-top: 1rem !important;
    }

    .pt-md-3 {
        padding-top: 1rem !important;
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .mb-md-3 {
        margin-bottom: 1rem !important;
    }

    .pb-md-3 {
        padding-bottom: 1rem !important;
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .ml-md-3 {
        margin-left: 1rem !important;
    }

    .pl-md-3 {
        padding-left: 1rem !important;
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .mr-md-3 {
        margin-right: 1rem !important;
    }

    .pr-md-3 {
        padding-right: 1rem !important;
    }

    .my-md-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-md-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-md-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-md-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .mt-md-4 {
        margin-top: 1.5rem !important;
    }

    .pt-md-4 {
        padding-top: 1.5rem !important;
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-md-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .mb-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .pb-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-md-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .ml-md-4 {
        margin-left: 1.5rem !important;
    }

    .pl-md-4 {
        padding-left: 1.5rem !important;
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-md-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .mr-md-4 {
        margin-right: 1.5rem !important;
    }

    .pr-md-4 {
        padding-right: 1.5rem !important;
    }

    .my-md-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-md-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-md-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-md-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .mt-md-5 {
        margin-top: 2rem !important;
    }

    .pt-md-5 {
        padding-top: 2rem !important;
    }

    .my-md-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-md-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-md-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-md-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-md-5 {
        margin: 2rem !important;
    }

    .p-md-5 {
        padding: 2rem !important;
    }

    .mb-md-5 {
        margin-bottom: 2rem !important;
    }

    .pb-md-5 {
        padding-bottom: 2rem !important;
    }

    .my-md-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-md-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-md-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-md-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-md-5 {
        margin: 2rem !important;
    }

    .p-md-5 {
        padding: 2rem !important;
    }

    .ml-md-5 {
        margin-left: 2rem !important;
    }

    .pl-md-5 {
        padding-left: 2rem !important;
    }

    .my-md-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-md-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-md-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-md-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-md-5 {
        margin: 2rem !important;
    }

    .p-md-5 {
        padding: 2rem !important;
    }

    .mr-md-5 {
        margin-right: 2rem !important;
    }

    .pr-md-5 {
        padding-right: 2rem !important;
    }

    .my-md-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-md-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-md-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-md-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-md-5 {
        margin: 2rem !important;
    }

    .p-md-5 {
        padding: 2rem !important;
    }

    .mt-md-6 {
        margin-top: 3rem !important;
    }

    .pt-md-6 {
        padding-top: 3rem !important;
    }

    .my-md-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-md-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-md-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-md-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-md-6 {
        margin: 3rem !important;
    }

    .p-md-6 {
        padding: 3rem !important;
    }

    .mb-md-6 {
        margin-bottom: 3rem !important;
    }

    .pb-md-6 {
        padding-bottom: 3rem !important;
    }

    .my-md-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-md-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-md-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-md-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-md-6 {
        margin: 3rem !important;
    }

    .p-md-6 {
        padding: 3rem !important;
    }

    .ml-md-6 {
        margin-left: 3rem !important;
    }

    .pl-md-6 {
        padding-left: 3rem !important;
    }

    .my-md-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-md-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-md-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-md-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-md-6 {
        margin: 3rem !important;
    }

    .p-md-6 {
        padding: 3rem !important;
    }

    .mr-md-6 {
        margin-right: 3rem !important;
    }

    .pr-md-6 {
        padding-right: 3rem !important;
    }

    .my-md-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-md-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-md-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-md-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-md-6 {
        margin: 3rem !important;
    }

    .p-md-6 {
        padding: 3rem !important;
    }
}

@media (min-width: 992px) {
    .mt-lg-0 {
        margin-top: 0rem !important;
    }

    .pt-lg-0 {
        padding-top: 0rem !important;
    }

    .my-lg-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-lg-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-lg-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-lg-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-lg-0 {
        margin: 0rem !important;
    }

    .p-lg-0 {
        padding: 0rem !important;
    }

    .mb-lg-0 {
        margin-bottom: 0rem !important;
    }

    .pb-lg-0 {
        padding-bottom: 0rem !important;
    }

    .my-lg-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-lg-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-lg-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-lg-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-lg-0 {
        margin: 0rem !important;
    }

    .p-lg-0 {
        padding: 0rem !important;
    }

    .ml-lg-0 {
        margin-left: 0rem !important;
    }

    .pl-lg-0 {
        padding-left: 0rem !important;
    }

    .my-lg-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-lg-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-lg-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-lg-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-lg-0 {
        margin: 0rem !important;
    }

    .p-lg-0 {
        padding: 0rem !important;
    }

    .mr-lg-0 {
        margin-right: 0rem !important;
    }

    .pr-lg-0 {
        padding-right: 0rem !important;
    }

    .my-lg-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-lg-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-lg-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-lg-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-lg-0 {
        margin: 0rem !important;
    }

    .p-lg-0 {
        padding: 0rem !important;
    }

    .mt-lg-1 {
        margin-top: 0.25rem !important;
    }

    .pt-lg-1 {
        padding-top: 0.25rem !important;
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-lg-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-lg-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .mb-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .pb-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-lg-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-lg-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .ml-lg-1 {
        margin-left: 0.25rem !important;
    }

    .pl-lg-1 {
        padding-left: 0.25rem !important;
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-lg-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-lg-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .mr-lg-1 {
        margin-right: 0.25rem !important;
    }

    .pr-lg-1 {
        padding-right: 0.25rem !important;
    }

    .my-lg-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-lg-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-lg-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-lg-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .mt-lg-2 {
        margin-top: 0.5rem !important;
    }

    .pt-lg-2 {
        padding-top: 0.5rem !important;
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-lg-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-lg-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .mb-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .pb-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-lg-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-lg-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .ml-lg-2 {
        margin-left: 0.5rem !important;
    }

    .pl-lg-2 {
        padding-left: 0.5rem !important;
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-lg-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-lg-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .mr-lg-2 {
        margin-right: 0.5rem !important;
    }

    .pr-lg-2 {
        padding-right: 0.5rem !important;
    }

    .my-lg-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-lg-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-lg-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-lg-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .mt-lg-3 {
        margin-top: 1rem !important;
    }

    .pt-lg-3 {
        padding-top: 1rem !important;
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .mb-lg-3 {
        margin-bottom: 1rem !important;
    }

    .pb-lg-3 {
        padding-bottom: 1rem !important;
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .ml-lg-3 {
        margin-left: 1rem !important;
    }

    .pl-lg-3 {
        padding-left: 1rem !important;
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .mr-lg-3 {
        margin-right: 1rem !important;
    }

    .pr-lg-3 {
        padding-right: 1rem !important;
    }

    .my-lg-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-lg-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-lg-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-lg-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .mt-lg-4 {
        margin-top: 1.5rem !important;
    }

    .pt-lg-4 {
        padding-top: 1.5rem !important;
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-lg-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-lg-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .mb-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .pb-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-lg-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-lg-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .ml-lg-4 {
        margin-left: 1.5rem !important;
    }

    .pl-lg-4 {
        padding-left: 1.5rem !important;
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-lg-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-lg-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .mr-lg-4 {
        margin-right: 1.5rem !important;
    }

    .pr-lg-4 {
        padding-right: 1.5rem !important;
    }

    .my-lg-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-lg-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-lg-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-lg-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .mt-lg-5 {
        margin-top: 2rem !important;
    }

    .pt-lg-5 {
        padding-top: 2rem !important;
    }

    .my-lg-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-lg-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-lg-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-lg-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-lg-5 {
        margin: 2rem !important;
    }

    .p-lg-5 {
        padding: 2rem !important;
    }

    .mb-lg-5 {
        margin-bottom: 2rem !important;
    }

    .pb-lg-5 {
        padding-bottom: 2rem !important;
    }

    .my-lg-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-lg-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-lg-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-lg-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-lg-5 {
        margin: 2rem !important;
    }

    .p-lg-5 {
        padding: 2rem !important;
    }

    .ml-lg-5 {
        margin-left: 2rem !important;
    }

    .pl-lg-5 {
        padding-left: 2rem !important;
    }

    .my-lg-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-lg-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-lg-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-lg-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-lg-5 {
        margin: 2rem !important;
    }

    .p-lg-5 {
        padding: 2rem !important;
    }

    .mr-lg-5 {
        margin-right: 2rem !important;
    }

    .pr-lg-5 {
        padding-right: 2rem !important;
    }

    .my-lg-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-lg-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-lg-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-lg-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-lg-5 {
        margin: 2rem !important;
    }

    .p-lg-5 {
        padding: 2rem !important;
    }

    .mt-lg-6 {
        margin-top: 3rem !important;
    }

    .pt-lg-6 {
        padding-top: 3rem !important;
    }

    .my-lg-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-lg-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-lg-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-lg-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-lg-6 {
        margin: 3rem !important;
    }

    .p-lg-6 {
        padding: 3rem !important;
    }

    .mb-lg-6 {
        margin-bottom: 3rem !important;
    }

    .pb-lg-6 {
        padding-bottom: 3rem !important;
    }

    .my-lg-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-lg-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-lg-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-lg-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-lg-6 {
        margin: 3rem !important;
    }

    .p-lg-6 {
        padding: 3rem !important;
    }

    .ml-lg-6 {
        margin-left: 3rem !important;
    }

    .pl-lg-6 {
        padding-left: 3rem !important;
    }

    .my-lg-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-lg-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-lg-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-lg-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-lg-6 {
        margin: 3rem !important;
    }

    .p-lg-6 {
        padding: 3rem !important;
    }

    .mr-lg-6 {
        margin-right: 3rem !important;
    }

    .pr-lg-6 {
        padding-right: 3rem !important;
    }

    .my-lg-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-lg-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-lg-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-lg-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-lg-6 {
        margin: 3rem !important;
    }

    .p-lg-6 {
        padding: 3rem !important;
    }
}

@media (min-width: 1200px) {
    .mt-xl-0 {
        margin-top: 0rem !important;
    }

    .pt-xl-0 {
        padding-top: 0rem !important;
    }

    .my-xl-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xl-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xl-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xl-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xl-0 {
        margin: 0rem !important;
    }

    .p-xl-0 {
        padding: 0rem !important;
    }

    .mb-xl-0 {
        margin-bottom: 0rem !important;
    }

    .pb-xl-0 {
        padding-bottom: 0rem !important;
    }

    .my-xl-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xl-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xl-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xl-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xl-0 {
        margin: 0rem !important;
    }

    .p-xl-0 {
        padding: 0rem !important;
    }

    .ml-xl-0 {
        margin-left: 0rem !important;
    }

    .pl-xl-0 {
        padding-left: 0rem !important;
    }

    .my-xl-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xl-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xl-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xl-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xl-0 {
        margin: 0rem !important;
    }

    .p-xl-0 {
        padding: 0rem !important;
    }

    .mr-xl-0 {
        margin-right: 0rem !important;
    }

    .pr-xl-0 {
        padding-right: 0rem !important;
    }

    .my-xl-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xl-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xl-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xl-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xl-0 {
        margin: 0rem !important;
    }

    .p-xl-0 {
        padding: 0rem !important;
    }

    .mt-xl-1 {
        margin-top: 0.25rem !important;
    }

    .pt-xl-1 {
        padding-top: 0.25rem !important;
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .mb-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .pb-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .ml-xl-1 {
        margin-left: 0.25rem !important;
    }

    .pl-xl-1 {
        padding-left: 0.25rem !important;
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .mr-xl-1 {
        margin-right: 0.25rem !important;
    }

    .pr-xl-1 {
        padding-right: 0.25rem !important;
    }

    .my-xl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .mt-xl-2 {
        margin-top: 0.5rem !important;
    }

    .pt-xl-2 {
        padding-top: 0.5rem !important;
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .mb-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .pb-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .ml-xl-2 {
        margin-left: 0.5rem !important;
    }

    .pl-xl-2 {
        padding-left: 0.5rem !important;
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .mr-xl-2 {
        margin-right: 0.5rem !important;
    }

    .pr-xl-2 {
        padding-right: 0.5rem !important;
    }

    .my-xl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .mt-xl-3 {
        margin-top: 1rem !important;
    }

    .pt-xl-3 {
        padding-top: 1rem !important;
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .mb-xl-3 {
        margin-bottom: 1rem !important;
    }

    .pb-xl-3 {
        padding-bottom: 1rem !important;
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .ml-xl-3 {
        margin-left: 1rem !important;
    }

    .pl-xl-3 {
        padding-left: 1rem !important;
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .mr-xl-3 {
        margin-right: 1rem !important;
    }

    .pr-xl-3 {
        padding-right: 1rem !important;
    }

    .my-xl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .mt-xl-4 {
        margin-top: 1.5rem !important;
    }

    .pt-xl-4 {
        padding-top: 1.5rem !important;
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .mb-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .pb-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .ml-xl-4 {
        margin-left: 1.5rem !important;
    }

    .pl-xl-4 {
        padding-left: 1.5rem !important;
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .mr-xl-4 {
        margin-right: 1.5rem !important;
    }

    .pr-xl-4 {
        padding-right: 1.5rem !important;
    }

    .my-xl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .mt-xl-5 {
        margin-top: 2rem !important;
    }

    .pt-xl-5 {
        padding-top: 2rem !important;
    }

    .my-xl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xl-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xl-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xl-5 {
        margin: 2rem !important;
    }

    .p-xl-5 {
        padding: 2rem !important;
    }

    .mb-xl-5 {
        margin-bottom: 2rem !important;
    }

    .pb-xl-5 {
        padding-bottom: 2rem !important;
    }

    .my-xl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xl-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xl-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xl-5 {
        margin: 2rem !important;
    }

    .p-xl-5 {
        padding: 2rem !important;
    }

    .ml-xl-5 {
        margin-left: 2rem !important;
    }

    .pl-xl-5 {
        padding-left: 2rem !important;
    }

    .my-xl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xl-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xl-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xl-5 {
        margin: 2rem !important;
    }

    .p-xl-5 {
        padding: 2rem !important;
    }

    .mr-xl-5 {
        margin-right: 2rem !important;
    }

    .pr-xl-5 {
        padding-right: 2rem !important;
    }

    .my-xl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xl-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xl-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xl-5 {
        margin: 2rem !important;
    }

    .p-xl-5 {
        padding: 2rem !important;
    }

    .mt-xl-6 {
        margin-top: 3rem !important;
    }

    .pt-xl-6 {
        padding-top: 3rem !important;
    }

    .my-xl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xl-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xl-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xl-6 {
        margin: 3rem !important;
    }

    .p-xl-6 {
        padding: 3rem !important;
    }

    .mb-xl-6 {
        margin-bottom: 3rem !important;
    }

    .pb-xl-6 {
        padding-bottom: 3rem !important;
    }

    .my-xl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xl-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xl-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xl-6 {
        margin: 3rem !important;
    }

    .p-xl-6 {
        padding: 3rem !important;
    }

    .ml-xl-6 {
        margin-left: 3rem !important;
    }

    .pl-xl-6 {
        padding-left: 3rem !important;
    }

    .my-xl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xl-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xl-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xl-6 {
        margin: 3rem !important;
    }

    .p-xl-6 {
        padding: 3rem !important;
    }

    .mr-xl-6 {
        margin-right: 3rem !important;
    }

    .pr-xl-6 {
        padding-right: 3rem !important;
    }

    .my-xl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xl-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xl-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xl-6 {
        margin: 3rem !important;
    }

    .p-xl-6 {
        padding: 3rem !important;
    }
}

@media (min-width: 1400px) {
    .mt-xxl-0 {
        margin-top: 0rem !important;
    }

    .pt-xxl-0 {
        padding-top: 0rem !important;
    }

    .my-xxl-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xxl-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xxl-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xxl-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xxl-0 {
        margin: 0rem !important;
    }

    .p-xxl-0 {
        padding: 0rem !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0rem !important;
    }

    .pb-xxl-0 {
        padding-bottom: 0rem !important;
    }

    .my-xxl-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xxl-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xxl-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xxl-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xxl-0 {
        margin: 0rem !important;
    }

    .p-xxl-0 {
        padding: 0rem !important;
    }

    .ml-xxl-0 {
        margin-left: 0rem !important;
    }

    .pl-xxl-0 {
        padding-left: 0rem !important;
    }

    .my-xxl-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xxl-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xxl-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xxl-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xxl-0 {
        margin: 0rem !important;
    }

    .p-xxl-0 {
        padding: 0rem !important;
    }

    .mr-xxl-0 {
        margin-right: 0rem !important;
    }

    .pr-xxl-0 {
        padding-right: 0rem !important;
    }

    .my-xxl-0 {
        margin-top: 0rem !important;
        margin-bottom: 0rem !important;
    }

    .py-xxl-0 {
        padding-top: 0rem !important;
        padding-bottom: 0rem !important;
    }

    .mx-xxl-0 {
        margin-left: 0rem !important;
        margin-right: 0rem !important;
    }

    .px-xxl-0 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .m-xxl-0 {
        margin: 0rem !important;
    }

    .p-xxl-0 {
        padding: 0rem !important;
    }

    .mt-xxl-1 {
        margin-top: 0.25rem !important;
    }

    .pt-xxl-1 {
        padding-top: 0.25rem !important;
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xxl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xxl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xxl-1 {
        margin: 0.25rem !important;
    }

    .p-xxl-1 {
        padding: 0.25rem !important;
    }

    .mb-xxl-1 {
        margin-bottom: 0.25rem !important;
    }

    .pb-xxl-1 {
        padding-bottom: 0.25rem !important;
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xxl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xxl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xxl-1 {
        margin: 0.25rem !important;
    }

    .p-xxl-1 {
        padding: 0.25rem !important;
    }

    .ml-xxl-1 {
        margin-left: 0.25rem !important;
    }

    .pl-xxl-1 {
        padding-left: 0.25rem !important;
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xxl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xxl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xxl-1 {
        margin: 0.25rem !important;
    }

    .p-xxl-1 {
        padding: 0.25rem !important;
    }

    .mr-xxl-1 {
        margin-right: 0.25rem !important;
    }

    .pr-xxl-1 {
        padding-right: 0.25rem !important;
    }

    .my-xxl-1 {
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
    }

    .py-xxl-1 {
        padding-top: 0.25rem !important;
        padding-bottom: 0.25rem !important;
    }

    .mx-xxl-1 {
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    .px-xxl-1 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }

    .m-xxl-1 {
        margin: 0.25rem !important;
    }

    .p-xxl-1 {
        padding: 0.25rem !important;
    }

    .mt-xxl-2 {
        margin-top: 0.5rem !important;
    }

    .pt-xxl-2 {
        padding-top: 0.5rem !important;
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xxl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xxl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xxl-2 {
        margin: 0.5rem !important;
    }

    .p-xxl-2 {
        padding: 0.5rem !important;
    }

    .mb-xxl-2 {
        margin-bottom: 0.5rem !important;
    }

    .pb-xxl-2 {
        padding-bottom: 0.5rem !important;
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xxl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xxl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xxl-2 {
        margin: 0.5rem !important;
    }

    .p-xxl-2 {
        padding: 0.5rem !important;
    }

    .ml-xxl-2 {
        margin-left: 0.5rem !important;
    }

    .pl-xxl-2 {
        padding-left: 0.5rem !important;
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xxl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xxl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xxl-2 {
        margin: 0.5rem !important;
    }

    .p-xxl-2 {
        padding: 0.5rem !important;
    }

    .mr-xxl-2 {
        margin-right: 0.5rem !important;
    }

    .pr-xxl-2 {
        padding-right: 0.5rem !important;
    }

    .my-xxl-2 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-xxl-2 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mx-xxl-2 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .px-xxl-2 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .m-xxl-2 {
        margin: 0.5rem !important;
    }

    .p-xxl-2 {
        padding: 0.5rem !important;
    }

    .mt-xxl-3 {
        margin-top: 1rem !important;
    }

    .pt-xxl-3 {
        padding-top: 1rem !important;
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xxl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xxl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xxl-3 {
        margin: 1rem !important;
    }

    .p-xxl-3 {
        padding: 1rem !important;
    }

    .mb-xxl-3 {
        margin-bottom: 1rem !important;
    }

    .pb-xxl-3 {
        padding-bottom: 1rem !important;
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xxl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xxl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xxl-3 {
        margin: 1rem !important;
    }

    .p-xxl-3 {
        padding: 1rem !important;
    }

    .ml-xxl-3 {
        margin-left: 1rem !important;
    }

    .pl-xxl-3 {
        padding-left: 1rem !important;
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xxl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xxl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xxl-3 {
        margin: 1rem !important;
    }

    .p-xxl-3 {
        padding: 1rem !important;
    }

    .mr-xxl-3 {
        margin-right: 1rem !important;
    }

    .pr-xxl-3 {
        padding-right: 1rem !important;
    }

    .my-xxl-3 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .py-xxl-3 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .mx-xxl-3 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .px-xxl-3 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .m-xxl-3 {
        margin: 1rem !important;
    }

    .p-xxl-3 {
        padding: 1rem !important;
    }

    .mt-xxl-4 {
        margin-top: 1.5rem !important;
    }

    .pt-xxl-4 {
        padding-top: 1.5rem !important;
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xxl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xxl-4 {
        margin: 1.5rem !important;
    }

    .p-xxl-4 {
        padding: 1.5rem !important;
    }

    .mb-xxl-4 {
        margin-bottom: 1.5rem !important;
    }

    .pb-xxl-4 {
        padding-bottom: 1.5rem !important;
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xxl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xxl-4 {
        margin: 1.5rem !important;
    }

    .p-xxl-4 {
        padding: 1.5rem !important;
    }

    .ml-xxl-4 {
        margin-left: 1.5rem !important;
    }

    .pl-xxl-4 {
        padding-left: 1.5rem !important;
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xxl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xxl-4 {
        margin: 1.5rem !important;
    }

    .p-xxl-4 {
        padding: 1.5rem !important;
    }

    .mr-xxl-4 {
        margin-right: 1.5rem !important;
    }

    .pr-xxl-4 {
        padding-right: 1.5rem !important;
    }

    .my-xxl-4 {
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .py-xxl-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mx-xxl-4 {
        margin-left: 1.5rem !important;
        margin-right: 1.5rem !important;
    }

    .px-xxl-4 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .m-xxl-4 {
        margin: 1.5rem !important;
    }

    .p-xxl-4 {
        padding: 1.5rem !important;
    }

    .mt-xxl-5 {
        margin-top: 2rem !important;
    }

    .pt-xxl-5 {
        padding-top: 2rem !important;
    }

    .my-xxl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xxl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xxl-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xxl-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xxl-5 {
        margin: 2rem !important;
    }

    .p-xxl-5 {
        padding: 2rem !important;
    }

    .mb-xxl-5 {
        margin-bottom: 2rem !important;
    }

    .pb-xxl-5 {
        padding-bottom: 2rem !important;
    }

    .my-xxl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xxl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xxl-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xxl-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xxl-5 {
        margin: 2rem !important;
    }

    .p-xxl-5 {
        padding: 2rem !important;
    }

    .ml-xxl-5 {
        margin-left: 2rem !important;
    }

    .pl-xxl-5 {
        padding-left: 2rem !important;
    }

    .my-xxl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xxl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xxl-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xxl-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xxl-5 {
        margin: 2rem !important;
    }

    .p-xxl-5 {
        padding: 2rem !important;
    }

    .mr-xxl-5 {
        margin-right: 2rem !important;
    }

    .pr-xxl-5 {
        padding-right: 2rem !important;
    }

    .my-xxl-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }

    .py-xxl-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mx-xxl-5 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .px-xxl-5 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .m-xxl-5 {
        margin: 2rem !important;
    }

    .p-xxl-5 {
        padding: 2rem !important;
    }

    .mt-xxl-6 {
        margin-top: 3rem !important;
    }

    .pt-xxl-6 {
        padding-top: 3rem !important;
    }

    .my-xxl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xxl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xxl-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xxl-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xxl-6 {
        margin: 3rem !important;
    }

    .p-xxl-6 {
        padding: 3rem !important;
    }

    .mb-xxl-6 {
        margin-bottom: 3rem !important;
    }

    .pb-xxl-6 {
        padding-bottom: 3rem !important;
    }

    .my-xxl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xxl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xxl-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xxl-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xxl-6 {
        margin: 3rem !important;
    }

    .p-xxl-6 {
        padding: 3rem !important;
    }

    .ml-xxl-6 {
        margin-left: 3rem !important;
    }

    .pl-xxl-6 {
        padding-left: 3rem !important;
    }

    .my-xxl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xxl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xxl-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xxl-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xxl-6 {
        margin: 3rem !important;
    }

    .p-xxl-6 {
        padding: 3rem !important;
    }

    .mr-xxl-6 {
        margin-right: 3rem !important;
    }

    .pr-xxl-6 {
        padding-right: 3rem !important;
    }

    .my-xxl-6 {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    .py-xxl-6 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .mx-xxl-6 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .px-xxl-6 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .m-xxl-6 {
        margin: 3rem !important;
    }

    .p-xxl-6 {
        padding: 3rem !important;
    }
}

/** var root**/
/** breakpoints **/
/** spacing margin padding **/
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-transform-none {
    text-transform: none;
}

@media (min-width: 320px) {
    .text-xs-left {
        text-align: left !important;
    }

    .text-xs-center {
        text-align: center !important;
    }

    .text-xs-right {
        text-align: right !important;
    }

    .text-xs-uppercase {
        text-transform: uppercase;
    }

    .text-xs-transform-none {
        text-transform: none !important;
    }
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-center {
        text-align: center !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-uppercase {
        text-transform: uppercase;
    }

    .text-sm-transform-none {
        text-transform: none !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-uppercase {
        text-transform: uppercase;
    }

    .text-md-transform-none {
        text-transform: none !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-uppercase {
        text-transform: uppercase;
    }

    .text-lg-transform-none {
        text-transform: none !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-center {
        text-align: center !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-uppercase {
        text-transform: uppercase;
    }

    .text-xl-transform-none {
        text-transform: none !important;
    }
}

@media (min-width: 1400px) {
    .text-xxl-left {
        text-align: left !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }

    .text-xxl-right {
        text-align: right !important;
    }

    .text-xxl-uppercase {
        text-transform: uppercase;
    }

    .text-xxl-transform-none {
        text-transform: none !important;
    }
}

/** var root**/
/** breakpoints **/
/** spacing margin padding **/
.bg-cover {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-contain {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

@media (min-width: 320px) {
    .bg-xs-cover {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-xs-contain {
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

@media (min-width: 576px) {
    .bg-sm-cover {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-sm-contain {
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

@media (min-width: 768px) {
    .bg-md-cover {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-md-contain {
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

@media (min-width: 992px) {
    .bg-lg-cover {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-lg-contain {
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

@media (min-width: 1200px) {
    .bg-xl-cover {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-xl-contain {
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

@media (min-width: 1400px) {
    .bg-xxl-cover {
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-xxl-contain {
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
    }
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Bold.eot");
    src: local("Manrope Bold"), local("Manrope-Bold"), url("../fonts/Manrope-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff"), url("../fonts/Manrope-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Semibold.eot");
    src: local("Manrope Semibold"), local("Manrope-Semibold"), url("../fonts/Manrope-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Manrope-Semibold.woff2") format("woff2"), url("../fonts/Manrope-Semibold.woff") format("woff"), url("../fonts/Manrope-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Regular.eot");
    src: local("Manrope Regular"), local("Manrope-Regular"), url("../fonts/Manrope-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff"), url("../fonts/Manrope-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Light.eot");
    src: local("Manrope Light"), local("Manrope-Light"), url("../fonts/Manrope-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Manrope-Light.woff2") format("woff2"), url("../fonts/Manrope-Light.woff") format("woff"), url("../fonts/Manrope-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Thin.eot");
    src: local("Manrope Thin"), local("Manrope-Thin"), url("../fonts/Manrope-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Manrope-Thin.woff2") format("woff2"), url("../fonts/Manrope-Thin.woff") format("woff"), url("../fonts/Manrope-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Medium.eot");
    src: local("Manrope Medium"), local("Manrope-Medium"), url("../fonts/Manrope-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff"), url("../fonts/Manrope-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-ExtraBold.eot");
    src: local("Manrope ExtraBold"), local("Manrope-ExtraBold"), url("../fonts/Manrope-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Manrope-ExtraBold.woff2") format("woff2"), url("../fonts/Manrope-ExtraBold.woff") format("woff"), url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

html {
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    width: 100%;
    font-size: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

*:before, *:after {
    box-sizing: inherit;
}

button, input, textarea, select {
    outline: none;
    box-shadow: none;
    border: none;
    background: none;
    text-decoration: none;
    border-radius: 0px;
    box-sizing: border-box;
}

button:active, button:focus, button:hover, select:active, select:focus, select:hover {
    outline: none;
    box-shadow: none;
    border: none;
    background: none;
    text-decoration: none;
}

textarea {
    resize: none;
}

label {
    outline: none;
    box-shadow: none;
    border: none;
    background: none;
    display: block;
}

button {
    cursor: pointer;
}

.lazyload, .lazyloading {
    opacity: 0;
}

.lazyloaded {
    opacity: 1;
    transition: opacity 0.3s linear;
}

.kmnd-main {
    position: relative;
    overflow: hidden;
    min-height: unset;
}

.kmnd-main_services {
    overflow: visible;
}

.kmnd-body {
    width: 100%;
    min-width: 320px;
    min-height: 100vh;
    font-family: var(--kmnd-body-font-family-primary);
    font-size: 1rem;
    line-height: var(--kmnd-line-height);
    color: var(--kmnd-body-color-primary);
    background: var(--kmnd-body-background-primary);
    margin: 0 auto;
    overflow-x: hidden;
}

.kmnd-body_noscroll {
    overflow: hidden;
}

.tabs__list {
    list-style: none;
    display: flex;
    align-items: center;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tabs__list::-webkit-scrollbar {
    display: none;
}

.tabs__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: solid 1px var(--kmnd-body-border-color-primary);
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 50px;
    transition: var(--kmnd-transition);
    text-decoration: none;
    box-sizing: border-box;
    min-height: 46px;
    font-size: 0.813rem;
    cursor: pointer;
    margin-right: 12px;
    white-space: nowrap;
}

.tabs__item:last-of-type {
    margin-right: 0;
}

.tabs__item:hover {
    background: none;
    color: #BCBEE7;
    border: solid 1px #BCBEE7;
}

.tabs__item:active {
    background: none;
    color: #888BC4;
    border: solid 1px #888BC4;
}

.tabs__item_active {
    background: var(--kmnd-body-background-accent);
    color: var(--kmnd-body-color-primary-inverted);
    pointer-events: none;
}

.tabs__content {
    transition: all 0.5s ease;
    max-height: 0px;
    overflow: hidden;
}

.tabs__content_active {
    max-height: 500px;
}

.accordion {
    border-bottom: 1px solid var(--kmnd-body-border-color-secondary);
}

.accordion__head {
    padding: 16px 0 24px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.accordion__head p {
    margin-right: 35px;
    flex: 1;
}

.accordion__head .arrow.arrow_down svg {
    transition: var(--kmnd-transition);
}

.accordion__body {
    transition: all 0.5s ease;
    max-height: 0px;
    overflow: hidden;
}

.accordion__body p {
    padding-bottom: 24px;
    max-width: 570px;
}

.accordion_active .accordion__head {
    padding-bottom: 16px;
}

.accordion_active .accordion__head .arrow.arrow_down svg {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.accordion_active .accordion__body {
    max-height: 500px;
}

.btn {
    cursor: pointer;
    background: var(--kmnd-body-background-accent);
    color: var(--kmnd-body-color-primary-inverted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: solid 1px var(--kmnd-body-border-color-primary);
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 50px;
    transition: var(--kmnd-transition);
    text-decoration: none;
    box-sizing: border-box;
    min-height: 56px;
}

.btn:focus {
    background: var(--kmnd-body-background-accent);
    border: solid 1px var(--kmnd-body-border-color-primary);
}

.btn:hover {
    background: #BCBEE7;
    border: solid 1px #BCBEE7;
}

.btn:active {
    background: #888BC4;
    border: solid 1px #888BC4;
    transition: 0s;
}

.btn:disabled, .btn[disabled] {
    background: #E5E5E7;
    color: var(--kmnd-body-color-secondary);
    border: solid 1px #E5E5E7;
}

.btn_sm {
    font-size: 0.813rem;
    padding: 16px 22px;
}

.btn_outlined {
    background: none;
    color: var(--kmnd-body-color-accent);
}

.btn_outlined:focus {
    background: none;
}

.btn_outlined:hover {
    background: none;
    color: #BCBEE7;
}

.btn_outlined:active {
    background: none;
    color: #888BC4;
}

.btn_outlined:disabled, .btn_outlined[disabled] {
    background: none;
    color: var(--kmnd-body-color-secondary);
    border: solid 1px #E5E5E7;
}

.btn_inverted {
    background: var(--kmnd-body-background-accent-inverted);
    border: solid 1px var(--kmnd-body-background-accent-inverted);
    color: var(--kmnd-body-color-primary-inverted);
}

.btn_inverted:focus {
    background: var(--kmnd-body-background-accent-inverted);
    border: solid 1px var(--kmnd-body-background-accent-inverted);
}

.btn_inverted:hover {
    background: #F8D0AD;
    border: solid 1px #F8D0AD;
}

.btn_inverted:active {
    background: #F8C49A;
    border: solid 1px #F8C49A;
}

.btn_inverted:disabled, .btn_inverted[disabled] {
    background: #E5E5E7;
    color: var(--kmnd-body-color-secondary);
    border: solid 1px #E5E5E7;
}

.btn_secondary {
    padding: 0;
    min-height: 0px;
    background: none;
    border: none;
    color: var(--kmnd-body-color-primary);
    text-transform: uppercase;
    text-decoration: underline;
}

.btn_secondary:focus {
    background: none;
    border: none;
    text-decoration: underline;
}

.btn_secondary:hover {
    background: none;
    border: none;
    text-decoration: underline;
    color: var(--kmnd-body-color-secondary);
}

.btn_secondary:active {
    background: none;
    border: none;
    text-decoration: underline;
    color: var(--kmnd-body-color-tertiary);
}

.btn_secondary:disabled, .btn_secondary[disabled] {
    background: none;
    border: none;
    color: var(--kmnd-body-color-secondary);
}

.btn_secondary svg, .btn_secondary img {
    height: 24px;
    width: auto;
    display: block;
    margin-right: 4px;
}

.btn_slim {
    padding: 14px 22px;
    font-size: 0.813rem;
    min-height: 46px;
}

.link {
    text-decoration: underline;
    color: var(--kmnd-body-color-accent);
    transition: var(--kmnd-transition);
    cursor: pointer;
    font-weight: 600;
}

.link:focus {
    color: var(--kmnd-body-color-accent);
    text-decoration: underline;
}

.link:hover {
    text-decoration: underline;
    color: #BCBEE7;
}

.link:active {
    text-decoration: underline;
    color: #888BC4;
    transition: 0s;
}

.search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 489px;
    background: var(--kmnd-body-background-tertiary);
    border-radius: 50px;
    position: relative;
}

.search svg {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 24px;
    display: block;
    width: 16px;
    height: auto;
}

.search input {
    padding: 16px 16px 16px 48px;
    display: block;
    flex: 1;
    color: var(--kmnd-body-color-primary);
    width: 100%;
}

.search input::placeholder {
    color: var(--kmnd-body-color-secondary);
}

.arrow {
    height: 32px;
    min-width: 32px;
    max-width: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--kmnd-transition);
    background: var(--kmnd-body-background-accent);
    border: solid 1px var(--kmnd-body-background-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.arrow svg {
    height: 16px;
    width: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow svg path {
    transition: var(--kmnd-transition);
}

.arrow:hover {
    background: #BCBEE7;
    border: solid 1px #BCBEE7;
}

.arrow:active {
    background: #888BC4;
    border: solid 1px #888BC4;
    transition: 0s;
}

.arrow:active svg path {
    transition: 0s;
}

.arrow_left svg {
    transform: translate(-50%, -50%) rotate(180deg);
}

.arrow_down svg {
    transform: translate(-50%, -50%) rotate(90deg);
}

.arrow_up svg {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.arrow_outlined {
    background: none;
}

.arrow_outlined svg path {
    fill: var(--kmnd-body-background-accent);
}

.arrow_outlined:hover {
    background: none;
    border: solid 1px #BCBEE7;
}

.arrow_outlined:hover svg path {
    fill: #BCBEE7;
}

.arrow_outlined:active {
    background: none;
    border: solid 1px #888BC4;
}

.arrow_outlined:active svg path {
    fill: #888BC4;
}

.play {
    height: 64px;
    width: 64px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--kmnd-transition);
    background: var(--kmnd-body-background-accent);
    border: solid 1px var(--kmnd-body-background-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play svg {
    height: 14px;
    width: auto;
    display: block;
}

.play svg path {
    transition: var(--kmnd-transition);
}

.play:hover {
    background: #BCBEE7;
    border: solid 1px #BCBEE7;
}

.play:active {
    background: #888BC4;
    border: solid 1px #888BC4;
    transition: 0s;
}

.play:active svg path {
    transition: 0s;
}

.h1 {
    font-weight: 600;
    font-size: 34px;
    line-height: 105%;
    margin: 0;
}

.h2 {
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
    margin: 0;
}

.h2_mobile {
    font-size: 1.625rem;
    line-height: 1.231;
}

.h3 {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.091;
    margin: 0;
}

.h4 {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.333;
    margin: 0;
}

.subtitle {
    font-size: 18px;
}

.fz-lg {
    font-size: 1.125rem;
    line-height: 1.333;
}

.fz-sm {
    font-size: 0.875rem;
    line-height: 1.429;
}

.c-primary {
    color: var(--kmnd-body-color-primary);
}

.c-secondary {
    color: var(--kmnd-body-color-secondary);
}

.c-tertiary {
    color: var(--kmnd-body-color-tertiary);
}

.c-accent {
    color: var(--kmnd-body-color-accent);
}

.c-primary-inverted {
    color: var(--kmnd-body-color-primary-inverted);
}

.c-secondary-inverted {
    color: var(--kmnd-body-color-secondary-inverted);
}

.bg-primary {
    background-color: var(--kmnd-body-background-primary);
}

.bg-secondary {
    background-color: var(--kmnd-body-background-secondary);
}

.bg-tertiary {
    background-color: var(--kmnd-body-background-tertiary);
}

.bg-accent {
    background-color: var(--kmnd-body-background-accent);
}

.bg-primary-inverted {
    background-color: var(--kmnd-body-background-primary-inverted);
}

.bg-accent-inverted {
    background-color: var(--kmnd-body-background-accent-inverted);
}

.text-decoration-none {
    text-decoration: none;
}

.soc {
    display: flex;
    align-items: center;
}

.soc__item {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    background: #D7D6F9;
    cursor: pointer;
    margin-right: 10px;
}

.soc__item:last-of-type {
    margin-right: 0;
}

.soc__item img {
    transition: var(--kmnd-transition);
    height: 24px;
    width: auto;
    display: block;
}

.soc__item:hover img {
    filter: invert(46%) sepia(25%) saturate(1001%) hue-rotate(200deg) brightness(90%) contrast(87%);
}

.input {
    position: relative;
}

.input .wpcf7-form-control-wrap {
    display: block;
}

.input input {
    background: var(--kmnd-body-background-tertiary);
    display: block;
    width: 100%;
    color: var(--kmnd-body-color-secondary);
    padding: 9px 10px 10px 16px;
    border-radius: 50px;
    line-height: 1.5;
    border: solid 1px var(--kmnd-body-border-color-secondary);
    color: var(--kmnd-body-color-primary);
}

.input input::placeholder {
    color: var(--kmnd-body-color-secondary);
}

.input input:active, .input input:focus, .input input:hover {
    border: solid 1px var(--kmnd-body-border-color-secondary);
    background: var(--kmnd-body-background-tertiary);
}

.input input.error, .group-input input.error {
    border: solid 1px #EE493E;
}

.input input.error:active, .input input.error:focus, .input input.error:hover {
    border: solid 1px #EE493E;
}

.input label.error, .group-input label.error {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #EE493E;
    border: solid 1px #EE493E;
    padding: 0px 14px;
    background: var(--kmnd-body-background-tertiary);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 18px;
    transform: translateY(-50%);
}

.textarea {
    position: relative;
}

.textarea textarea {
    background: var(--kmnd-body-background-tertiary);
    display: block;
    width: 100%;
    color: var(--kmnd-body-color-secondary);
    padding: 9px 10px 10px 16px;
    border-radius: 16px;
    line-height: 1.5;
    border: solid 1px var(--kmnd-body-border-color-secondary);
    color: var(--kmnd-body-color-primary);
    resize: none;
}

.textarea textarea::placeholder {
    color: var(--kmnd-body-color-secondary);
}

.textarea textarea:active, .textarea textarea:focus, .textarea textarea:hover {
    border: solid 1px var(--kmnd-body-border-color-secondary);
    background: var(--kmnd-body-background-tertiary);
}

.textarea textarea.error {
    border: solid 1px #EE493E;
}

.textarea textarea.error:active, .textarea textarea.error:focus, .textarea textarea.error:hover {
    border: solid 1px #EE493E;
}

.textarea label.error {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #EE493E;
    border: solid 1px #EE493E;
    padding: 0px 14px;
    background: var(--kmnd-body-background-tertiary);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 18px;
    transform: translateY(-50%);
}

.select {
    position: relative;
}

.select .ui-selectmenu-button, .select select {
    background: var(--kmnd-body-background-tertiary);
    display: block;
    width: 100%;
    color: var(--kmnd-body-color-secondary);
    padding: 9px 10px 10px 16px;
    border-radius: 50px;
    line-height: 1.5;
    border: solid 1px var(--kmnd-body-border-color-secondary);
    color: var(--kmnd-body-color-primary);
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
}

.select .ui-selectmenu-button::-ms-expand, .select select::-ms-expand {
    display: none;
}

.select .ui-selectmenu-button::placeholder, .select select::placeholder {
    color: var(--kmnd-body-color-secondary);
}

.select .ui-selectmenu-button:active, .select .ui-selectmenu-button:focus, .select .ui-selectmenu-button:hover, .select select:active, .select select:focus, .select select:hover {
    border: solid 1px var(--kmnd-body-border-color-secondary);
    background: var(--kmnd-body-background-tertiary);
}

.select .ui-selectmenu-button.error, .select select.error {
    border: solid 1px #EE493E;
}

.select .ui-selectmenu-button.error:active, .select .ui-selectmenu-button.error:focus, .select .ui-selectmenu-button.error:hover, .select select.error:active, .select select.error:focus, .select select.error:hover {
    border: solid 1px #EE493E;
}

.select select {
    padding-right: 35px;
}

.select select.error + .ui-selectmenu-button {
    border: solid 1px #EE493E;
}

.select label.error {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #EE493E;
    border: solid 1px #EE493E;
    padding: 0px 14px;
    background: var(--kmnd-body-background-tertiary);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 18px;
    transform: translateY(-50%);
}

.select:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cg clip-path='url(.aasd123asd123asd13)'%3E%3Cpath fill='%23878787' stroke='%23878787' stroke-width='.1' d='m8.384 12.402 6.458-6.476a.543.543 0 0 0-.769-.766L8 11.25 1.927 5.16a.543.543 0 1 0-.769.766l6.458 6.476a.542.542 0 0 0 .768 0Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath class='aasd123asd123asd13'%3E%3Cpath fill='%23fff' d='M16 0v16H0V0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center/contain;
    pointer-events: none;
    transition: var(--kmnd-transition);
}

.select__placeholder {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 16px;
    line-height: 1.5;
    color: var(--kmnd-body-color-secondary);
    z-index: 1;
    pointer-events: none;
}

.select__placeholder_hidden {
    display: none;
}

.select_selection:after {
    transform: translateY(-50%) rotate(-180deg);
}

.checkbox {
    display: flex;
    flex-direction: column;
}

.checkbox label {
    display: block;
    box-sizing: border-box;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    font-size: 0.875rem;
    padding-left: 22px;
    position: relative;
    cursor: pointer;
    order: 1;
}

.checkbox label a {
    color: var(--kmnd-body-color-accent);
    text-decoration: underline;
}

.checkbox label:before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: var(--kmnd-body-background-tertiary);
    border: solid 1px var(--kmnd-body-background-tertiary);
    display: block;
    position: absolute;
    left: 0;
    top: 2px;
}

.checkbox label:after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: var(--kmnd-body-background-accent);
    display: none;
    position: absolute;
    left: 3px;
    top: 5px;
}

.checkbox input {
    display: block;
    box-sizing: border-box;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    width: 0 !important;
    height: 0 !important;
    line-height: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    order: 0;
}

.checkbox label.error {
    padding-left: 22px;
    color: #EE493E;
    order: 2;
}

.checkbox label.error:before, .checkbox label.error:after {
    display: none;
}

.checkbox input:checked ~ label:not(.error):after {
    display: block;
}

.checkbox input.error ~ label:not(.error):before {
    border: solid 1px #EE493E;
}

.date {
    position: relative;
}

.date input {
    background: var(--kmnd-body-background-tertiary);
    display: block;
    width: 100%;
    color: var(--kmnd-body-color-secondary);
    padding: 9px 42px 10px 16px;
    border-radius: 50px;
    line-height: 1.5;
    border: solid 1px var(--kmnd-body-border-color-secondary);
    color: var(--kmnd-body-color-primary);
}

.date input::placeholder {
    color: var(--kmnd-body-color-secondary);
}

.date input:active, .date input:focus, .date input:hover {
    border: solid 1px var(--kmnd-body-border-color-secondary);
    background: var(--kmnd-body-background-tertiary);
}

.date input.error {
    border: solid 1px #EE493E;
}

.date input.error:active, .date input.error:focus, .date input.error:hover {
    border: solid 1px #EE493E;
}

.date label.error {
    font-size: 0.75rem;
    line-height: 1.5;
    color: #EE493E;
    border: solid 1px #EE493E;
    padding: 0px 14px;
    background: var(--kmnd-body-background-tertiary);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    position: absolute;
    top: 0;
    right: 18px;
    transform: translateY(-50%);
}

.date:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cg fill='%23878787' clip-path='url(.asdasd123asdasda)'%3E%3Cpath d='M14.167 16H1.833A1.835 1.835 0 0 1 0 14.166v-11c0-1.011.822-1.833 1.833-1.833h12.334c1.011 0 1.833.822 1.833 1.833v11A1.835 1.835 0 0 1 14.167 16ZM1.833 2.333A.834.834 0 0 0 1 3.166v11c0 .46.374.834.833.834h12.334c.459 0 .833-.374.833-.834v-11a.834.834 0 0 0-.833-.833H1.833Z'/%3E%3Cpath d='M15.5 6.333H.5a.5.5 0 0 1 0-1h15a.5.5 0 0 1 0 1ZM3.833 4a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 1 0v3a.5.5 0 0 1-.5.5Zm8.334 0a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 1 0v3a.5.5 0 0 1-.5.5Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath class='asdasd123asdasda'%3E%3Cpath fill='%23fff' d='M0 0h16v16H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") no-repeat center/contain;
    pointer-events: none;
}

.ui-datepicker {
    background: var(--kmnd-body-background-primary);
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 0;
}

.ui-datepicker .ui-datepicker-header {
    padding: 16px 16px 9px;
}

.ui-datepicker .ui-datepicker-title {
    font-size: 1rem;
    line-height: 1.5;
}

.ui-datepicker-month {
    font-weight: 600;
}

.ui-datepicker-month:after {
    content: ",";
    display: inline;
}

.ui-datepicker th {
    padding: 0 8px 8px;
    font-weight: normal;
    color: var(--kmnd-body-color-accent);
}

.ui-datepicker th:first-of-type {
    padding-left: 16px;
}

.ui-datepicker th:last-of-type {
    padding-right: 16px;
}

.ui-datepicker table {
    font-size: 0.875rem;
    line-height: 1.429;
    margin: 0;
}

.ui-datepicker td {
    padding: 0;
}

.ui-datepicker td span, .ui-datepicker td a {
    padding: 0px 8px 8px;
    text-align: center;
}

.ui-datepicker tbody tr:last-of-type td a, .ui-datepicker tbody tr:last-of-type td span {
    padding-bottom: 11px;
}

.ui-datepicker td a {
    color: var(--kmnd-body-color-primary);
    text-decoration: none;
}

.ui-datepicker td a:hover {
    color: var(--kmnd-body-color-accent);
}

.ui-datepicker .ui-datepicker-unselectable, .ui-datepicker .ui-state-disabled {
    color: var(--kmnd-body-color-secondary);
}

.ui-datepicker .ui-datepicker-next {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%23131313' stroke='%23131313' stroke-width='.1' d='M10.873 8.726 5.735 4.113a.465.465 0 0 0-.61 0 .36.36 0 0 0 .002.549L9.959 9l-4.832 4.338a.36.36 0 0 0-.001.548c.04.036.087.065.14.085a.472.472 0 0 0 .469-.084l5.138-4.613A.369.369 0 0 0 11 9a.37.37 0 0 0-.127-.274Z'/%3E%3C/svg%3E") no-repeat center/cover;
    height: 20px;
    width: 20px;
    top: 16px;
    right: 16px;
    cursor: pointer;
    transition: var(--kmnd-transition);
}

.ui-datepicker .ui-datepicker-next span {
    display: none !important;
}

.ui-datepicker .ui-datepicker-next:hover {
    filter: invert(60%) sepia(7%) saturate(0%) hue-rotate(183deg) brightness(88%) contrast(82%);
}

.ui-datepicker .ui-datepicker-next.ui-state-disabled, .ui-datepicker .ui-datepicker-prev.ui-state-disabled {
    opacity: 0;
}

.ui-datepicker .ui-datepicker-prev {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath fill='%23131313' stroke='%23131313' stroke-width='.1' d='M10.873 8.726 5.735 4.113a.465.465 0 0 0-.61 0 .36.36 0 0 0 .002.549L9.959 9l-4.832 4.338a.36.36 0 0 0-.001.548c.04.036.087.065.14.085a.472.472 0 0 0 .469-.084l5.138-4.613A.369.369 0 0 0 11 9a.37.37 0 0 0-.127-.274Z'/%3E%3C/svg%3E") no-repeat center/cover;
    height: 20px;
    width: 20px;
    top: 18px;
    left: 16px;
    transform: rotate(180deg);
    cursor: pointer;
    transition: var(--kmnd-transition);
}

.ui-datepicker .ui-datepicker-prev span {
    display: none !important;
}

.ui-datepicker .ui-datepicker-prev.ui-state-disabled {
    opacity: 0;
}

.ui-datepicker .ui-datepicker-prev:hover {
    filter: invert(60%) sepia(7%) saturate(0%) hue-rotate(183deg) brightness(88%) contrast(82%);
}

.ui-selectmenu-menu {
    z-index: 1001;
    overflow: hidden;
    background: var(--kmnd-body-background-tertiary);
    border-radius: 16px;
    padding: 16px 16px 0px 16px;
    width: 100%;
    max-width: 300px;
}

.ui-selectmenu-menu:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 43px;
    background: linear-gradient(180deg, rgba(241, 241, 241, 0) 0%, #F1F1F1 100%);
    pointer-events: none;
}

.ui-selectmenu-menu .ui-menu {
    width: 100% !important;
    overflow-y: scroll;
    height: 152px;
    padding-right: 26px;
}

.ui-selectmenu-menu .ui-menu::-webkit-scrollbar {
    width: 3px;
}

.ui-selectmenu-menu .ui-menu::-webkit-scrollbar-track {
    background: #E5E5E7;
    border-radius: 50px;
}

.ui-selectmenu-menu .ui-menu::-webkit-scrollbar-thumb {
    background: #878787;
    border-radius: 50px;
}

.ui-menu .ui-menu-item {
    margin-bottom: 16px;
}

.ui-menu .ui-menu-item-wrapper {
    padding: 0;
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
    margin: 0;
    color: var(--kmnd-body-color-accent);
}

.pointer-events-none {
    pointer-events: none;
}

.breadcrumbs__section {
    padding: 24px 0 32px;
}

.breadcrumbs ul {
    list-style: none;
}

.breadcrumbs li {
    font-size: 14px;
    display: inline-block;
    color: var(--kmnd-body-color-primary);
}

.breadcrumbs li:before {
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='10' fill='none' viewBox='0 0 9 10'%3E%3Cpath fill='%23878787' d='M6.976 4.784 3.333 1.152a.305.305 0 0 0-.43.432L6.327 5 2.902 8.416a.305.305 0 1 0 .431.432l3.643-3.632a.305.305 0 0 0 0-.432Z'/%3E%3C/svg%3E") no-repeat center/contain;
    display: inline-block;
    height: 9px;
    width: 9px;
    margin: 0 8px;
}

.breadcrumbs li:first-of-type:before {
    display: none;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--kmnd-body-color-secondary);
}

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.slick-dots {
    width: 100%;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.slick-dots li {
    margin-right: 6px;
    box-sizing: border-box;
    display: block;
}

.slick-dots li:last-of-type {
    margin-right: 0;
}

.slick-dots li.slick-active button {
    background: var(--kmnd-body-color-primary);
}

.slick-dots button {
    color: rgba(0, 0, 0, 0);
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    cursor: pointer;
    height: 13px;
    width: 13px;
    border-radius: 50%;
    box-sizing: border-box;
    display: block;
    background: #E5E5E7;
    font-size: 0;
    line-height: 1;
}

.slider__section {
    padding-top: 124px;
}

.slider__section_last {
    padding-bottom: 124px;
}

.slider__title {
    margin-bottom: 48px;
}

.slider__slider-wrapper {
    position: relative;
}

.slider__slider:not(.slick-initialized) {
    display: flex;
}

.slider__slider:not(.slick-initialized) .slider__item {
    width: calc((100% - 16px - 16px) / 3);
    margin-right: 16px;
    display: none;
}

.slider__slider:not(.slick-initialized) .slider__item:nth-of-type(3n+3) {
    margin-right: 0;
}

.slider__slider:not(.slick-initialized) .slider__item:nth-of-type(1), .slider__slider:not(.slick-initialized) .slider__item:nth-of-type(2), .slider__slider:not(.slick-initialized) .slider__item:nth-of-type(3) {
    display: block;
}

.slider__slider .slick-track {
    display: flex !important;
}

.slider__slider .slick-slide {
    margin-left: 8px;
    margin-right: 8px;
    height: inherit !important;
}

.slider__slider .slick-list {
    margin-left: -8px;
    margin-right: -8px;
}

.slider__item {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.slider__arrow {
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.slider__arrow_prev {
    left: -56px;
}

.slider__arrow_next {
    right: -56px;
}

.slider__button {
    margin-top: 48px;
}

.item-blog {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.item-blog a {
    text-decoration: none;
    display: block;
}

.item-blog__image {
    width: 100%;
    position: relative;
    display: block;
}

.item-blog__image:after {
    content: "";
    position: relative;
    display: block;
    padding-top: 58.13%;
}

.item-blog__body {
    padding: 16px 24px 32px;
    background: var(--kmnd-body-background-tertiary);
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.item-blog__title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.item-blog__text {
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 24px;
}

.item-blog__button {
    margin-top: auto;
}

.item-blog__label {
    position: absolute;
    top: 16px;
    left: 0;
    display: inline-flex;
    align-items: center;
    padding: 9px 4px;
    border-radius: 0px 5px 5px 0px;
}

.item-blog__label svg {
    margin-right: 4px;
}

.item-blog__stats {
    margin-bottom: 8px;
}

.item-blog__views {
    margin-left: 24px;
}

.item-blog__views svg {
    display: block;
    height: 24px;
    width: auto;
    margin-right: 8px;
}

.item-blog__button {
    text-decoration: underline !important;
}

.item-location {
    padding: 24px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.item-location__icon {
    height: 39px;
    width: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: #D7D6F9;
    border-radius: 50%;
}

.item-location__title {
    margin: 24px auto 8px;
}

.item-location__phone a {
    text-decoration: none;
    color: inherit;
}

.item-location__map {
    margin: 24px auto;
}

.item-location__button {
    margin-top: auto;
}

.item-location__station img {
    height: 16px;
    width: auto;
    display: block;
    margin-right: 4px;
}

.item-service {
    text-decoration: none;
    display: block;
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.item-service:after {
    content: "";
    display: block;
    position: relative;
    padding-top: 127.37%;
}

.item-service__content {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    border-radius: 50px;
    padding: 16px 24px;
    transition: var(--kmnd-transition);
    min-height: 108px;
}

.item-service__title {
    flex: 1;
    margin-right: 16px;
    transition: var(--kmnd-transition);
}

.item-service__title span {
    margin-top: 4px;
    display: inline-block;
}

.item-service__arrow {
    pointer-events: none;
}

.item-service:hover .item-service__content {
    background: var(--kmnd-body-background-accent);
}

.item-service:hover .item-service__title {
    color: var(--kmnd-body-color-primary-inverted);
}

.item-service:hover .item-service__arrow {
    background: var(--kmnd-body-color-secondary-inverted);
}

.video {
    display: block;
    margin: 0 auto;
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
}

.video figure {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 20px;
}

.video figure .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.video_active figure {
    display: none;
}

.video_active iframe {
    opacity: 1;
}

.item-team {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.item-team a {
    text-decoration: none;
    display: inline-block;
}

.item-team__image {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
}

.item-team__image:after {
    content: "";
    display: block;
    position: relative;
    padding-top: 74.69%;
}

.item-team__name {
    padding: 16px;
    border-radius: 50px;
    width: 100%;
    margin: 0 auto;
    transform: translateY(-50%);
    margin-bottom: -24px;
    transition: var(--kmnd-transition);
}

.item-team__position {
    margin-bottom: 8px;
}

.item-team__description {
    margin-bottom: 8px;
}

.item-team__experience {
    margin-bottom: 24px;
}

.item-team__button {
    pointer-events: none;
    margin-top: auto;
}

.item-team__body {
    padding: 0 16px 34px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.item-team:hover .item-team__name {
    background: var(--kmnd-body-color-secondary-inverted);
}

.item-team:hover .item-team__button .btn {
    border: solid 1px #BCBEE7;
    color: #BCBEE7;
}

.item-review {
    padding: 24px 24px 48px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.item-review__image {
    height: 48px;
    width: 48px;
    display: block;
    margin: 0 0 16px;
    border-radius: 50%;
    overflow: hidden;
}

.item-review__stats {
    margin-bottom: 8px;
}

.item-review__stars svg {
    height: 16px;
    width: auto;
    display: block;
    margin-right: 2px;
}

.item-review__stars svg:last-of-type {
    margin-right: 0;
}

.item-review__name {
    margin-bottom: 16px;
}

.item-cert {
    text-decoration: none;
    display: block;
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
}

.item-cert:after {
    content: "";
    position: relative;
    display: block;
    padding-top: 103.91%;
}

.item-cert figure {
    height: 89.85%;
    width: 66.56%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slick-slide > div {
    height: 100%;
}

.slick-slide > div > .slider__item {
    height: 100%;
}

.pagination {
    margin-top: 48px;
    display: flex;
}

.pagination__list {
    list-style: none;
    display: flex;
    align-items: center;
}

.pagination__item {
    color: var(--kmnd-body-color-primary);
    padding: 7px 0;
    width: 33px;
    text-align: center;
    border-radius: 7px;
    margin-right: 8px;
    transition: var(--kmnd-transition);
}

.pagination__item:last-of-type {
    margin-right: 0;
}

.pagination__item a {
    text-decoration: none;
    color: inherit;
}

.pagination__item_current {
    background: var(--kmnd-body-background-accent);
    color: var(--kmnd-body-color-primary-inverted);
}

@media (max-width: 1150px) {
    .slider__arrow_prev {
        left: 0;
    }

    .slider__arrow_next {
        right: 0;
    }
}

@media (max-width: 992px) {
    .mt-7 {
        margin-top: 30px !important;
    }

    .mt-8 {
        margin-top: 40px !important;
    }

    .mb-7 {
        margin-bottom: 30px !important;
    }

    .mb-8 {
        margin-bottom: 40px !important;
    }

    .pb-7 {
        padding-bottom: 60px;
    }

    .h1 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 16px;
    }

    .h2 {
        font-size: 18px;
    }

    .breacrumbs__section {
        padding-top: 16px;
    }

    .slider__section {
        padding-top: 94px;
    }

    .slider__section_last {
        padding-bottom: 64px;
    }

    .slider__arrow {
        display: none;
    }

    .slider__slider-wrapper_wide {
        width: 140vw;
    }

    .slider__slider-wrapper_cert {
        width: 140vw;
    }
}

@media (max-width: 576px) {
    .pb-7 {
        padding-bottom: 35px;
    }

    .slider__section {
        padding-top: 64px;
    }

    .slider__section_last {
        padding-bottom: 48px;
    }

    .slider__title {
        margin-bottom: 32px;
    }

    .slider__slider-wrapper {
        width: 620px;
    }

    .slider__slider-wrapper_wide {
        width: 620px;
    }

    .slider__slider-wrapper_cert {
        width: 100vw;
        margin-left: -24px;
    }

    .slider__slider .slick-slide {
        margin-left: 4px;
        margin-right: 4px;
    }

    .slider__slider .slick-list {
        margin-left: -4px;
        margin-right: -4px;
    }

    .slider__button {
        margin-top: 32px;
    }

    .item-blog__image:after {
        padding-top: 62.25%;
    }

    .item-service {
        padding: 8px;
    }

    .item-service:after {
        padding-top: 144.17%;
    }

    .item-service__content {
        width: calc(100% - 16px);
        bottom: 8px;
    }

    .item-service__title {
        margin-right: 0;
    }

    .accordion__head {
        padding: 12px 0 20px;
    }

    .accordion__head p {
        margin-right: 15px;
    }

    .accordion__body p {
        padding-bottom: 24px;
        padding-top: 0px;
        max-width: 279px;
    }

    .accordion_active .accordion__head {
        padding-bottom: 16px;
    }

    .pagination {
        margin-top: 32px;
    }

    .tabs__list {
        width: 100vw;
        margin-left: -24px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 320px) {
    .search input {
        padding-left: 16px;
    }

    .search svg {
        display: none;
    }

    .slider__slider-wrapper {
        width: 580px;
    }

    .slider__slider-wrapper_cert {
        width: 100vw;
        margin-left: -15px;
    }

    .h1 {
        font-size: 23px;
    }

    .subtitle {
        font-size: 14px;
    }

    .tabs__list {
        width: 100vw;
        margin-left: -15px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.wp-block-image {
    height: max-content;
}

.wp-block-image img {
    height: 100%;
    width: 100%;
    object-position: top center;
    object-fit: contain;
}

.button {
    outline: none;
    border-radius: 0;
    background: none;
    border: none;
    font-family: inherit;
    color: inherit;
    transition: all ease .4s;
    display: flex;
    width: max-content;
    text-decoration: none;
}

.button:not([disabled]) {
    cursor: pointer;
}

.button--default {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid #3B95FF;
    color: #3B95FF;
    font-size: 15px;
    font-weight: 600;
    line-height: 160%;
    gap: 10px;
    background-color: transparent;
}

.button--full {
    color: #fff;
    background-color: #3B95FF;
}

@media (hover: hover) and (pointer: fine) {
    .button--default:hover {
        background-color: #3B95FF;
        color: #fff;
    }

    .button--full:hover {
        color: #3B95FF;
        background-color: transparent;
    }
}