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

body {
    margin: 0;
}

img {
    display: block;
}

.container {
    width: min(100% - 1.5rem, 1140px);
    margin-inline: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -.75rem;
}

.row > * {
    padding-inline: .75rem;
}

.col-md-3,
.col-md-4,
.col-md-6,
.col-lg-10 {
    width: 100%;
}

.row.g-2 {
    row-gap: .5rem;
}

.row.g-4 {
    row-gap: 1.5rem;
}

.d-flex {
    display: flex;
}

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

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

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

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

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

.gap-2 {
    gap: .5rem;
}

.ms-auto {
    margin-left: auto;
}

.ms-lg-2 {
    margin-left: 0;
}

.me-2 {
    margin-right: .5rem;
}

.me-3 {
    margin-right: 1rem;
}

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

.mb-2 {
    margin-bottom: .5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 2rem;
}

.my-5 {
    margin-block: 2rem;
}

.p-4 {
    padding: 1.5rem;
}

.py-1 {
    padding-block: .25rem;
}

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

.fw-bold {
    font-weight: 700;
}

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

.btn {
    align-items: center;
    border: 1px solid transparent;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    line-height: 1.4;
    padding: .5rem .85rem;
    text-decoration: none;
}

.btn-sm {
    font-size: .875rem;
    padding: .35rem .65rem;
}

.btn-outline-danger {
    border-color: #c1121f;
    color: #c1121f;
    border-radius: 8px;
    font-weight: 700;
}

.btn-outline-danger:hover {
    background: #c1121f;
    color: #fff;
}

.navbar {
    position: relative;
}

.sticky-top {
    position: sticky;
    top: 0;
}

.navbar > .container {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.navbar-brand {
    text-decoration: none;
}

.navbar-toggler {
    background: transparent;
    border: 1px solid #d7dde7;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    margin-left: auto;
    padding: .45rem .6rem;
}

.navbar-toggler-icon {
    display: block;
    height: 1.1rem;
    position: relative;
    width: 1.35rem;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    border-top: 2px solid #2f343b;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    left: 0;
    position: absolute;
    width: 100%;
}

.navbar-toggler-icon::before {
    top: .35rem;
}

.navbar-toggler-icon::after {
    top: .75rem;
}

.collapse {
    display: block;
}

.navbar-collapse {
    align-items: center;
    display: flex;
    flex-basis: auto;
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    gap: .35rem;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.nav-link {
    display: block;
    padding: .5rem .75rem;
    text-decoration: none;
}

.visually-hidden-focusable:not(:focus):not(:focus-within) {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

@media (min-width: 768px) {
    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.333333%;
    }

    .col-md-6 {
        width: 50%;
    }
}

@media (min-width: 992px) {
    .col-lg-10 {
        width: 83.333333%;
    }

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

    .ms-lg-2 {
        margin-left: .5rem;
    }
}

@media (max-width: 991px) {
    .navbar-toggler {
        display: inline-flex;
    }

    .navbar-collapse {
        display: none;
        flex-basis: 100%;
        width: 100%;
    }

    .navbar-collapse.show {
        display: block;
    }

    .navbar-nav {
        align-items: stretch;
        flex-direction: column;
        margin-top: .75rem;
        width: 100%;
    }

    .ms-auto {
        margin-left: 0;
    }
}
