.main-header {
    background: black;
}

.main-header .navbar-nav * {
    color: #fff;
    background: black;
}

.navbar-brand-item {
    height: 40px;
}

.main-menu .nav-link {
    border-width: 0;
    box-shadow: none;
    outline: none;
    color: #f2e5ff !important;
    font-weight: 600;
    border-bottom: 3px solid transparent;
}

.main-menu .nav-link.active,
.main-menu .nav-link:hover {
    border-color: var(--color-primary);
    color: white;
}

.layout-sections > * > * {
    overflow: hidden;
}

.hero-section {
    min-height: 100vh;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    position: relative;
    isolation: isolate;
    color: #ffffff;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent);
    z-index: -1;
}

.hero-section .container {
    padding: 3rem;
}

.hero-text {
    font-size: 3.5rem;
    font-family: "Bitstream Charter", serif;
}

.hero-separator {
    background: var(--color-primary);
    height: .5rem;
    width: 10rem;
    display: block;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.hero-shape-1 {
    position: absolute;
    top: 0;
    right: 1rem;
    width: 250px;
}

.hero-badge {
    position: absolute;
    z-index: 1 !important;
    left: 0;
}

.hero-badge-1 {
    top: 10%;
    left: -2rem;
}

.hero-badge-2 {
    top: 50%;
    left: -5rem;
}

.hero-badge-3 {
    top: 90%;
    left: -2rem;
}

@media (max-width: 575.9px) {
    .hero-section {
        text-align: center;
        background-size: 150vw 100vh;
        background-repeat: no-repeat;
    }

    .hero-section .container {
        padding: .5rem;
    }

    .hero-section::before {
        background: var(--sec-gradient);

    }

    .hero-shape-1 {
        height: 10rem;
        width: 10rem;
    }

    .hero-section {
        padding-top: 60px;
    }

    .hero-shape-2 {
        margin-top: 10rem;
        margin-bottom: 5rem;
    }

    .hero-badge {
        margin-left: 0 !important;
        left: 1rem !important;
    }

    .hero-badge-2 {
        left: -.5rem !important;
    }
}

.brief-section {
    margin-bottom: 5rem;
    margin-top: 5rem;
}

.brief-image {
    min-height: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

.list-group-borderless .list-group-item {
    border: none !important;
    padding: 0.425rem 0;
}

.list-group-borderless a.list-group-item:hover {
    background-color: transparent;
    color: var(--bs-primary);
}

.brief-section .list-group-borderless > * {
    background: transparent;
}

.brief-section > .glower:first-child {
    right: 5rem;
}

.glowers {
    position: relative;
    isolation: isolate;
}

.glowers .glower {
    position: absolute;
    content: "";
    height: 10rem;
    width: 10rem;
    background: var(--color-primary);
    filter: blur(8rem);
}

.glower-light {
    background: #ffffff !important;
}

.glower-lg {
    width: 15rem !important;
    height: 15rem !important;
}

.glower-xl {
    width: 20rem !important;
    height: 20rem !important;
}


@media (min-width: 1200px) {
    header {
        -webkit-animation: fadeInUp 0.5s;
        animation: fadeInUp 0.5s;
    }

    header.header-sticky-on {
        position: fixed;
        z-index: 1040;
        top: 0;
        left: 0;
        right: 0;
        -webkit-animation: fadeInDown 0.5s;
        animation: fadeInDown 0.5s;
        width: 100%;
        border-bottom: 1px solid var(--bs-gray-200);
    }

    header.header-sticky-on .navbar-top {
        display: none !important;
    }

    header.header-sticky-on .navbar-brand {
        padding: 14px 0;
    }

    header.header-sticky-on .navbar-brand .navbar-brand-item {
        height: 35px;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


.footer-logo {
    height: 40px;
}

footer {
    color: #fff;
    background: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
    /*border-radius: 2rem 2rem 0 0;*/
}

.form-group-light {
    border-color: hsla(0, 0%, 100%, .15);
    background-color: hsla(0, 0%, 100%, .04);
}

.form-group.rounded-lg-pill, .form-group.rounded-md-pill, .form-group.rounded-pill, .form-group.rounded-sm-pill, .form-group.rounded-xl-pill {
    padding-left: .75rem;
}

.form-group {
    display: flex;
    align-items: center;
    padding: .5rem;
    border: 1px solid #efecf3;
    border-radius: .5rem;
    background-color: #fff;
    box-shadow: 0 .125rem .125rem -.125rem rgba(31, 27, 45, .08), 0 .25rem .75rem rgba(31, 27, 45, .08);
}

.card.card-hover-shadow {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.card.card-hover-shadow:hover {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0px 10px 30px rgba(29, 58, 83, 0.15);
    box-shadow: 0px 10px 30px rgba(29, 58, 83, 0.15);
}


.service-section {
    background: black;
    color: #ffffff;
}

.service-section .container {
    padding: 5rem 0;
}

.service-section .heading {
    font-size: 3rem;
    font-weight: 700;
}

.service-section .card {
    background: rgba(0, 0, 0, 0.01);
}

.service-section .card:hover {
    box-shadow: var(--color-primary) 0px 3px 6px, var(--color-primary) 0px 3px 6px;
}

.service-section {
    overflow: hidden;
}

.service-section .glower {
    left: 50%;
    width: 50%;
    transform: translateX(-50%);
    margin-top: -5rem;
}

.testimonial-section > .container {
    padding-bottom: 5rem;
    padding-top: 5rem;
}

.hero-flag {
    position: absolute;
    border: 1px solid var(--color-primary);
    padding: .5rem;
    border-radius: 50%;
    background: radial-gradient(#fff 10%, var(--color-primary));
    isolation: isolate;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media (min-width: 556px) {
    .hero-flag {
        display: block;
    }
}

.hero-flag-1 {
    top: 0;
    left: 30%;
    margin-top: -1rem;
}

.hero-flag-2 {
    top: 0;
    left: 70%;
}

.hero-flag-3 {
    top: 30%;
    right: -1rem;
}

.hero-flag-4 {
    top: 70%;
    right: 0;
}

.hero-flag-5 {
    bottom: -1rem;
    left: 50%;
}

.hero-flag-absolute {
    top: 50%;
    left: 70%;
}


/*swiper.css*/

.swiper-button-next {
    right: 0;
}

.swiper-button-next:after {
    display: none !important;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button-prev:after {
    display: none !important;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    pointer-events: visible;
}

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

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--bs-primary);
}

.swiper-pagination.swiper-pagination-primary .swiper-pagination-bullet {
    background-color: var(--bs-gray-500);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.swiper-pagination.swiper-pagination-primary .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--bs-primary);
    width: 20px;
    border-radius: 5px;
}

.swiper-pagination.swiper-pagination-white .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.6;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.swiper-pagination.swiper-pagination-white .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
    width: 20px;
    border-radius: 5px;
    opacity: 1;
}

.swiper-pagination.swiper-pagination-line .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background-color: #fff;
}

.swiper-pagination.swiper-pagination-progress-primary {
    background-color: var(--bs-border-color);
}

.swiper-pagination.swiper-pagination-progress-primary .swiper-pagination-progressbar-fill {
    background-color: var(--bs-primary);
}

.swiper-outside-end-n20 {
    margin-right: -20vw;
}

@media (max-width: 767.98px) {
    .swiper-outside-end-n20 {
        margin-right: 0;
    }
}

.swiper-img-scale .scale-img {
    -webkit-transition: -webkit-transform 5000ms linear 0s;
    transition: -webkit-transform 5000ms linear 0s;
    transition: transform 5000ms linear 0s;
}

.swiper-img-scale .swiper-slide-active .scale-img {
    transform: scale(1.07, 1.07);
}

.testimonial-section .testimonial-card {
    background: transparent;
    border: none;
    box-shadow: none;
}

.wobble {
    animation: wobble 3s infinite linear;
}

@keyframes wobble {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-15%) rotate(-5deg);
    }
    30% {
        transform: translateX(10%) rotate(3deg);
    }
    45% {
        transform: translateX(-5%) rotate(-3deg) translateY(-5%);
    }
    60% {
        transform: translateX(2%) rotate(2deg);
    }
    75% {
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

.smv-top-button {
    cursor: pointer;
    position: fixed !important;
    bottom: 40px;
    right: 40px;
    display: block;
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
}

.smv-top-button.show {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
}

@media (max-width: 767.98px) {
    .smv-top-button {
        bottom: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .smv-top-button:before {
        font-size: 0.6rem;
    }
}

@media (max-width: 575.98px) {
    .smv-top-button {
        display: none;
    }
}


.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, .95);
    z-index: 1600;
}

.splash-screen-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.splash-screen-loader {
    width: 5rem;
    height: 5rem;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    border-right-color: transparent;
    margin-top: 1rem;
    animation: spin 1s linear infinite;
}

.splash-screen-logo {
    height: 40px;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}


.page-loader {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translate(-50%, -2rem);
    z-index: 1700;
    display: none;
    opacity: 0;
    transition: .15s;
}

.page-loader.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

.page-loader .page-loader-content {
    position: relative;
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-loader-content .loader-spinner {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 3px solid var(--color-primary);
    border-right-color: transparent;
    animation: spin 1s linear infinite;
}

body:not(.loaded) {
    overflow: hidden;
}

.about-banner {
    border-radius: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 5rem;
    display: flex;
}

.about-banner-card {
    background: rgba(255, 255, 255, 0.85);
    min-height: 200px;
    min-width: 200px;
    padding: 1rem 5rem;
}


.navbar-toggler .navbar-toggler-animation {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-image: none;
    position: relative;
    height: 22px;
    width: 22px;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.navbar-toggler .navbar-toggler-animation span {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    height: 2px;
    background: #ffffff;
    display: block;
    position: absolute;
    width: 100%;
    border-radius: 30px;
}

.navbar-toggler .navbar-toggler-animation span:nth-child(1) {
    top: 10%;
}

.navbar-toggler .navbar-toggler-animation span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.navbar-toggler .navbar-toggler-animation span:nth-child(3) {
    bottom: 10%;
}

.navbar-toggler[data-bs-toggle=collapse][aria-expanded=true] .navbar-toggler-animation span:nth-child(1) {
    -webkit-transform: rotateZ(45deg) translateY(-50%);
    transform: rotateZ(45deg) translateY(-50%);
    top: 49%;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    width: 100%;
}

.navbar-toggler[data-bs-toggle=collapse][aria-expanded=true] .navbar-toggler-animation span:nth-child(2) {
    visibility: hidden;
    -webkit-transition: all 0s ease-in-out;
    transition: all 0s ease-in-out;
}

.navbar-toggler[data-bs-toggle=collapse][aria-expanded=true] .navbar-toggler-animation span:nth-child(3) {
    -webkit-transform: rotateZ(-45deg) translateY(-50%);
    transform: rotateZ(-45deg) translateY(-50%);
    bottom: 42%;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    width: 100%;
}

@media (max-width: 575px ) {
    .navbar-collapse {
        -webkit-box-shadow: 0px 10px 30px rgba(83, 88, 93, 0.4);
        box-shadow: 0px 10px 30px rgba(83, 88, 93, 0.4);
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--bs-body-bg);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        z-index: 1040;
    }

    .navbar-collapse .navbar-nav .nav-item {
        border-bottom: 1px solid var(--bs-border-color);
        padding: 8px 20px;
    }

    .navbar-collapse .navbar-nav .nav-item .nav-link {
        padding: 0.25rem 0;
    }
}


/*dashboard*/
/* Sidebar */
.dash-container {
    height: 100vh;
    margin: 0;
}

.sidebar {
    width: 250px;
    background: #F4F5FA;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.sidebar .logo {
    font-size: 22px;
    font-weight: bold;
}

.sidebar nav {
    margin-bottom: auto;
    padding-right: .5rem;
    padding-left: 2px;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    gap: .5rem;
    display: flex;
    flex-direction: column;
    width: 100%;
}


.sidebar nav ul li a {
    padding: 12px;
    cursor: pointer;
    color: #555;
    display: block;
    text-decoration: none;
    transition: .3s;
    width: 100%;
    border-radius: 0 5px 5px 0;
    border-left: 5px solid transparent;
}

.sidebar nav ul a.active,
.sidebar nav ul a:hover {
    color: #fff;
    background: var(--color-primary);
    border-color: rgba(0, 0, 0, 0.5);
}

.bottom-buttons {
    display: flex;
    flex-direction: column;
}

.download, .logout {
    background: #333;
    color: white;
    padding: 10px;
    margin: 5px 0;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* Main Chat Section */
.main-content {
    align-self: stretch;
    background: #fff;
    height: 100%;
    overflow: auto;
    padding-left: 0;
    padding-right: 0;
}

.main-content .smv-layout > :not(.top-bar) {
    margin: .5rem;
}

.main-content .smv-layout > :last-child {
    margin-bottom: 10rem;
}


/* Top Bar */
.top-bar {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1;
    margin-bottom: 1rem;
}

.top-bar input {
    width: 70%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.top-bar .icons span {
    margin-left: 10px;
    font-size: 18px;
    cursor: pointer;
}

.search-form input {
    outline: none;
    border: 1px solid gray;
    border-radius: 2.25rem;
}

.hamburger, .hamburger:after, .hamburger:before {
    background: var(--bs-body-color);
    border-radius: 1px;
    content: "";
    cursor: pointer;
    display: block;
    height: 3px;
    transition: background .1s ease-in-out, color .1s ease-in-out;
    width: 24px;
}

.sidebar-toggle {
    cursor: pointer;
    display: flex;
    height: 26px;
    width: 26px;
}


.nav-flag, .nav-icon {
    display: block;
    font-size: 1.5rem;
    line-height: 1.4;
    padding: .1rem .8rem;
    transition: background .1s ease-in-out, color .1s ease-in-out
}

.nav-flag:after, .nav-icon:after {
    display: none !important
}

.nav-flag.active, .nav-flag:hover, .nav-icon.active, .nav-icon:hover {
    color: #3f80ea
}

.nav-flag .lucide, .nav-flag svg, .nav-icon .lucide, .nav-icon svg {
    height: 20px;
    width: 20px
}

.nav-item .indicator {
    background: #3f80ea;
    border-radius: 50%;
    box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .05);
    color: #fff;
    display: block;
    font-size: .675rem;
    height: 18px;
    padding: 1px;
    position: absolute;
    right: -8px;
    text-align: center;
    top: 0;
    transition: top .1s ease-out;
    width: 18px
}

.nav-item:hover .indicator {
    top: -4px
}

.nav-item a:focus {
    outline: 0
}

@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
    .navbar .avatar {
        max-height: 47px
    }
}

@media (max-width: 575.98px) {
    .navbar {
        padding: .75rem
    }

    .nav-icon {
        padding: .1rem .75rem
    }

    .dropdown, .dropleft, .dropright, .dropup {
        position: inherit
    }

    .navbar-expand .navbar-nav .dropdown-menu-lg {
        min-width: 100%
    }

    .nav-item .nav-link:after {
        display: none
    }
}

.nav-flag img {
    border-radius: 50%;
    height: 20px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 20px
}

.navbar input, .navbar-nav {
    direction: ltr
}

.navbar .form-control {
    max-width: 200px
}

.dropdown-menu-lg {
    min-width: 20rem
}

.dropdown .list-group .list-group-item {
    border-width: 0 0 1px;
    margin-bottom: 0;
    text-decoration: none
}

.dropdown .list-group .list-group-item:first-child, .dropdown .list-group .list-group-item:last-child {
    border-radius: 0
}

.dropdown-menu {
    top: auto
}

.dropdown-menu-header {
    font-weight: 500;
    padding: .75rem;
    text-align: center
}

.dropdown-menu-footer {
    display: block;
    font-size: .75rem;
    padding: .5rem;
    text-align: center
}

@media (min-width: 1200px) {
    .dropdown-mega-list {
        min-width: 250px
    }
}

navbar-nav .dropdown-menu {
    box-shadow: 0 .1rem .2rem rgba(0, 0, 0, .05)
}

.dropdown .dropdown-menu:not(.normal).show,
.toast.show {
    animation-duration: .5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-name: dropdownAnimation;
    animation-timing-function: ease
}

@keyframes dropdownAnimation {
    0% {
        opacity: 0;
        transform: translateY(-8px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit
}

/* Chat Layout */
.chat-container {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 500px;
}


/* Chat Window */
.chat-window {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 1rem;
    background: #ffffff;
}

.chat-header {
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 10px;
}

.chat-progressbar {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 5px;
    margin-top: 4px;
}

.chat-progressbar:not(.show) {
    opacity: 0;
}

.chat-box-content {
    height: 400px;
}

.chat-box-content:not(.chatting) .chat-content {
    display: none;
}

.chat-box-content.chatting .chat-list-wrapper {
    display: none;
}

.chat-list-wrapper {
    height: 100%;
}

.chat-list-content {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    display: flex;
    padding: .5rem 0;
    flex-direction: column;
}

.chat-list {
    max-width: 100%;
}

.chat-item {
    width: 100%;
    text-decoration: none;
}

.chat-item .avatar {
    height: 3rem;
    width: 3rem;
}

.chat-item h5 {
    font-size: 1rem;
}

.chat-item .line-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.chat-status-icon {
    font-size: .8rem;
}

.chat-status-icon.read {
    color: var(--color-primary);
}

.chat-status-icon > * {
    padding: 0;
}

.chat-status-icon > :last-child {
    margin-left: -.5rem;
}

.chat-item:hover {
    background: rgba(0, 0, 0, 0.1);
}

.extra-small {
    font-size: .75rem;
}

.chat-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

#chat-box.show {
    /*animation: sli linear .3s;*/
    transition: height .3s ease-in-out;
}

@keyframes sli {
    from {
        height: 0;
    }
    to {
        height: 400px;
    }
}

.chat-content {
    height: 100%;
}

.chat-content .message-wrapper {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;

}

.messages {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column-reverse;
}

.sb-mini::-webkit-scrollbar {
    width: 5px;
}

.sb-mini::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 2.25rem;
}

.message-list {
    margin-top: auto;
}

.message {
    max-width: 70%;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Chat Input */
.chat-input {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-top: 1px solid #ddd;
}

.chat-input .input-container {
    background: #F4F5FA;
    border-radius: 2.25rem;
    padding: 10px;
    flex: 1;
}

.chat-input .input-form {
    flex: 1;
    border: none;
    outline: none;
    height: auto;
    max-height: 120px;
    overflow-y: auto;
}

.chat-input button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    margin-left: 10px;
}

.smv-shadow1 {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.smv-shadow2 {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.input-group-navbar input {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

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

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

.ai-center {
    align-items: center !important;
}
.ai-start {
    align-items: flex-start !important;
}

.form-control, .form-control:focus {
    box-shadow: none;
    border-width: 2px;
}

.service-hero {
    min-height: 70vh;
    position: relative;
    color: #ffffff;
    isolation: isolate;
}

.service-hero::before {
    background: rgba(0, 0, 0, 0.6);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;

}

.icon-shape {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.icon-md {
    height: 2.5rem;
    line-height: 2.5rem;
    width: 2.5rem;
}

.text-facebook {
    color: #5d82d1;
}

.text-instagram {
    color: #c22b72;
}

.text-youtube {
    color: #ff0000;
}

.spinner_jCIR {
    animation: spinner_B8Vq .9s linear infinite;
    animation-delay: -.9s
}

.spinner_upm8 {
    animation-delay: -.8s
}

.spinner_2eL5 {
    animation-delay: -.7s
}

.spinner_Rp9l {
    animation-delay: -.6s
}

.spinner_dy3W {
    animation-delay: -.5s
}

@keyframes spinner_B8Vq {
    0%, 66.66% {
        animation-timing-function: cubic-bezier(0.36, .61, .3, .98);
        y: 6px;
        height: 12px
    }
    33.33% {
        animation-timing-function: cubic-bezier(0.36, .61, .3, .98);
        y: 1px;
        height: 22px
    }
}

.btn-loader svg {
    fill: currentColor;
}

.btn-loader:not(.show) .loader-icon {
    display: none;
}

.toast-container {
    bottom: 5rem;
}

.toast {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
}

.toast-header {
    background: inherit;
    color: inherit;
    border-color: #ffffff;
}


.s-dash-counts .card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}

.s-dash-counts .card span {
    position: absolute;
    top: 0;
    left: 0;
    margin: 1rem;
}


.smv-table {
    --border-light: rgba(0, 0, 0, .1);
    border-collapse: collapse;
    border-color: inherit;
    text-indent: 0;
}

.smv-table.table-bordered > * > * > * {
    border: 1px solid var(--border-light);
    margin: 0;
    padding: .25rem .75rem;
}

.smv-table.table-bordered tr td {
    border-top-width: 0;
}

.smv-table.table-bordered tr :not(:last-child) {
    border-right-width: 0;
}

.smv-table thead {
    display: table-header-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

.smv-table tbody {
    display: table-row-group;
    vertical-align: middle;
    unicode-bidi: isolate;
    border-color: inherit;
}

.smv-table tr {
    display: table-row;
    vertical-align: inherit;
    unicode-bidi: isolate;
    border-color: inherit;
}

.smv-table th:first-child {
    border-top-left-radius: .375rem;
    padding-left: .75rem;
}

.smv-table th:last-child {
    border-top-right-radius: .375rem;
    padding-left: .75rem;
}

.smv-table th {
    border-left-width: 1px;
    background-color: var(--border-light);
    padding: .45rem .75rem;
}

.smv-table td:first-child {
    padding-left: .75rem;
}

.smv-table td {
    border-left-width: 1px;
    vertical-align: baseline;
}

.smv-table.table-bordered {
    --smv-border-spacing-x: 0px;
    --smv-border-spacing-y: 0px;
    border-collapse: separate;
    border-spacing: var(--smv-border-spacing-x) var(--smv-border-spacing-y);
    margin-bottom: .25rem;
    margin-top: .25rem;
    width: 100%;
}


.fm-container[data-edit-mode=true] {
    z-index: 100;
    position: relative;
    isolation: isolate;
}

.fm-container[data-edit-mode=true]::before {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    content: "";
    z-index: 0;
}


.imessage {
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    font-family: "SanFrancisco";
    font-size: 1.25rem;
    margin: 0 auto 0;
    max-width: 600px;
    padding: 0 1.5rem;
}

.imessage .message-item {
    display: flex;
    gap: .5rem;
    align-items: center;
    align-self: stretch;
}

.imessage .message-item p {
    border-radius: 1.15rem;
    line-height: 1.25;
    max-width: 75%;
    width: auto;
    padding: 0.1rem .875rem;
    position: relative;
    word-wrap: break-word;
}

.imessage .message-item p::before,
.imessage .message-item p::after {
    bottom: -0.1rem;
    content: "";
    height: 1rem;
    position: absolute;
}

.imessage .message-item.message-out {
    justify-content: end;
}

.imessage .message-item.message-out p {
    background-color: var(--color-primary);
    color: #fff;
}

.imessage .message-item.message-out p::before {
    border-bottom-left-radius: 0.8rem 0.7rem;
    border-right: 1rem solid var(--color-primary);
    right: -0.35rem;
    transform: translate(0, -0.1rem);
}

.imessage .message-item.message-out p::after {
    background-color: #fff;
    border-bottom-left-radius: 0.5rem;
    right: -40px;
    transform: translate(-30px, -2px);
    width: 10px;
}

.imessage p + p {
    /*margin-bottom: 0;*/
}

.imessage .message-item p[class^="from-"] {
    /*margin: 0.5rem 0;*/
    width: fit-content;
}

.imessage .message-item.message-in p {
    align-items: flex-start;
    background-color: #e5e5ea;
    color: #000;
}

.imessage .message-item.message-in p:before {
    border-bottom-right-radius: 0.8rem 0.7rem;
    border-left: 1rem solid #e5e5ea;
    left: -0.35rem;
    transform: translate(0, -0.1rem);
}

.imessage .message-item.message-in p::after {
    background-color: #fff;
    border-bottom-right-radius: 0.5rem;
    left: 20px;
    transform: translate(-30px, -2px);
    width: 10px;
}

p[class^="from-"].emoji {
    background: none;
    font-size: 2.5rem;
}

p[class^="from-"].emoji::before {
    content: none;
}

.imessage .message-item:not(:last-child) p::before {
    display: none;
}

.imessage p:first-child:not(:last-child) {
    border-radius: 1.15rem 1.15rem .5rem 1.15rem;
}

.imessage .message-item:last-child:not(:first-child) p {
    border-radius: 1.15rem .5rem 1.15rem 1.15rem;
}

.imessage .message-item + .message-item:not(:last-child) p {
    border-radius: 1.15rem .5rem .5rem 1.15rem;
}

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

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

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

.modal.center-grow .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transform: scale(.90);
}
.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
}

.modal {
    background: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-header,
    .modal-fullscreen-sm-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-sm-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-md-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-header,
    .modal-fullscreen-md-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-md-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-lg-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-header,
    .modal-fullscreen-lg-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-lg-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-header,
    .modal-fullscreen-xl-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-xl-down .modal-body {
        overflow-y: auto;
    }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }

    .modal-fullscreen-xxl-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-header,
    .modal-fullscreen-xxl-down .modal-footer {
        border-radius: 0;
    }

    .modal-fullscreen-xxl-down .modal-body {
        overflow-y: auto;
    }
}

.caps {
    text-transform: capitalize;
}


.upper {
    text-transform: uppercase;
}

.barloading {
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    display: block;
    z-index: 5000;
    overflow: hidden;
    background-color: inherit;
}

.bar-loading:before {
    display: block;
    position: absolute;
    content: "";
    left: -200px;
    background-color: var(--color-primary);
    width: 200px;
    height: 4px;
    animation: bar-loading 1.5s linear infinite;
}

@keyframes bar-loading {
    from {
        left: -200px;
        width: 30%;
    }
    50% {
        width: 30%;
    }
    70% {
        width: 70%;
    }
    80% {
        left: 50%;
    }
    95% {
        left: 120%;
    }
    to {
        left: 100%;
    }
}

.hero-bn {
    display: flex;
    position: relative;
}

.hero-bn > * {
    border-radius: .6rem;
    /*background: #fff;*/
    padding: .6rem;
}

.hero-bn > :nth-child(2) {
    position: absolute;
    top: 70%;
    left: -3rem;
}

.hero-bn > :nth-child(3) {
    position: absolute;
    top: 80%;
    right: -3rem;
}

.hero-bn img {
    border-radius: .6rem;
    min-height: 100% !important;
    object-position: center;
    object-fit: cover;
}

.hero-bn > :nth-child(3) img {
    height: 200px;
}

.input-reset {
    box-shadow: none;
    border: none;
    outline: none;
}

.bg-faded-accent {
    background-color: rgba(93, 60, 242, .1) !important;
}

.btn-market {
    display: inline-block;
    position: relative;
    padding: .65em 1.125em;
    border-radius: .5rem;
    background-image: linear-gradient(180deg, rgba(69, 64, 86, .765), rgba(69, 64, 86, .9));
    border: 1px solid #1f1b2d;
    box-shadow: 0 .25rem .75rem -.375rem rgba(31, 27, 45, .2), 0 .5rem 1rem rgba(31, 27, 45, .16);
}


.iphone-x {
    position: relative;
    margin: 40px auto;
    width: 360px;
    height: 780px;
    background-color: #202124;
    border-radius: 30px;
    -webkit-box-shadow: 0px 0px 0px 11px #202124, 0px 0px 0px 13px #202124, 0px 0px 0px 10px #1a1a1d, 0px 5px 7px 13px rgba(220, 224, 229, 0.04);
    box-shadow: 0px 0px 0px 11px #202124, 0px 0px 0px 13px #202124, 0px 0px 0px 10px #1a1a1d, 0px 5px 7px 13px rgba(220, 224, 229, 0.04);
}

.iphone-x:before, .iphone-x:after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.iphone-x:after {
    bottom: 7px;
    width: 140px;
    height: 4px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.iphone-x:before {
    top: -2px;
    width: 66%;
    height: 28px;
    background-color: #202124;
    border-radius: 0px 0px 40px 40px;
}

.iphone-x i,
.iphone-x b,
.iphone-x s,
.iphone-x span {
    position: absolute;
    display: block;
    color: transparent;
}

.iphone-x i {
    top: 0px;
    left: 50%;
    -webkit-transform: translate(-50%, 6px);
    transform: translate(-50%, 6px);
    height: 8px;
    width: 15%;
    background-color: #000;
    border-radius: 8px;
    -webkit-box-shadow: inset 0px -3px 3px 0px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0px -3px 3px 0px rgba(255, 255, 255, 0.2);
}

.iphone-x b {
    left: 10%;
    top: 0px;
    -webkit-transform: translate(180px, 4px);
    transform: translate(180px, 4px);
    width: 12px;
    height: 12px;
    background-color: #000;
    border-radius: 12px;
    -webkit-box-shadow: inset 0px -3px 2px 0px rgba(255, 255, 255, 0.2);
    box-shadow: inset 0px -3px 2px 0px rgba(255, 255, 255, 0.2);
}

.iphone-x b:after {
    content: "";
    position: absolute;
    background-color: rgba(9, 184, 80, 0.5);
    width: 6px;
    height: 6px;
    top: 2px;
    left: 2px;
    top: 3px;
    left: 3px;
    display: block;
    border-radius: 4px;
    -webkit-box-shadow: inset 0px -2px 2px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px -2px 2px rgba(0, 0, 0, 0.5);
}

.iphone-x s {
    top: 50px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    font-size: 70px;
    font-weight: 100;
    padding-top: 60px;
}

.iphone-x span {
    bottom: 50px;
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    left: 30px;
}

.iphone-x span + span {
    left: auto;
    right: 30px;
}

.iphone-x.iphone-x-small {
    margin: 40px auto;
    width: 280px;
    height: 580px;
}

.iphone-x.iphone-x-small b {
    left: 4%;
}

@media (max-width: 1199.98px) {
    .iphone-x, .iphone-x.iphone-x-small {
        width: 260px;
        height: 540px;
        background-size: 100%;
    }

    .iphone-x b, .iphone-x.iphone-x-small b {
        left: -1%;
    }

    .iphone-x.iphone-x-half {
        width: 240px;
        height: 280px;
        background-size: 100%;
    }

    .iphone-x b {
        left: -6%;
    }
}

@media (max-width: 575.98px) {
    .iphone-x, .iphone-x.iphone-x-small {
        width: 240px;
        height: 480px;
        background-size: 100%;
    }

    .iphone-x b, .iphone-x.iphone-x-small b {
        left: -6%;
    }
}

.icon-box-media {
    width: 2rem;
    min-width: 2rem;
    height: 2rem;
    transition: background-color .22s ease-in-out, color .22s ease-in-out;
    border-radius: .5rem;
    background-position: 50%;
    background-size: cover;
    text-align: center;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    vertical-align: middle;
}

.bg-secondary:not(:hover) .icon-box-media, [class*=" bg-"]:not(.dropdown-toggle) > .icon-box-media > .icon-box-media:not(.bg-faded-light) > .icon-box-media:not(.bg-faded-light) {
    background-color: #fff !important
}

.icon-box-title:not(.text-light):not(.text-white) {
    color: #1f1b2d !important;
}

.icon-box-title {
    margin-bottom: .5rem;
}

a {
    text-decoration: none;
}

.btn-icon.btn-xs {
    width: 2rem;
    height: 2rem;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
}

.btn-xs {
    font-weight: 400;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-padding-x: 0.875rem;
    --bs-btn-font-size: 0.75rem;
    --bs-btn-border-radius: 0.375rem;
}

.btn-translucent-light {
    --bs-btn-color: #fff !important;
    --bs-btn-hover-color: #E5B80B !important;
    --bs-btn-active-color: #E5B80B !important;
    --bs-btn-hover-bg: #fff !important;
    --bs-btn-active-bg: #fff !important;
}

.btn-translucent-light {
    --bs-btn-bg: hsla(0, 0%, 100%, .04);
}

[class*=" btn-translucent-"], [class^=btn-translucent-] {
    border: 0;
}

.sec2-cards .card {
    border: none;
    align-self: stretch;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    text-align: center;
}

.show-g {
    position: relative;

}

.show-g > * {
    position: absolute;
    max-width: 200px;
    padding: .5rem;
    background: #fff;
    border-radius: inherit;
    z-index: 1;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.show-g > *:first-child {
    right: -2rem;
    bottom: 0;
    transform: rotate(35deg);
}

.overlay-bg {
    position: absolute;
    inset: 0;

}

.overlay-bg::after {
    position: absolute;
    background-image: linear-gradient(180deg, transparent, transparent, rgb(0, 0, 0));
    content: "";
    display: block;
    inset: 0;
    border-radius: .5rem;
}

.nav-light .nav-link, .nav-link-light {
    color: hsla(0, 0%, 100%, .65);
    text-decoration: none;
    cursor: pointer;
}

.page-wrapper {
    flex: 1 0 auto;
}

.form-control-light, .form-select-light {
    background-color: hsla(0, 0%, 100%, .04) !important;
    color: #fff !important;
    border-color: hsla(0, 0%, 100%, .12);
}

.form-control-light::placeholder {
    color: #a8a8a8;
}

.cd-overlay {
    position: relative;
    color: #ffffff;
    isolation: isolate;
}

.cd-overlay::before {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    content: "";
    background-image: linear-gradient(90deg, rgb(var(--bs-dark-rgb)), transparent);
}


.file-uploader {
    margin-bottom: 0 !important;
    border: 1px dashed #d5d2dc !important;
    border-radius: .75rem !important;
    font-family: Noto Sans, sans-serif !important;
    cursor: pointer !important
}

.filepond--root .filepond--drop-label {
    min-height: 10rem !important
}

.filepond--root .filepond--drop-label > label {
    cursor: pointer !important
}

.filepond--panel, .filepond--panel-root {
    background-color: transparent !important
}

.filepond--image-preview {
    background-color: #1f1b2d !important
}

.filepond--credits {
    display: none !important
}

@media (min-width: 500px) {
    .file-uploader-grid .filepond--item {
        width: calc(50% - .5em) !important
    }
}

[data-filepond-item-state*=error] .filepond--item-panel, [data-filepond-item-state*=invalid] .filepond--item-panel {
    background-color: #f23c49 !important
}

[data-filepond-item-state=processing-complete] .filepond--item-panel {
    background-color: #07c98b !important
}

.form-normal input,
.form-normal select{
    box-shadow: none!important;
}



.btn-next,.btn-prev,.swiper-button-next,.swiper-button-prev {
    position: absolute!important;
    top: 50%!important;
    width: 2.25rem!important;
    height: 2.25rem!important;
    padding: 0;
    transition: all .3s ease-in-out!important;
    border-radius: 50%!important;
    background-color: #fff!important;
    color: #454056!important;
    text-align: center!important;
    border: 0!important;
    box-shadow: 0 .125rem .125rem -.125rem rgba(31,27,45,.08),0 .25rem .75rem rgba(31,27,45,.08)!important;
    z-index: 10!important
}

.btn-next:not([class*=" mt-"]),.btn-prev:not([class*=" mt-"]),.swiper-button-next:not([class*=" mt-"]),.swiper-button-prev:not([class*=" mt-"]) {
    margin-top: -1.125rem!important
}

.btn-next:focus,.btn-prev:focus,.swiper-button-next:focus,.swiper-button-prev:focus {
    outline: none
}

.btn-next:after,.btn-prev:after,.swiper-button-next:after,.swiper-button-prev:after {
    font-family: finder-icons!important;
    font-weight: 400;
    font-size: .75rem!important;
    line-height: 2rem!important
}

.btn-next:hover,.btn-prev:hover,.swiper-button-next:hover,.swiper-button-prev:hover {
    color: #fd5631!important;
    box-shadow: 0 .125rem .5rem -.25rem rgba(31,27,45,.12),0 .25rem 1rem rgba(31,27,45,.12)!important
}

.btn-next.swiper-button-disabled,.btn-next[disabled],.btn-prev.swiper-button-disabled,.btn-prev[disabled],.swiper-button-next.swiper-button-disabled,.swiper-button-next[disabled],.swiper-button-prev.swiper-button-disabled,.swiper-button-prev[disabled] {
    opacity: 0!important;
    visibility: hidden!important
}

.btn-prev {
    left: 0!important
}

.swiper-button-prev {
    left: 1rem!important
}

.btn-prev:after,.swiper-button-prev:after {
    margin-right: .0625rem;
    content: ""!important
}

.btn-next {
    right: 0!important
}

.swiper-button-next {
    right: 1rem!important
}

.btn-next:after,.swiper-button-next:after {
    margin-left: .0625rem;
    content: ""!important
}

.btn-next.position-relative,.btn-prev.position-relative {
    position: relative!important;
    margin-top: 0!important
}

.swiper-nav-onhover .btn-next,.swiper-nav-onhover .btn-prev,.swiper-nav-onhover .swiper-button-next,.swiper-nav-onhover .swiper-button-prev {
    opacity: 0!important
}

.swiper-nav-onhover .btn-prev,.swiper-nav-onhover .swiper-button-prev {
    transform: translateX(1rem)
}

.swiper-nav-onhover .btn-next,.swiper-nav-onhover .swiper-button-next {
    transform: translateX(-1rem)
}

.swiper-nav-onhover:hover .btn-next,.swiper-nav-onhover:hover .btn-prev,.swiper-nav-onhover:hover .swiper-button-next,.swiper-nav-onhover:hover .swiper-button-prev {
    transform: none!important;
    opacity: 1!important
}

.swiper-vertical .btn-next,.swiper-vertical .btn-prev,.swiper-vertical .swiper-button-next,.swiper-vertical .swiper-button-prev {
    right: 0!important;
    left: 50%!important;
    margin-top: 0!important;
    margin-left: -1.125rem!important
}

.swiper-vertical .btn-prev {
    top: 0!important
}

.swiper-vertical .btn-next {
    bottom: 0!important
}

.swiper-vertical .swiper-button-prev {
    top: 1rem!important
}

.swiper-vertical .swiper-button-next {
    top: auto!important;
    bottom: 1rem!important
}

.swiper-vertical .btn-prev:after,.swiper-vertical .swiper-button-prev:after {
    margin-right: 0;
    margin-bottom: .125rem;
    content: ""!important
}

.swiper-vertical .btn-next:after,.swiper-vertical .swiper-button-next:after {
    margin-left: 0;
    margin-top: .125rem;
    content: ""!important
}

.swiper-vertical.swiper-nav-onhover .btn-prev,.swiper-vertical.swiper-nav-onhover .swiper-button-prev {
    transform: translateY(1rem)
}

.swiper-vertical.swiper-nav-onhover .btn-next,.swiper-vertical.swiper-nav-onhover .swiper-button-next {
    transform: translateY(-1rem)
}

.btn-next.btn-light,.btn-prev.btn-light {
    background-color: hsla(0,0%,100%,.04)!important;
    color: #fff!important;
    box-shadow: none!important
}

.btn-next.btn-light:hover,.btn-prev.btn-light:hover {
    background-color: #fff!important;
    color: #fd5631!important
}

.swiper-pagination:not(.swiper-thumbnails) {
    display: flex;
    justify-content: center;
    align-items: center
}

.swiper-pagination:not(.swiper-thumbnails).swiper-pagination-lock {
    display: none
}

.swiper-pagination-bullet:not(.swiper-thumbnail) {
    width: 1rem!important;
    height: .375rem!important;
    transition: width .2s ease-in-out,height .2s ease-in-out,background-color .2s ease-in-out!important;
    border-radius: 50rem!important;
    background-color: rgba(102,98,118,.4)!important;
    opacity: 1!important
}

.swiper-pagination-bullet-active:not(.swiper-thumbnail) {
    background-color: #666276!important
}

.swiper-horizontal>.swiper-pagination-bullets:not(.swiper-thumbnails):not(.bottom-0),.swiper-pagination-bullets:not(.swiper-thumbnails).swiper-pagination-horizontal:not(.bottom-0) {
    bottom: 1.375rem!important
}

.swiper-horizontal>.swiper-pagination-bullets:not(.swiper-thumbnails) .swiper-pagination-bullet,.swiper-pagination-bullets:not(.swiper-thumbnails).swiper-pagination-horizontal .swiper-pagination-bullet {
    margin: 0 .3rem!important
}

.swiper-horizontal>.swiper-pagination-bullets:not(.swiper-thumbnails) .swiper-pagination-bullet-active,.swiper-pagination-bullets:not(.swiper-thumbnails).swiper-pagination-horizontal .swiper-pagination-bullet-active {
    width: 2rem!important
}

.swiper-pagination-bullets.swiper-pagination-vertical:not(.swiper-thumbnails),.swiper-vertical>.swiper-pagination-bullets:not(.swiper-thumbnails) {
    flex-direction: column!important
}

.swiper-pagination-bullets.swiper-pagination-vertical:not(.swiper-thumbnails):not(.end-0),.swiper-vertical>.swiper-pagination-bullets:not(.swiper-thumbnails):not(.end-0) {
    right: 1.375rem!important
}

.swiper-pagination-bullets.swiper-pagination-vertical:not(.swiper-thumbnails) .swiper-pagination-bullet:not(.swiper-thumbnail),.swiper-vertical>.swiper-pagination-bullets:not(.swiper-thumbnails) .swiper-pagination-bullet:not(.swiper-thumbnail) {
    width: .375rem!important;
    height: 1rem!important;
    margin: .3rem 0!important
}

.swiper-pagination-bullets.swiper-pagination-vertical:not(.swiper-thumbnails) .swiper-pagination-bullet-active,.swiper-vertical>.swiper-pagination-bullets:not(.swiper-thumbnails) .swiper-pagination-bullet-active {
    height: 2rem!important
}

.swiper-pagination-light .swiper-pagination-bullet:not(.swiper-thumbnail) {
    background-color: hsla(0,0%,100%,.4)!important
}

.swiper-pagination-light .swiper-pagination-bullet:not(.swiper-thumbnail).swiper-pagination-bullet-active {
    background-color: #fff!important
}

.swiper-lazy {
    position: relative;
    z-index: 5
}

.swiper-lazy-preloader {
    position: absolute;
    width: 2.25rem!important;
    height: 2.25rem!important;
    top: 50%;
    left: 50%;
    margin-top: -1.125rem!important;
    margin-left: -1.125rem!important;
    border: .125rem solid!important;
    border-right: .125rem solid transparent!important;
    border-radius: 50%;
    color: #666276;
    animation: spinner-border .75s linear infinite;
    z-index: 2!important
}

.swiper-slides-count {
    position: absolute;
    display: flex;
    align-items: center;
    right: 1.5rem;
    bottom: 1.25rem;
    z-index: 10
}

.swiper-thumbnails {
    display: flex!important;
    flex-wrap: wrap!important;
    width: auto!important;
    margin-right: -.4375rem!important;
    margin-left: -.4375rem!important;
    padding: .4375rem 0!important;
    list-style: none!important
}

.swiper-thumbnails:focus {
    outline: none!important
}

.swiper-thumbnail {
    display: block!important;
    width: 20%!important;
    height: auto!important;
    margin: 0!important;
    padding: .4375rem!important;
    border-radius: 0!important;
    background: none!important;
    opacity: 1!important;
    cursor: pointer
}

.swiper-thumbnail:focus {
    outline: none
}

.swiper-thumbnail>img {
    display: block;
    width: 100%;
    transition: opacity .2s ease-in-out,border-color .2s ease-in-out;
    border: 1px solid transparent;
    border-radius: .5rem;
    opacity: .6
}

.swiper-thumbnail:hover>img {
    opacity: 1
}

.swiper-thumbnail.swiper-pagination-bullet-active {
    pointer-events: none!important;
    cursor: default!important
}

.swiper-thumbnail.swiper-pagination-bullet-active>img {
    border-color: #fd5631;
    opacity: 1
}

@media(max-width: 499.98px) {
    .swiper-thumbnails {
        margin-right:-.291375rem!important;
        margin-left: -.291375rem!important;
        padding: .291375rem 0!important
    }

    .swiper-thumbnail {
        width: 33.33%!important;
        padding: .291375rem!important
    }
}

.card>.card-img-hover .swiper-button-next,.card>.card-img-hover .swiper-button-prev {
    transition: opacity .3s ease-in-out;
    background: none!important;
    color: #fff!important;
    box-shadow: none!important;
    opacity: 0!important
}

.card>.card-img-hover .swiper-button-next:after,.card>.card-img-hover .swiper-button-prev:after {
    font-size: 1.03125rem!important
}

.card>.card-img-hover .swiper-button-prev {
    left: .25rem!important
}

.card>.card-img-hover .swiper-button-next {
    right: .25rem!important
}

.card:hover>.card-img-hover .swiper-button-next,.card:hover>.card-img-hover .swiper-button-prev {
    opacity: 1!important
}

.swiper-centered .swiper-slide {
    transition: opacity .15s ease-in-out;
    opacity: .6
}

.swiper-centered .swiper-slide .btn,.swiper-centered .swiper-slide a {
    pointer-events: none
}

.swiper-centered .swiper-slide.swiper-slide-active {
    opacity: 1
}

.swiper-centered .swiper-slide.swiper-slide-active .btn,.swiper-centered .swiper-slide.swiper-slide-active a {
    pointer-events: auto
}

.swiper-slide {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.swiper-slide .from-bottom,.swiper-slide .from-end,.swiper-slide .from-start,.swiper-slide .from-top,.swiper-slide .scale-down,.swiper-slide .scale-up {
    transition: all .45s ease-in-out .3s;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-slide .from-top {
    transform: translateY(-45px)
}

.swiper-slide .from-bottom {
    transform: translateY(45px)
}

.swiper-slide .from-start {
    transform: translateX(-45px)
}

.swiper-slide .from-end {
    transform: translateX(45px)
}

.swiper-slide .scale-up {
    transform: scale(.8)
}

.swiper-slide .scale-down {
    transform: scale(1.2)
}

.swiper-slide .delay-1 {
    transition-delay: .5s
}

.swiper-slide .delay-2 {
    transition-delay: .7s
}

.swiper-slide .delay-3 {
    transition-delay: .9s
}

.swiper-slide .delay-4 {
    transition-delay: 1.1s
}

.swiper-slide.swiper-slide-active .from-bottom,.swiper-slide.swiper-slide-active .from-top {
    transform: translateY(0);
    opacity: 1
}

.swiper-slide.swiper-slide-active .from-end,.swiper-slide.swiper-slide-active .from-start {
    transform: translateX(0);
    opacity: 1
}

.swiper-slide.swiper-slide-active .scale-down,.swiper-slide.swiper-slide-active .scale-up {
    transform: scale(1);
    opacity: 1
}
.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--bs-card-img-overlay-padding);
    border-radius: var(--bs-card-inner-border-radius)
}
.card-img-hover .img-overlay {
    opacity: 0!important
}

.card-img-hover .content-overlay {
    position: absolute;
    transition: opacity .25s ease-in-out;
    opacity: 0
}

.card-img-hover .position-absolute {
    z-index: 5
}

.card:hover>.card-img-hover .img-overlay {
    opacity: .33!important
}

.card:hover>.card-img-hover .img-overlay.opacity-25 {
    opacity: .25!important
}

.card:hover>.card-img-hover .img-overlay.opacity-50 {
    opacity: .5!important
}

.card:hover>.card-img-hover .img-overlay.opacity-60 {
    opacity: .6!important
}

.card:hover>.card-img-hover .img-overlay.opacity-65 {
    opacity: .65!important
}

.card:hover>.card-img-hover .img-overlay.opacity-70 {
    opacity: .7!important
}
