.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;
}


.container-fluid {
    padding-inline: 20px;
}

.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>* {
    box-sizing: border-box;
    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: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
}

@media (min-width: 992px) {
    .ms-lg-auto {
        margin-left: auto;
    }

    .container {
        max-width: 960px;
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }
}

@media (min-width: 1400px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1320px;
    }
}


.row-gap {
    row-gap: 24px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: end;
}

.ms-auto {
    margin-left: auto;
}

.mx-auto {
    margin-inline: auto;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-center {
    justify-content: center;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-column {
    flex-direction: column !important;
}

img,
svg {
    vertical-align: middle;
}

.text-center {
    text-align: center;
}

.m-0 {
    margin: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mt-auto {
    margin-top: auto !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.d-block {
    display: block;
}

.d-none {
    display: none;
}

/* spacing */
.gap-10 {
    gap: 10px;
}

.gap-14 {
    gap: 14px;
}

.gap-20 {
    gap: 20px !important;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.my-10 {
    margin-block: 10px;
}

.my-20 {
    margin-block: 20px;
}

.ps-20 {
    padding-left: 20px;
}

.pb-20 {
    padding-bottom: 20px;
}

.p-0 {
    padding: 0;
}

/* sizing */
.w-fit {
    width: fit-content;
}

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.max-w-700 {
    max-width: 700px;
}

/* borders */
.border {
    border: 1px solid var(--border-color);
}

.rounded-circle {
    border-radius: 50%;
}

/* position */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.sticky {
    position: sticky;
    top: 100px;
}

.inset-0 {
    inset: 0;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

/* color / opacity */
.text-white {
    color: var(--white) !important;
}

.text-muted {
    color: var(--text-muted);
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-weight: var(--font-700);
}

.bg-gradient {
    background: var(--brand-gradient);
}

.bg-dark {
    background-color: var(--surface-dark);
}

.bg-light {
    background-color: var(--surface-light);
}

.opacity-60 {
    opacity: 0.6;
}

.opacity-90 {
    opacity: 0.9;
}

/* media */
.object-contain {
    object-fit: contain;
}

.object-cover {
    object-fit: cover;
}



h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-700) !important;
    line-height: 1.5;
    text-transform: capitalize;
    color: var(--text-color);
}

.all-page :is(h2,
    h3,
    h4,
    h5,
    h6,
    .h2,
    .h3,
    .h4,
    .h5,
    .h6) {
    margin-bottom: 25px !important;
}



h1,
.h1 {
    font-size: 36px;
    color: var(--text-color);
}

h2,
.h2 {
    font-size: 32px;
}

h3,
.h3 {
    font-size: 28px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 18px;
}

.all-page ul {
    margin-bottom: 25px;
}

.all-page ol,
.all-page ul {
    padding-left: 1.6rem;
}

.all-page ol li,
.all-page ul li {
    line-height: 2.2;
}

/* hero banner layout */
.hero-banner .swiper {
    padding-bottom: 0 !important;
}

.hero-banner :is(.swiper-autoheight, .swiper-autoheight .swiper-slide) {
    height: auto !important;
}

.hero-banner .swiper-pagination {
    position: static !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    display: flex !important;
    gap: 16px !important;
}

@media (max-width: 1023px) {
    .hero-banner .swiper-pagination {
        display: flex !important;
        right: auto !important;
        gap: 12px !important;
        top: auto !important;
    }

    .hero-banner .hero-content {
        height: 530px !important;
    }

    .hero-banner .hero-content:after {
        background: linear-gradient(89.97deg,
                var(--surface-dark) -7.68%,
                rgba(34, 34, 34, 0.72) 155.57%) !important;
    }

    .hero-banner .hero-content > img {
        object-fit: cover !important;
    }

    .hero-banner .dual-btn {
        gap: 10px !important;
        /* margin-top: 15px !important; */
    }

    .hero-banner .btn {
        font-size: 14px !important;
        padding: 10px !important;
    }

    .hero-banner .hero-text {
        gap: 10px !important;
    }
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 16px;
}

.contact-info li a {
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.contact-info li a:hover {
    color: var(--primary-color);
}

.contact-info li svg {
    flex-shrink: 0;
}

.gap-4 {
    gap: 16px;
}