/* Custom CSS Grid Layout System - Responsive Grid System */

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.opacity-1 {
    opacity: 1 !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.italic-text {
    font-style: italic;
}

/* Spacing */
.py-0 {
    padding-top: 0;
    padding-bottom: 0;
}

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

.py-17 {
    padding-top: 17px;
    padding-bottom: 17px;
}

.px-17 {
    padding-left: 17px;
    padding-right: 17px;
}

.pb-7 {
    padding-bottom: 7px;
}

.pb-48 {
    padding-bottom: 48px;
}

.pb-60 {
    padding-bottom: 60px;
}

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

.py {
    padding-top: 14px;
    padding-bottom: 14px;
}


.pl-5 {
    padding-left: 5px !important;
}

.pr-20 {
    padding-right: 20px;
}


.pb-26 {
    padding-bottom: 26px;
}

.pb-30 {
    padding-bottom: 30px;
}

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

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

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

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

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

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

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

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

.mt-36 {
    margin-top: 36px !important;
}

.ml-2 {
    margin-left: 4px !important;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-222 {
    padding-top: 222px;
}

.pt-64 {
    padding-top: 64px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-12 {
    padding-bottom: 12px;
}

.pt-45 {
    padding-top: 45px;
}

.mb-75 {
    margin-bottom: 75px;
}

.mb-72 {
    margin-bottom: 72px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb-12 {
    margin-bottom: 12px !important;
}

html .gap-50 {
    gap: 50px;
}

.gap-135 {
    gap: 135px;
}

.gap-54 {
    gap: 54px;
}

.br-8 {
    border-radius: 8px;
}

.line-height-normal {
    line-height: normal;
}

.ls-none {
    list-style: none;
}

.top-0 {
    top: 0;
}

/* Responsive */

@media (min-width: 992px) {
    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

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

    .mx-798 {
        max-width: 798px;
    }
}

@media (max-width: 991.99px) {

    html .gap-50 {
        gap: 15px;
    }
}



/* Max Width */
.max-w-500 {
    max-width: 500px;
}

.max-w-774 {
    max-width: 774px;
}

.max-w-452 {
    max-width: 452px;
}

/* Max Width */



/* Container */
.container {
    max-width: 1308px;
    width: 100%;
    margin: 0 auto;
    padding-inline-end: 0;
    padding-inline-start: 0;
}

.container-fluid {
    width: 100%;
    padding: 0 15px;
}

/* Row */
.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 15px;
    width: 100%;
    /* margin: 0 -15px;
  padding: 0 15px; */
}

.row.no-gutters {
    gap: 0;
    margin: 0;
    padding: 0;
}

/* Column Base */
.col {
    grid-column: span 12;
    min-width: 0;
    /* Prevents overflow */
}

.row.no-gutters .col,
.row.no-gutters [class*="col-"] {
    padding: 0;
}

/* Default columns (mobile first) */
.col-1 {
    grid-column: span 1;
}

.col-2 {
    grid-column: span 2;
}

.col-3 {
    grid-column: span 3;
}

.col-4 {
    grid-column: span 4;
}

.col-5 {
    grid-column: span 5;
}

.col-6 {
    grid-column: span 6;
}

.col-7 {
    grid-column: span 7;
}

.col-8 {
    grid-column: span 8;
}

.col-9 {
    grid-column: span 9;
}

.col-10 {
    grid-column: span 10;
}

.col-11 {
    grid-column: span 11;
}

.col-12 {
    grid-column: span 12;
}

/* Auto columns */
.col-auto {
    grid-column: auto;
    width: auto;
}

/* Offset classes */
.offset-1 {
    grid-column-start: 2;
}

.offset-2 {
    grid-column-start: 3;
}

.offset-3 {
    grid-column-start: 4;
}

.offset-4 {
    grid-column-start: 5;
}

.offset-5 {
    grid-column-start: 6;
}

.offset-6 {
    grid-column-start: 7;
}

.offset-7 {
    grid-column-start: 8;
}

.offset-8 {
    grid-column-start: 9;
}

.offset-9 {
    grid-column-start: 10;
}

.offset-10 {
    grid-column-start: 11;
}

.offset-11 {
    grid-column-start: 12;
}

.h-100 {
    height: 100%;
}

/* Breakpoints */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    /* .container {
        max-width: 540px;
    } */

    .col-sm {
        grid-column: span 12;
    }

    .col-sm-1 {
        grid-column: span 1;
    }

    .col-sm-2 {
        grid-column: span 2;
    }

    .col-sm-3 {
        grid-column: span 3;
    }

    .col-sm-4 {
        grid-column: span 4;
    }

    .col-sm-5 {
        grid-column: span 5;
    }

    .col-sm-6 {
        grid-column: span 6;
    }

    .col-sm-7 {
        grid-column: span 7;
    }

    .col-sm-8 {
        grid-column: span 8;
    }

    .col-sm-9 {
        grid-column: span 9;
    }

    .col-sm-10 {
        grid-column: span 10;
    }

    .col-sm-11 {
        grid-column: span 11;
    }

    .col-sm-12 {
        grid-column: span 12;
    }

    .col-sm-auto {
        grid-column: auto;
        width: auto;
    }

    .offset-sm-0 {
        grid-column-start: auto;
    }

    .offset-sm-1 {
        grid-column-start: 2;
    }

    .offset-sm-2 {
        grid-column-start: 3;
    }

    .offset-sm-3 {
        grid-column-start: 4;
    }

    .offset-sm-4 {
        grid-column-start: 5;
    }

    .offset-sm-5 {
        grid-column-start: 6;
    }

    .offset-sm-6 {
        grid-column-start: 7;
    }

    .offset-sm-7 {
        grid-column-start: 8;
    }

    .offset-sm-8 {
        grid-column-start: 9;
    }

    .offset-sm-9 {
        grid-column-start: 10;
    }

    .offset-sm-10 {
        grid-column-start: 11;
    }

    .offset-sm-11 {
        grid-column-start: 12;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    /* .container {
        max-width: 720px;
    } */

    .col-md {
        grid-column: span 12;
    }

    .col-md-1 {
        grid-column: span 1;
    }

    .col-md-2 {
        grid-column: span 2;
    }

    .col-md-3 {
        grid-column: span 3;
    }

    .col-md-4 {
        grid-column: span 4;
    }

    .col-md-5 {
        grid-column: span 5;
    }

    .col-md-6 {
        grid-column: span 6;
    }

    .col-md-7 {
        grid-column: span 7;
    }

    .col-md-8 {
        grid-column: span 8;
    }

    .col-md-9 {
        grid-column: span 9;
    }

    .col-md-10 {
        grid-column: span 10;
    }

    .col-md-11 {
        grid-column: span 11;
    }

    .col-md-12 {
        grid-column: span 12;
    }

    .col-md-auto {
        grid-column: auto;
        width: auto;
    }

    .offset-md-0 {
        grid-column-start: auto;
    }

    .offset-md-1 {
        grid-column-start: 2;
    }

    .offset-md-2 {
        grid-column-start: 3;
    }

    .offset-md-3 {
        grid-column-start: 4;
    }

    .offset-md-4 {
        grid-column-start: 5;
    }

    .offset-md-5 {
        grid-column-start: 6;
    }

    .offset-md-6 {
        grid-column-start: 7;
    }

    .offset-md-7 {
        grid-column-start: 8;
    }

    .offset-md-8 {
        grid-column-start: 9;
    }

    .offset-md-9 {
        grid-column-start: 10;
    }

    .offset-md-10 {
        grid-column-start: 11;
    }

    .offset-md-11 {
        grid-column-start: 12;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    /* .container {
        max-width: 960px;
    } */

    .col-lg {
        grid-column: span 12;
    }

    .col-lg-1 {
        grid-column: span 1;
    }

    .col-lg-2 {
        grid-column: span 2;
    }

    .col-lg-3 {
        grid-column: span 3;
    }

    .col-lg-4 {
        grid-column: span 4;
    }

    .col-lg-5 {
        grid-column: span 5;
    }

    .col-lg-6 {
        grid-column: span 6;
    }

    .col-lg-7 {
        grid-column: span 7;
    }

    .col-lg-8 {
        grid-column: span 8;
    }

    .col-lg-9 {
        grid-column: span 9;
    }

    .col-lg-10 {
        grid-column: span 10;
    }

    .col-lg-11 {
        grid-column: span 11;
    }

    .col-lg-12 {
        grid-column: span 12;
    }

    .col-lg-auto {
        grid-column: auto;
        width: auto;
    }

    .offset-lg-0 {
        grid-column-start: auto;
    }

    .offset-lg-1 {
        grid-column-start: 2;
    }

    .offset-lg-2 {
        grid-column-start: 3;
    }

    .offset-lg-3 {
        grid-column-start: 4;
    }

    .offset-lg-4 {
        grid-column-start: 5;
    }

    .offset-lg-5 {
        grid-column-start: 6;
    }

    .offset-lg-6 {
        grid-column-start: 7;
    }

    .offset-lg-7 {
        grid-column-start: 8;
    }

    .offset-lg-8 {
        grid-column-start: 9;
    }

    .offset-lg-9 {
        grid-column-start: 10;
    }

    .offset-lg-10 {
        grid-column-start: 11;
    }

    .offset-lg-11 {
        grid-column-start: 12;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    /* .container {
        max-width: 1140px;
    } */

    .col-xl {
        grid-column: span 12;
    }

    .col-xl-1 {
        grid-column: span 1;
    }

    .col-xl-2 {
        grid-column: span 2;
    }

    .col-xl-3 {
        grid-column: span 3;
    }

    .col-xl-4 {
        grid-column: span 4;
    }

    .col-xl-5 {
        grid-column: span 5;
    }

    .col-xl-6 {
        grid-column: span 6;
    }

    .col-xl-7 {
        grid-column: span 7;
    }

    .col-xl-8 {
        grid-column: span 8;
    }

    .col-xl-9 {
        grid-column: span 9;
    }

    .col-xl-10 {
        grid-column: span 10;
    }

    .col-xl-11 {
        grid-column: span 11;
    }

    .col-xl-12 {
        grid-column: span 12;
    }

    .col-xl-auto {
        grid-column: auto;
        width: auto;
    }

    .offset-xl-0 {
        grid-column-start: auto;
    }

    .offset-xl-1 {
        grid-column-start: 2;
    }

    .offset-xl-2 {
        grid-column-start: 3;
    }

    .offset-xl-3 {
        grid-column-start: 4;
    }

    .offset-xl-4 {
        grid-column-start: 5;
    }

    .offset-xl-5 {
        grid-column-start: 6;
    }

    .offset-xl-6 {
        grid-column-start: 7;
    }

    .offset-xl-7 {
        grid-column-start: 8;
    }

    .offset-xl-8 {
        grid-column-start: 9;
    }

    .offset-xl-9 {
        grid-column-start: 10;
    }

    .offset-xl-10 {
        grid-column-start: 11;
    }

    .offset-xl-11 {
        grid-column-start: 12;
    }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
    /* .container {
        max-width: 1320px;
    } */

    .col-xxl {
        grid-column: span 12;
    }

    .col-xxl-1 {
        grid-column: span 1;
    }

    .col-xxl-2 {
        grid-column: span 2;
    }

    .col-xxl-3 {
        grid-column: span 3;
    }

    .col-xxl-4 {
        grid-column: span 4;
    }

    .col-xxl-5 {
        grid-column: span 5;
    }

    .col-xxl-6 {
        grid-column: span 6;
    }

    .col-xxl-7 {
        grid-column: span 7;
    }

    .col-xxl-8 {
        grid-column: span 8;
    }

    .col-xxl-9 {
        grid-column: span 9;
    }

    .col-xxl-10 {
        grid-column: span 10;
    }

    .col-xxl-11 {
        grid-column: span 11;
    }

    .col-xxl-12 {
        grid-column: span 12;
    }

    .col-xxl-auto {
        grid-column: auto;
        width: auto;
    }

    .offset-xxl-0 {
        grid-column-start: auto;
    }

    .offset-xxl-1 {
        grid-column-start: 2;
    }

    .offset-xxl-2 {
        grid-column-start: 3;
    }

    .offset-xxl-3 {
        grid-column-start: 4;
    }

    .offset-xxl-4 {
        grid-column-start: 5;
    }

    .offset-xxl-5 {
        grid-column-start: 6;
    }

    .offset-xxl-6 {
        grid-column-start: 7;
    }

    .offset-xxl-7 {
        grid-column-start: 8;
    }

    .offset-xxl-8 {
        grid-column-start: 9;
    }

    .offset-xxl-9 {
        grid-column-start: 10;
    }

    .offset-xxl-10 {
        grid-column-start: 11;
    }

    .offset-xxl-11 {
        grid-column-start: 12;
    }
}

/* Alignment utilities */
.justify-content-start {
    justify-content: start;
}

.justify-content-end {
    justify-content: end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

.align-items-start {
    align-items: start;
}

.align-items-end {
    align-items: end;
}

.align-items-center {
    align-items: center;
}

.align-items-stretch {
    align-items: stretch;
}

.align-self-start {
    align-self: start;
}

.align-self-end {
    align-self: end;
}

.align-self-center {
    align-self: center;
}

.align-self-stretch {
    align-self: stretch;
}

/* Order utilities */
.order-first {
    order: -1;
}

.order-last {
    order: 13;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}

.order-3 {
    order: 3;
}

.order-4 {
    order: 4;
}

.order-5 {
    order: 5;
}

/* Responsive order utilities */
@media (min-width: 576px) {
    .order-sm-first {
        order: -1;
    }

    .order-sm-last {
        order: 13;
    }

    .order-sm-0 {
        order: 0;
    }

    .order-sm-1 {
        order: 1;
    }

    .order-sm-2 {
        order: 2;
    }

    .order-sm-3 {
        order: 3;
    }

    .order-sm-4 {
        order: 4;
    }

    .order-sm-5 {
        order: 5;
    }
}

@media (min-width: 768px) {
    .order-md-first {
        order: -1;
    }

    .order-md-last {
        order: 13;
    }

    .order-md-0 {
        order: 0;
    }

    .order-md-1 {
        order: 1;
    }

    .order-md-2 {
        order: 2;
    }

    .order-md-3 {
        order: 3;
    }

    .order-md-4 {
        order: 4;
    }

    .order-md-5 {
        order: 5;
    }
}

@media (min-width: 992px) {
    .order-lg-first {
        order: -1;
    }

    .order-lg-last {
        order: 13;
    }

    .order-lg-0 {
        order: 0;
    }

    .order-lg-1 {
        order: 1;
    }

    .order-lg-2 {
        order: 2;
    }

    .order-lg-3 {
        order: 3;
    }

    .order-lg-4 {
        order: 4;
    }

    .order-lg-5 {
        order: 5;
    }
}

@media (min-width: 1200px) {
    .order-xl-first {
        order: -1;
    }

    .order-xl-last {
        order: 13;
    }

    .order-xl-0 {
        order: 0;
    }

    .order-xl-1 {
        order: 1;
    }

    .order-xl-2 {
        order: 2;
    }

    .order-xl-3 {
        order: 3;
    }

    .order-xl-4 {
        order: 4;
    }

    .order-xl-5 {
        order: 5;
    }
}

/* Gap utilities */
.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.gap-4 {
    gap: 1.5rem;
}

.gap-5 {
    gap: 3rem;
}

.gap-10 {
    gap: 10px !important;
}

.gap-12 {
    gap: 12px;
}


/* Flex utilities */
.flex-row {
    flex-direction: row;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.justify-content-start {
    justify-content: start;
}

.justify-content-end {
    justify-content: end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

.align-items-start {
    align-items: start;
}

.align-items-end {
    align-items: end;
}

.align-items-center {
    align-items: center;
}

.align-items-stretch {
    align-items: stretch;
}

.align-self-start {
    align-self: start;
}

.align-self-end {
    align-self: end;
}

.align-self-center {
    align-self: center;
}

.align-self-stretch {
    align-self: stretch;
}