@charset "utf-8";

/* Tailwind migration bridge: replaces the Bootstrap layout/utility layer while Tailwind is the loaded framework. */

html {
    line-height: 1.5;
}

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

img,
svg {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

ul,
ol {
    padding-left: 1.25rem;
}

.container,
.container-fluid {
    width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
}

.container {
    max-width: 1240px;
}

.container-fluid {
    max-width: 1920px;
}

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

.row > [class*="col-"],
.row > .col-lg {
    width: 100%;
    padding-inline: 1rem;
}

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

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

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

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

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

.flex-grow-1 {
    flex: 1 1 auto !important;
}

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

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

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

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

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

.align-middle {
    vertical-align: middle !important;
}

.text-center,
.text-md-center {
    text-align: center !important;
}

.text-md-start,
.text-lg-start {
    text-align: left !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-light {
    color: #f8f9fa !important;
}

.text-dark,
.text-drak {
    color: #212529 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-reset {
    color: inherit !important;
}

.lead {
    font-size: clamp(1.02rem, 0.96rem + 0.24vw, 1.16rem);
    font-weight: 400;
    line-height: 1.65;
}

.h1,
.fs-1 {
    font-size: clamp(2rem, 1.5rem + 2vw, 3rem) !important;
}

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

.w-100 {
    width: 100% !important;
}

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

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

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

.img-thumbnail {
    padding: 0.25rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 0.5rem;
}

.rounded {
    border-radius: 0.5rem !important;
}

.rounded-circle {
    border-radius: 9999px !important;
}

.border {
    border: 1px solid rgba(0, 0, 0, 0.18) !important;
}

.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18) !important;
}

.border-dark {
    border-color: rgba(33, 37, 41, 0.92) !important;
}

.border-secondary {
    border-color: rgba(108, 117, 125, 0.8) !important;
}

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

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

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

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

.bg-light {
    background-color: rgba(248, 249, 250, 0.96) !important;
}

.bg-dark {
    background-color: rgba(33, 37, 41, 0.96) !important;
}

.bg-warning {
    background-color: rgba(255, 193, 7, 0.92) !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-light {
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
}

.list-unstyled {
    list-style: none;
    padding-left: 0;
}

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

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

.p-5 {
    padding: clamp(1.25rem, 4vw, 3rem) !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

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

.pb-5 {
    padding-bottom: clamp(1.25rem, 4vw, 3rem) !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

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

.pt-5 {
    padding-top: clamp(1.25rem, 4vw, 3rem) !important;
}

.px-5 {
    padding-inline: clamp(1rem, 4vw, 3rem) !important;
}

.py-1 {
    padding-block: 0.25rem !important;
}

.py-3 {
    padding-block: 1rem !important;
}

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

.py-5 {
    padding-block: clamp(1.25rem, 4vw, 3rem) !important;
}

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

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: clamp(1.25rem, 4vw, 3rem) !important;
}

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

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

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

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

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

.mb-5 {
    margin-bottom: clamp(1.25rem, 4vw, 3rem) !important;
}

.mx-1 {
    margin-inline: 0.25rem !important;
}

.mx-auto {
    margin-inline: auto !important;
}

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

.me-4 {
    margin-right: 1.5rem !important;
}

.fixed-top {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
}

.dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 0;
}

.dropdown.open > .dropdown-menu,
.dropdown-menu.show {
    display: block;
}

.dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0.55rem;
    height: 0.55rem;
    margin-left: 0.45rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.collapse:not(.show) {
    display: none;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    overflow: hidden;
}

.carousel-item {
    position: relative;
    display: none;
    width: 100%;
}

.carousel-item.active {
    display: block;
}

.carousel-indicators {
    position: absolute;
    left: 50%;
    display: flex;
    gap: 0.5rem;
    transform: translateX(-50%);
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 6;
}

.carousel-indicators button {
    width: 0.8rem;
    height: 0.8rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.carousel-indicators button.active {
    background: rgba(255, 255, 255, 0.92);
}

.carousel-control-prev,
.carousel-control-next {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 0;
    background: transparent;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.9);
    border-right: 2px solid rgba(255, 255, 255, 0.9);
}

.carousel-control-prev-icon {
    transform: rotate(-135deg);
}

.carousel-control-next-icon {
    transform: rotate(45deg);
}

.accordion-button {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 0;
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.accordion-collapse {
    display: none;
}

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

.list-group {
    display: flex;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.list-group-flush > .list-group-item {
    border-width: 0 0 1px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table > :not(caption) > * > * {
    padding: 0.75rem;
}

.table-bordered > :not(caption) > * > * {
    border: 1px solid rgba(0, 0, 0, 0.18);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    background: rgba(255, 255, 255, 0.08);
}

.table-dark {
    color: #f8f9fa;
    background: rgba(33, 37, 41, 0.9);
}

@media (min-width: 576px) {
    .d-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) {
    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .text-md-start {
        text-align: left !important;
    }

    .col-md-2 {
        width: 16.666667%;
    }

    .col-md-3 {
        width: 25%;
    }

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

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

    .col-md-12 {
        width: 100%;
    }
}

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

    .text-lg-start {
        text-align: left !important;
    }

    .navbar-nav {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 14rem;
    }

    .col-lg {
        flex: 1 0 0%;
    }

    .col-lg-2 {
        width: 16.666667%;
    }

    .col-lg-3 {
        width: 25%;
    }

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

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.333333%;
    }

    .col-lg-12 {
        width: 100%;
    }

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

@media (min-width: 1200px) {
    .col-xl-2 {
        width: 16.666667%;
    }

    .col-xl-3 {
        width: 25%;
    }
}
