/* Minimal Bootstrap CSS */

:root {
    --bs-black: #000;
    --bs-white: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

*,
::after,
::before {
    box-sizing: border-box;
}

/* Container */
.container {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Grid System */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-0.5 * var(--bs-gutter-x));
    margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

@media (min-width: 992px) {
    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }
    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }
    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }
}

/* Gap utilities */
.g-5 {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}

.gy-4 {
    --bs-gutter-y: 1.5rem;
}

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

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

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

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

/* Display utilities */
.d-flex {
    display: flex !important;
}

.d-block {
    display: block !important;
}

/* Flex utilities */
.flex-column {
    flex-direction: column !important;
}

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

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

.justify-content-start {
    justify-content: flex-start !important;
}

/* Width & Height */
.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

/* Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Padding utilities */
.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}



@media (min-width: 576px) {
    .p-sm-5 {
        padding: 3rem !important;
    }
}

@media (min-width: 768px) {
    .p-md-5 {
        padding: 3rem !important;
    }
}

/* Margin utilities */
.m-0 {
    margin: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

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

.me-1 {
    margin-right: 0.25rem !important;
}

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

/* Background */
.bg-white {
    background-color: #fff !important;
}

/* Text utilities */
.text-center {
    text-align: center !important;
}

.text-black {
    color: #000 !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

/* Borders */
.border {
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-black {
    border-color: #000 !important;
}

.rounded-1 {
    border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
    border-radius: var(--bs-border-radius) !important;
}

/* Shadow */
.shadow {
    box-shadow: var(--bs-box-shadow) !important;
}





.btn--ghost {
    background-color: transparent;
    border: 1px solid currentColor;
}


/* HR */
hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: 0.25;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Paragraphs */
p {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Links */
a {
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}
