@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    --bs-primary: #1668B4;
    --bs-secondary: #1a1c33;
    --bs-light: #f1f2f4;
    --bs-dark: #272d47;
    --bs-heading-color: #272d47;
    --bs-darker: #1a1c33;
    --bs-success: #0abb75;
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 400;
    color: #3F4254;
    background-color: var(--bs-light);
    font-family: "Outfit", sans-serif;
    overflow-x: hidden;
}

img,
svg {
    max-width: 100%;
    height: revert-layer;
    display: inline-block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: transparent;
    box-shadow: none;
}

.btn-check:checked+.btn:focus-visible,
.btn.active:focus-visible,
.btn.show:focus-visible,
.btn:first-child:active:focus-visible,
:not(.btn-check)+.btn:active:focus-visible {
    box-shadow: none;
}

.btn {
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 0.45rem;
    padding: 0.5rem 1rem;
    letter-spacing: 0.5px;
}

.btn-sm {
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 13px;
}

.btn-xs {
    border-radius: 2px;
    padding: 5px 8px;
    font-size: 12px;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.btn-primary:hover {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-white);
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-focus-shadow-rgb: 13, 110, 253;
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--bs-primary);
    --bs-gradient: none;
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.btn-check:checked+.btn.btn-secondary,
.btn.btn-secondary.active,
.btn.btn-secondary.show,
.btn.btn-secondary:first-child:active,
:not(.btn-check)+.btn.btn-secondary:active,
.btn-secondary:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-base {
    font-size: 16px;
}

.text-md {
    font-size: 18px;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

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

.form-control:focus {
    color: var(--bs-gray-700);
    background-color: var(--bs-body-bg);
    border-color: #eee;
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--bs-gray-500);
    font-size: 0.85rem
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.slick-arrow {
    background-color: var(--bs-white);
    color: var(--bs-dark) !important;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    font-size: 1rem;
    line-height: 1;
    position: absolute;
    left: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E1E7EA;
}

.owl-carousel .owl-nav button.owl-next,
.slick-arrow.slick-next {
    left: auto;
    right: -0.6rem;
}

.owl-carousel .owl-nav button.owl-prev:active,
.owl-carousel .owl-nav button.owl-prev:focus,
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:active,
.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-next:hover,
.slick-arrow:active,
.slick-arrow:focus,
.slick-arrow:hover {
    background-color: var(--bs-white) !important;
    color: var(--bs-primary) !important;
    border-color: #E1E7EA;
}

.owl-nav button svg,
.slick-arrow svg {
    height: 9px;
    width: auto;
}

.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: -1.5rem;
    width: 100%;
}

.slick-dots li {
    display: inline-flex;
}

.slick-dots button {
    font-size: 0;
    border: none;
    width: 10px;
    height: 10px;
    background-color: var(--bs-gray-300);
    border-radius: 50%;
    margin: 0 4px;
    padding: 0;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.slick-dots li.slick-active button {
    background-color: rgb(255 255 255 / 90%);
}

.slick-dots button:hover {
    background-color: var(--bs-gray-500);
}

.breadcrumb-item {
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--bs-primary);
}

.pagination li>* {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1;
    font-size: 1em;
    font-weight: 400;
    padding: .75em;
    text-align: center;
    display: block;
    min-width: 2.5em;
    border: 1px solid var(--bs-primary);
    height: 2.5em;
    color: var(--bs-primary);
    margin: 0 2px;
    border-radius: 0.5rem;
}

.pagination li>*:hover,
.pagination li.active>* {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.pagination {
    justify-content: center;
}

.pagination li.disabled {
    display: none;
}

.preloader {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    position: fixed;
    inset: 0;
    z-index: 9999;
}

#content-wrapper {
    min-height: calc(100vh - 500px);
}

.truncate-text {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--lines, 2);
    line-clamp: var(--lines, 2);
    min-height: calc(var(--line-height, 20px) * var(--lines, 2));
}

.scrollTop {
    position: fixed;
    right: 25px;
    bottom: 60px;
    width: 40px;
    height: 45px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-white);
    border: 1px solid var(--bs-primary);
    border-radius: 3px;
    color: var(--bs-primary);
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.scrollTop:hover {
    background-color: var(--bs-primary);
    color: var(--bs-white);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-arrow-btn {
    background-color: var(--bs-white);
    border: 1px solid transparent;
    height: 66px;
    width: 32px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 0 8px -2px rgba(0, 0, 0, .3);
    align-items: center;
    padding: 0 4px 0 0;
    left: 0;
    transform: translateY(-50%);
    margin-top: 0;
}

.swiper-button-next {
    padding: 0 0 0 2px;
    right: 0;
    left: auto;
}

.swiper-button-next svg {
    transform: rotate(180deg);
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 11px;
    height: 16px;
    object-fit: contain;
    transform-origin: center;
}

.swiper-pagination-bullet-active {
    background: var(--bs-white);
}

.divider-separator {
    width: 25%;
    display: flex;
    align-items: center;
}

.divider-separator::before,
.divider-separator::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background-color: var(--bs-primary);
}

.divider__element {
    flex-shrink: 0;
    margin: 0 10px;
    color: var(--bs-primary);
    font-size: 20px;
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px 15px 5px 10px;
    height: 40px;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
    color: var(--bs-white);
    background-color: #25d366;
    position: fixed;
    right: 25px;
    bottom: 120px;
    border-radius: 50px;
    font-size: 16px;
    z-index: 999;
}

/* =============== Header CSS =============== */
.header-top {
    background-color: var(--bs-primary);
    position: relative;
    z-index: 999;
    color: var(--bs-white);
}

.header-top-content {
    padding-left: 120px;
}

.header-top-list {
    display: flex;
    align-items: center;
}

.header-top-list li {
    display: inline-flex;
}

.header-top-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    line-height: 1;
}

.header {
    background-color: var(--bs-white);
    position: relative;
    border-bottom: 1px solid #ced8dd;
    -webkit-transform: translateZ(0) translateY(0);
    -moz-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    transition: transform 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -moz-transition: height 0.3s ease-in-out, -moz-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -webkit-transition: height 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    -o-transition: height 0.3s ease-in-out, -o-transform 0.3s ease-in-out, background 0.3s ease-in-out;
    position: relative;
    z-index: 1021;
    width: 100%;
    /* box-shadow: 0 2px 10px rgb(34 34 34 / 10%); */
}

.header.normal {
    -webkit-transform: translateZ(0) translateY(-100%);
    -moz-transform: translateZ(0) translateY(-100%);
    transform: translateZ(0) translateY(-100%);
}

.header.sticky {
    position: fixed;
    left: 0;
    top: 0;
    -webkit-transform: translateZ(0) translateY(0);
    -moz-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
}

.header-left,
.header-right {
    min-width: 120px;
}

.sticky .header-left {
    position: relative;
    height: 104%;
    align-self: stretch;
    display: flex;
}

.logo-link {
    display: inline-flex;
    top: -45px;
    position: absolute;
    background-color: var(--bs-white);
    bottom: 0;
    max-width: 105px;
}

.logo-link>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header.sticky .logo-link {
    position: inherit;
    top: 0;
}

.header.sticky .logo-link img {
    height: 70px;
}

.header-nav-wrapper {
    min-height: 45px;
}

.header-nav {
    height: 100%;
}

.header-menu {
    height: 100%;
}

.menu-item {
    position: relative;
}

.menu-link {
    height: 100%;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    padding: 1.3rem 1rem;
    font-size: 0.82rem;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .menu-item {
        height: 100%;
    }

    .menu-item:hover .menu-link {
        color: var(--bs-primary);
    }

    .submenu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--bs-white);
        min-width: 220px;
        margin-top: 0.3rem;
        padding: 0.3rem 0;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: transform 0.2s ease-in;
        z-index: 9;
        box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .1);
    }

    .submenu::before {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        bottom: 100%;
        height: 0.5rem;
    }

    .submenu::after {
        background: #ffffff;
        bottom: 0;
        content: "";
        height: 8px;
        width: 8px;
        margin-left: -6px;
        opacity: 1;
        position: absolute;
        left: 24px;
        top: -4px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        transition: all 0.2s ease;
        visibility: visible;
    }

    .menu-item:hover>.submenu {
        visibility: visible;
        opacity: 1;
        transform: none;
    }
}

.mean-container {
    display: flex;
    align-items: center;
}

.submenu-item {
    display: block;
}

.submenu-link {
    display: block;
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
    color: var(--bs-gray-600);
}

.submenu-link:hover {
    color: var(--bs-primary);
}

.header-icons {
    display: flex;
    justify-content: flex-end;
}

.header-icon {
    position: relative;
    padding-inline: 5px;
}

.header-icon.active::after {
    content: '';
    position: absolute;
    right: 0;
    width: 100%;
    bottom: -2px;
    background-color: var(--bs-primary);
    height: 3px;
}

.modal__content {
    position: fixed;
    top: calc(100% - -1px);
    left: 0;
    width: 100%;
    background: var(--bs-white);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.header.sticky~.modal__content {
    top: 69px;
}

.modal-overlay::after {
    content: "";
    position: absolute;
    background-color: rgb(0 0 0 / 50%);
    top: 100%;
    left: 0;
    right: 0;
    height: 100vh;
}

.sticky .modal-overlay::after {
    height: calc(100vh - 15px);
}

.search-modal__content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    padding-left: 1rem;
    padding-right: 0.4rem;
}

.search-modal__form {
    width: 100%;
    max-width: 550px;
    position: relative;
    margin-right: 0.3rem;
}

.field {
    position: relative;
    width: 100%;
}

.field__input,
.search__input {
    border: 2px solid #ced8dd;
    padding: 10px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 10px;
}

.search__input {
    padding-right: 40px;
}

.field__label {
    font-size: 14px;
    left: calc(15px);
    top: calc(10px);
    margin-bottom: 0;
    pointer-events: none;
    position: absolute;
    transition: top 0.1s ease, font-size 0.1s ease;
    color: rgb(0 0 0 / 75%);
    letter-spacing: 1px;
    line-height: 1.5;
}

.field__input::placeholder,
.search__input::placeholder {
    opacity: 0 !important;
}

.field__input:not(:placeholder-shown),
.search__input:not(:placeholder-shown),
.field__input:focus,
.search__input:focus {
    padding: 16px 15px 8px 15px;
    border-color: var(--bs-primary);
    border-width: 2px;
    box-shadow: none;
}

.search__input:not(:placeholder-shown)~.reset__button.hidden {
    visibility: visible;
}

.field__input:not(:placeholder-shown)~.field__label,
.field__input:focus+.field__label,
.search__input:not(:placeholder-shown)~.field__label,
.search__input:focus+.field__label {
    font-size: 12px;
    top: calc(3px);
    left: calc(15px);
    letter-spacing: .04rem;
}

.reset__button {
    align-items: center;
    background-color: transparent;
    border: 0;
    color: currentColor;
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    right: calc(1px + 50px);
    top: 0;
}

.reset__button svg {
    height: 16px;
    width: 16px;
    border: 1px solid var(--bs-gray-500);
    border-radius: 50%;
    padding: 2px;
    color: var(--bs-black);
}

.reset__button:not(:focus):after {
    border-right: 1px solid rgb(0 0 0 / 8%);
    display: block;
    height: calc(100% - 18px);
    content: "";
    position: absolute;
    right: 0;
}

.search__button {
    align-items: center;
    background-color: transparent;
    border: 0;
    color: var(--bs-gray-800);
    cursor: pointer;
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
}

.modal__close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    height: 40px;
    width: 40px;
    background-color: transparent;
    position: initial;
    color: var(--bs-gray-700);
}

.modal__close-button:hover {
    transform: scale(0.9);
}

.btn-check:checked+.modal__close-button,
.modal__close-button.active,
.modal__close-button.show,
.modal__close-button:first-child:active,
:not(.btn-check)+.modal__close-button:active {
    border-color: transparent;
}

.header-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.social-item:hover {
    color: var(--bs-white);
    background-color: rgb(255 255 255 / 10%);
}

.social-item:hover a {
    color: var(--bs-white);
}

.social-item:first-child {
    border-left: 1px solid rgb(255 255 255 / 15%);
}

.social-item {
    border-right: 1px solid rgb(255 255 255 / 15%);
}

.social-link {
    display: flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
    padding: 0 6px;
    font-size: 12px;
}

.social-link .icon {
    width: 26px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* =============== Header CSS =============== */
/* ========== Mobile Menu CSS ========== */
.nav-toggler {
    min-width: 30px;
    padding: 0 !important;
    height: 30px;
    display: grid;
    place-items: center;
    position: relative;
    z-index: 99;
    color: var(--bs-primary);
}

.close-icon {
    display: block;
    width: 16px;
    position: relative;
}

.close-icon:before,
.close-icon:after {
    background-color: var(--bs-gray);
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    content: "";
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.close-icon:before {
    transform: rotate(45deg);
}

.close-icon:after {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 100%;
    max-width: 400px;
    background-color: var(--bs-white);
    z-index: 9999;
    height: 100%;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu.open-menu {
    transform: translateX(0);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-black);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
}

.mobile-menu.open-menu+.mobile-menu-overlay {
    visibility: visible;
    opacity: 0.5;
}


.mobile-menu-header {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    background-color: var(--bs-gray-200);
    height: 60px;
    flex-shrink: 0;
}

.mobile-menu-body {
    flex-grow: 1;
    overflow: auto;
}

.mobile-menu-footer {
    background-color: var(--bs-gray-200);
    padding: 1rem 1.3rem;
    flex-shrink: 0;
}

.account-link {
    display: inline-flex;
    padding: 8px 0;
    color: var(--bs-black);
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.close-menu {
    padding: 6px;
    display: grid;
    place-items: center;
    position: absolute;
    z-index: 99999;
    right: 0;
    top: 0;
    height: 60px;
    width: 50px;
}

.mlist-item {
    border-bottom: 1px solid #eee;
    position: relative;
}

.nav__cat-par {
    display: block;
    padding: 13px 0 13px 15px;
}

.mlist-item h6 {
    padding: 13px 0 13px 15px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f3f6f7;
    line-height: 1;
}

.nav__cats .mlist-item .nav__parent>span {
    margin-left: 12px;
}

.submenu_toggler {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--bs-gray);
    width: 46px;
    display: grid;
    place-items: center;
    height: 100%;
    cursor: pointer;
    border-left: 1px solid #eee;
}

.submenu_toggler::before {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 600;
}

.item-submenu {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    background-color: var(--bs-white);
    z-index: 10000;
    -webkit-transition: transform 0.4s ease;
    -moz-transition: transform 0.4s ease;
    -ms-transition: transform 0.4s ease;
    -o-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 100%;
    display: flex;
    flex-direction: column;
}

.mlist-item.open>.item-submenu {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.menu-heading {
    color: var(--bs-gray-800);
    text-align: center;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
}

.submenu_collapse {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    border-right: 1px solid #ddd;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--bs-gray);
    font-size: 14px;
}

.submenu_collapse::before {
    content: '\f053';
    font-family: 'Font Awesome 5 Pro';
}

.menu-heading-list {
    padding: 5px;
    border-bottom: 1px solid #ddd;
    background-color: var(--bs-light);
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.link-list {
    flex: 0 0 auto;
    height: calc(100% - 50px);
    overflow: auto;
}

.mmenu-link,
.mmenu-link:hover,
.mmenu-link:focus {
    display: block;
    color: var(--bs-gray-800);
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
}

.list-social {
    display: flex;
    align-items: center;
}

.list-social svg {
    height: 1.3rem;
}

.list-social__item {
    display: inline-flex;
}

.list-social__link {
    display: inline-flex;
    margin: 0 0.5rem;
}

/* ========== Mobile Menu CSS ========== */

/* =============== Hero CSS =============== */
.hero-section .swiper-arrow-btn {
    background-color: rgb(255 255 255 / 30%);
    color: var(--bs-white);
}

.slide-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: relative;
    z-index: 2;
}

.slide-content::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bs-dark);
    z-index: 1;
    opacity: 0.7;
}

.swiper-slide-contents {
    padding: 5rem 1rem;
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 1200px) {
    .swiper-slide-contents {
        min-height: calc(100vh - 200px);
    }
}

.slide-heading {
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    color: var(--bs-white);
    margin-bottom: 30px;
}

.slide-description {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 30px;
    color: var(--bs-white);
}

.slide-button {
    border-radius: 3px;
    color: var(--bs-white);
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    border: 2px solid var(--bs-white);
    border-radius: 50px;
}

.slide-button:hover {
    background-color: var(--bs-white);
    color: var(--bs-primary);
}

/* =============== Hero CSS =============== */

/* =============== Practice CSS =============== */
.practice-section {
    background-size: contain;
}

.practice-item {
    display: flex;
    align-items: center;
    padding: 1rem 1rem 1rem 0;
    background: var(--bs-white);
    border-radius: 8px;
    border-left: 4px solid var(--bs-primary);
    transition: all 0.3s ease;
}

.practice-icon {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.practice-content {
    flex-grow: 1;
}

/* =============== Practice CSS =============== */


/* =============== Blog CSS =============== */
.news-item {
    background-color: var(--bs-white);
    border: 1px solid #dae0e6;
    border-radius: 10px;
    overflow: hidden;
}

.news-item-text {
    padding: 20px;
}

.news-item-desc {
    color: var(--bs-gray-600);
}

.readmore {
    display: inline-block;
    font-weight: 500;
    color: var(--bs-primary);
}

.news-item-bottom {
    border-top: 1px solid #dae0e6;
    margin-top: 20px;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-item-bottom .date {
    color: var(--bs-gray-600);
}

.more-btn {
    border-color: #ced3d9;
    border-radius: 100px;
    display: inline-block;
    color: var(--bs-white);
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    background-color: var(--bs-primary);
    padding: 10px 25px;
}

.more-btn .ft-icon {
    margin-left: 6px;
    line-height: 1;
    font-size: 13px;
}

.more-btn:hover {
    background-color: var(--bs-secondary);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0.5rem;
}

.category-item {
    display: block;
}

.category-link {
    border: 1px solid #239164;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    padding: 0.3rem;
    transition: all 0.3s ease-in-out;
}

.category-link:hover {
    background-color: #e0fce4;
    transform: translateX(1rem);
    color: var(--bs-primary);
}

.category-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-white);
    background-color: #239164;
    border-radius: 0.3rem;
    margin-right: 0.8rem;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.category-text {
    flex-grow: 1;
    font-size: 1rem;
    font-weight: 700;
    color: #1c461a;
}

/* =============== Blog CSS =============== */

/* =============== Partner CSS =============== */
.partner-card {
    text-align: center;
    background-color: var(--bs-white);
    border: 1px solid #dae0e6;
    padding: 10px;
    border-radius: 5px;
}

/* =============== Partner CSS =============== */

/* =============== FAQ CSS =============== */
.accordion-button:not(.collapsed),
.accordion-button:focus {
    outline: none;
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.accordion-button::after {
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background-color: var(--bs-primary);
    background-image: none !important;
}

.accordion-button.collapsed::after {
    background-color: var(--bs-gray-300);
}

/* =============== FAQ CSS =============== */

/* =============== Footer CSS =============== */
.footer {
    background-color: #1D2B35;
    color: var(--bs-white);
}

.widgettitle {
    color: var(--bs-white);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.widgettitle::before {
    content: "";
    height: 2px;
    width: 50px;
    border-radius: 80px;
    position: absolute;
    right: -64px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to right, var(--bs-primary), rgb(184 151 128 / 0));
}

.footer-link {
    display: inline-block;
    padding: 5px 0;
}

.footer-link:hover {
    color: var(--bs-gray-400);
    text-decoration: underline;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--bs-primary);
    border-radius: 8px;
    margin-right: 2px;
    margin-top: 5px;
    color: var(--bs-primary);
    transition: all 0.3s ease-in-out;
}

/* =============== Footer CSS =============== */

/* =============== Contact Page CSS =============== */
.page-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 3rem;
    background-color: var(--bs-white);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.page-header::before {
    background: var(--bs-dark) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

@media (min-width: 992px) {
    .border-lg-end {
        border-right: 1px solid #E2E2E2;
    }
}

.contact-section {
    background-image: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(238, 248, 255) 100%);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    font-size: 24px;
    color: var(--bs-primary);
    margin-right: 1rem;
    width: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-text {
    flex-grow: 1;
    line-height: 1.4;
}

.contact-map {
    display: flex;
}

.contact-map iframe {
    height: 550px;
    width: 100%;
}

/* =============== Contact Page CSS =============== */

/* =============== Team Page CSS =============== */
.team-card {
    border: 1px solid var(--bs-gray-300);
    border-radius: 15px;
    overflow: hidden;
}

.team-card-content {
    padding: 16px;
}

.team-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.text-card-designation {
    font-size: 14px;
    font-weight: 500;
    color: var(--bs-primary);
    margin-bottom: 0.8rem;
}

.team-card-contact {
    color: var(--bs-gray);
}

.team-card-social {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
}

.team-card-social-link {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--bs-secondary);
    color: var(--bs-white);
    border-radius: 3px;
}

/* =============== Team Page CSS =============== */
