@charset "UTF-8";
/* moved by compressor */
/* default styles for extension "tx_frontend" */
    .ce-align-left { text-align: left; }
    .ce-align-center { text-align: center; }
    .ce-align-right { text-align: right; }

    .ce-table td, .ce-table th { vertical-align: top; }

    .ce-textpic, .ce-image, .ce-nowrap .ce-bodytext, .ce-gallery, .ce-row, .ce-uploads li, .ce-uploads div { overflow: hidden; }

    .ce-left .ce-gallery, .ce-column { float: left; }
    .ce-center .ce-outer { position: relative; float: right; right: 50%; }
    .ce-center .ce-inner { position: relative; float: right; right: -50%; }
    .ce-right .ce-gallery { float: right; }

    .ce-gallery figure { display: table; margin: 0; }
    .ce-gallery figcaption { display: table-caption; caption-side: bottom; }
    .ce-gallery img { display: block; }
    .ce-gallery iframe { border-width: 0; }
    .ce-border img,
    .ce-border iframe {
        border: 2px solid #000000;
        padding: 0px;
    }

    .ce-intext.ce-right .ce-gallery, .ce-intext.ce-left .ce-gallery, .ce-above .ce-gallery {
        margin-bottom: 10px;
    }
    .ce-image .ce-gallery { margin-bottom: 0; }
    .ce-intext.ce-right .ce-gallery { margin-left: 10px; }
    .ce-intext.ce-left .ce-gallery { margin-right: 10px; }
    .ce-below .ce-gallery { margin-top: 10px; }

    .ce-column { margin-right: 10px; }
    .ce-column:last-child { margin-right: 0; }

    .ce-row { margin-bottom: 10px; }
    .ce-row:last-child { margin-bottom: 0; }

    .ce-above .ce-bodytext { clear: both; }

    .ce-intext.ce-left ol, .ce-intext.ce-left ul { padding-left: 40px; overflow: auto; }

    /* Headline */
    .ce-headline-left { text-align: left; }
    .ce-headline-center { text-align: center; }
    .ce-headline-right { text-align: right; }

    /* Uploads */
    .ce-uploads { margin: 0; padding: 0; }
    .ce-uploads li { list-style: none outside none; margin: 1em 0; }
    .ce-uploads img { float: left; padding-right: 1em; vertical-align: top; }
    .ce-uploads span { display: block; }

    /* Table */
    .ce-table { width: 100%; max-width: 100%; }
    .ce-table th, .ce-table td { padding: 0.5em 0.75em; vertical-align: top; }
    .ce-table thead th { border-bottom: 2px solid #dadada; }
    .ce-table th, .ce-table td { border-top: 1px solid #dadada; }
    .ce-table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0,0,0,.05); }
    .ce-table-bordered th, .ce-table-bordered td { border: 1px solid #dadada; }

    /* Space */
    .frame-space-before-extra-small { margin-top: 1em; }
    .frame-space-before-small { margin-top: 2em; }
    .frame-space-before-medium { margin-top: 3em; }
    .frame-space-before-large { margin-top: 4em; }
    .frame-space-before-extra-large { margin-top: 5em; }
    .frame-space-after-extra-small { margin-bottom: 1em; }
    .frame-space-after-small { margin-bottom: 2em; }
    .frame-space-after-medium { margin-bottom: 3em; }
    .frame-space-after-large { margin-bottom: 4em; }
    .frame-space-after-extra-large { margin-bottom: 5em; }

    /* Frame */
    .frame-ruler-before:before { content: ''; display: block; border-top: 1px solid rgba(0,0,0,0.25); margin-bottom: 2em; }
    .frame-ruler-after:after { content: ''; display: block; border-bottom: 1px solid rgba(0,0,0,0.25); margin-top: 2em; }
    .frame-indent { margin-left: 15%; margin-right: 15%; }
    .frame-indent-left { margin-left: 33%; }
    .frame-indent-right { margin-right: 33%; }


.services_tabs {
    position: relative;
    list-style: none;
    background-color: var(--empe-color-theme-bg);
    border: 1px solid var(--empe-color-border-1);
    border-radius: 8px;
    padding: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 10px;
    row-gap: 10px;
    z-index: 1;
}
.services_tabs .active-bg {
    position: absolute;
    background-color: var(--empe-color-theme-primary);
    z-index: -1;
    border-radius: 6px;
    transition: all 0.5s ease;
}
.services_tabs .service_tab_item {
    position: relative;
    z-index: 1;
    display: inline-flex;
    flex: 0 0 auto;
    white-space: nowrap;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 6px;
    background-color: transparent;
    color: var(--empe-color-theme-dark);
    font-weight: var(--empe-fw-sbold);
    font-size: 16px;
    line-height: 1;
    padding: 20px 31px;
}
.services_tabs .service_tab_item .button_inner {
    display: flex;
    align-items: center;
    gap: 10px;
}
.services_tabs .service_tab_item span:not(.button_inner) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--empe-color-theme-dark);
    color: var(--empe-color-heading-primary);
    border-radius: 50%;
}
.services_tabs .service_tab_item:not(.active) {
    background-color: transparent;
    color: var(--empe-color-heading-primary);
}
.services_tabs .service_tab_item:not(.active) span:not(.button_inner) {
    transform: scale(0);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
    .services_tabs {
        column-gap: 0;
    }
    .services_tabs .service_tab_item {
        padding: 15px 14px;
    }
}
@media (max-width: 575px) {
    .services_tabs {
        flex-direction: column;
        column-gap: 0;
        justify-content: start;
    }
    .services_tabs .service_tab_item {
        padding: 15px 14px;
        font-size: 14px;
    }
    .services_tabs .service_tab_item span:not(.button_inner) {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

.services_content_wrap {
    margin-top: 30px;
}

.service_content_wrap {
    border: 1px solid var(--empe-color-border-1);
    background-color: var(--empe-color-theme-bg);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.service_content_wrap .service_content {
    max-width: 490px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    padding-left: 45px;
}
.service_content_wrap .service_content .service_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--empe-color-theme-primary);
    color: var(--empe-color-theme-dark);
    font-size: 44px;
    line-height: 1;
    margin-bottom: 25px;
}
.service_content_wrap .service_content .service_icon i,
.service_content_wrap .service_content .service_icon svg {
    display: inline-flex;
    line-height: 1;
}
.service_content_wrap .service_content .service_icon svg {
    max-width: 44px;
    height: auto;
}
.service_content_wrap .service_content .service_title {
    margin: 0;
}
.service_content_wrap .service_content .service_title a:hover {
    color: var(--empe-color-theme-primary);
}
.service_content_wrap .service_content .service_excerpt {
    margin-top: 20px;
}
.service_content_wrap .service_content .service_btn {
    margin-top: 25px;
}
.service_content_wrap .service_image {
    max-width: 550px;
    width: 100%;
    height: 516px;
    border-radius: 8px;
    overflow: hidden;
}
.service_content_wrap .service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .service_content_wrap .service_image {
        max-width: 500px;
        height: 450px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service_content_wrap .service_content {
        max-width: 425px;
        padding-left: 20px;
    }
    .service_content_wrap .service_image {
        max-width: 420px;
        height: 400px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .service_content_wrap .service_content {
        max-width: 410px;
        padding: 25px 15px;
    }
    .service_content_wrap .service_image {
        max-width: 420px;
        height: 400px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .service_content_wrap {
        flex-direction: column;
        align-items: start;
        gap: 0;
    }
    .service_content_wrap .service_content {
        padding: 25px 15px 40px 15px;
    }
    .service_content_wrap .service_content .service_icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }
    .service_content_wrap .service_image {
        max-width: 100%;
        height: auto;
        min-height: 350px;
    }
}
@media (max-width: 575px) {
    .service_content_wrap .service_content {
        max-width: 100%;
        padding: 25px 5px 40px 5px;
    }
    .service_content_wrap .service_content .service_icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
}
@font-face {
    font-family: swiper-icons;
    src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
    font-weight: 400;
    font-style: normal;
}
:root {
    --swiper-theme-color: #007aff;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}
.swiper-pointer-events {
    touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
    touch-action: pan-x;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}
.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
}
.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
}
:root {
    --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
    display: none !important;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next";
}
.swiper-button-lock {
    display: none;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}
.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
.swiper-pagination-bullet:only-child {
    display: none !important;
}
.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 0.2s transform, 0.2s top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 0.2s transform, 0.2s right;
}
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}
.swiper-pagination-lock {
    display: none;
}
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}
.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}
.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}
.swiper-scrollbar-cursor-drag {
    cursor: move;
}
.swiper-scrollbar-lock {
    display: none;
}
.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.swiper-slide-zoomed {
    cursor: move;
}
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
    flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-cube {
    overflow: visible;
}
.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
}
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
    content: "";
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px);
}
.swiper-flip {
    overflow: visible;
}
.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
}
.swiper-cards {
    overflow: visible;
}
.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
}

/**----------------------------------------
START: Faq CSS
----------------------------------------*/
.tj-faq-section {
    border-bottom: 1px solid var(--empe-color-border-1);
}
.tj-faq-section .tj_accordion {
    max-width: 940px;
    width: 100%;
    margin: auto;
}

.tj_accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion_item {
    background-color: var(--empe-color-theme-bg);
    border: 1px solid var(--empe-color-border-1);
    border-radius: 10px;
    padding: 0 30px;
}
.accordion_item.active {
    border-color: var(--empe-color-theme-primary);
    background-color: var(--empe-color-theme-dark);
}
.accordion_title {
    position: relative;
    z-index: 1;
    width: 100%;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    font-weight: var(--empe-fw-sbold);
    color: var(--empe-color-heading-primary);
    padding: 27px 45px 27px 0;
    text-align: start;
}
.accordion_title::after {
    content: "\e91f";
    font-family: var(--empe-fonticon);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--empe-color-border-1);
    background-color: var(--empe-color-theme-dark);
    color: var(--empe-color-theme-primary);
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: absolute;
    inset-inline-end: 0;
    top: 24px;
    z-index: 2;
}
.accordion_title:not(.collapsed) {
    color: var(--empe-color-theme-primary);
}
.accordion_title:not(.collapsed)::after {
    content: "\e920";
    border-color: var(--empe-color-theme-primary);
    background-color: var(--empe-color-theme-primary);
    color: var(--empe-color-theme-dark);
}
.accordion_content {
    border-top: 1px solid var(--empe-color-border-1);
    padding: 30px 0 !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .accordion_item {
        padding: 0 20px;
    }
    .accordion_title {
        padding: 20px 45px 20px 0;
    }
    .accordion_title::after {
        top: 17px;
    }
    .accordion_content {
        padding: 20px 0;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .accordion_title {
        padding: 20px 40px 20px 0;
        font-size: 18px;
    }
    .accordion_title::after {
        top: 16px;
    }
}

.tj-faq-section-2 {
    background-color: var(--empe-color-theme-bg);
    border-radius: 16px;
}
.tj-faq-section-2 .sec-heading {
    max-width: 550px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .tj-faq-section-2 .sec-heading {
        max-width: 100%;
    }
}
.tj-faq-section-2 .sec-heading .tj-primary-btn {
    margin-top: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .tj-faq-section-2 {
        border-radius: 12px;
    }
}
.tj-faq-section-3 {
    background-color: transparent;
}
.tj-faq-section-4 {
    background-color: transparent;
    border-radius: 0;
    border-bottom: 1px solid var(--empe-color-border-1);
}
.tj-faq-section-5 {
    border-bottom: 0;
}

.faq-left {
    height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .faq-left {
        margin-bottom: 40px;
    }
}
.faq-contact {
    padding: 30px 30px 24px;
    background-color: var(--empe-color-theme-dark);
    border: 1px solid var(--empe-color-border-1);
    border-radius: 10px;
    max-width: 381px;
    margin-top: 128px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .faq-contact {
        margin-top: 0;
    }
}
.faq-contact-2 {
    background-color: var(--empe-color-theme-bg);
}
.faq-contact-2 .faq-contact-item {
    background-color: var(--empe-color-theme-dark);
}
.faq-contact .title {
    margin-bottom: 26px;
    color: var(--empe-color-text-body);
    letter-spacing: -0.02em;
}
.faq-contact ul {
    display: flex;
    align-items: center;
    list-style: none;
}
.faq-contact ul li {
    width: 56px;
    height: 56px;
    border-radius: 100%;
    position: relative;
    border-radius: 50%;
    z-index: 1;
}
.faq-contact ul li:not(:first-child) {
    margin-inline-start: -10px;
}
.faq-contact ul li:has(i) {
    background-color: var(--empe-color-theme-primary);
    border: 2px solid var(--empe-color-theme-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--empe-color-theme-dark);
    z-index: 2;
}
.faq-contact ul li img {
    border: 2px solid var(--empe-color-theme-dark);
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.faq-contact-item {
    padding: 24px 20px;
    background-color: var(--empe-color-theme-bg);
    border: 1px solid var(--empe-color-border-1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.faq-contact-item:hover .faq-contact-list li:has(i) {
    transform: rotateY(360deg);
}
.faq-contact .faq-contact-number-wrapper .desc {
    font-size: 14px;
    line-height: 1.57;
    margin-bottom: 2px;
}
.faq-contact .faq-contact-number-wrapper .faq-contact-number {
    margin-bottom: 0;
    position: relative;
}
.faq-contact .faq-contact-number-wrapper .faq-contact-number::before {
    content: "";
    height: 1px;
    width: 100%;
    background-color: var(--empe-color-heading-primary);
    position: absolute;
    right: 0;
    bottom: 3px;
    transition: transform 0.3s ease-in-out;
}
.faq-contact .faq-contact-number-wrapper .faq-contact-number:hover::before {
    animation: lineHover 0.8s linear;
}

.tj_accordion_2 {
    max-width: 645px;
    margin-inline-start: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .tj_accordion_2 {
        max-width: 100%;
    }
}
.tj_accordion_2 .accordion_item {
    padding: 0;
    background-color: var(--empe-color-theme-dark);
}
.tj_accordion_2 .accordion_item.active {
    border-color: var(--empe-color-border-1);
}
.tj_accordion_2 .accordion_title {
    padding: 27px 70px 27px 30px;
}
.tj_accordion_2 .accordion_title::after {
    inset-inline-end: 30px;
    border-color: var(--empe-color-border-1);
    background-color: var(--empe-color-theme-bg);
}
.tj_accordion_2 .accordion_title:not(.collapsed)::after {
    border-color: var(--empe-color-theme-primary);
    background-color: var(--empe-color-theme-primary);
}
.tj_accordion_2 .accordion_content {
    padding: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .tj_accordion_2 .accordion_title {
        padding: 20px 55px 20px 20px;
    }
    .tj_accordion_2 .accordion_title::after {
        inset-inline-end: 20px;
    }
    .tj_accordion_2 .accordion_content {
        padding: 20px;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .tj_accordion_2 .accordion_title {
        padding: 20px 60px 20px 20px;
    }
}
.tj_accordion_3 .accordion_item {
    background-color: var(--empe-color-theme-bg);
}
.tj_accordion_4 {
    max-width: 100%;
}
.tj_accordion_4 .accordion_title::after {
    border: 0;
    background-color: transparent;
}
.tj_accordion_4 .accordion_title:not(.collapsed) {
    color: var(--empe-color-theme-dark);
}
.tj_accordion_4 .accordion_title:not(.collapsed)::after {
    border: 0;
    background-color: transparent;
}
.tj_accordion_4 .accordion_content {
    padding-top: 0;
    border-top: 0;
}
.tj_accordion_4 .accordion_item {
    background-color: var(--empe-color-theme-bg);
}
.tj_accordion_4 .accordion_item:has(button:not(.collapsed)) {
    background-color: var(--empe-color-theme-primary);
}
.tj_accordion_4 .accordion_item:has(button:not(.collapsed)) .accordion_content {
    color: var(--empe-color-theme-dark);
}

.h6-faq-section {
    position: relative;
    z-index: 0;
}
.h6-faq-section::before, .h6-faq-section::after {
    content: "";
    position: absolute;
    bottom: 20%;
    width: 461px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--empe-color-theme-primary);
    filter: blur(90px);
    opacity: 0.25;
    z-index: -1;
    pointer-events: none;
}
.h6-faq-section::before {
    inset-inline-start: -250px;
}
.h6-faq-section::after {
    inset-inline-end: -250px;
}

.tj_accordion_5 {
    max-width: 966px;
    width: 100%;
    margin: auto;
}
.tj_accordion_5 .accordion_title {
    font-weight: var(--empe-fw-regular);
}
.tj_accordion_5 .accordion_title::after {
    color: var(--empe-color-common-white);
    background-color: var(--empe-color-theme-dark);
}
.tj_accordion_5 .accordion_item:has(.accordion_title:not(.collapsed)) {
    background-color: transparent;
    border-color: var(--empe-color-theme-primary);
}
.tj_accordion_5 .accordion_item:has(.accordion_title:not(.collapsed)) .accordion_title {
    color: var(--empe-color-common-white);
}
.tj_accordion_5 .accordion_item:has(.accordion_title:not(.collapsed)) .accordion_title::after {
    color: var(--empe-color-theme-dark);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    .tj_accordion_5 {
        max-width: 860px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .tj_accordion_5 {
        max-width: 800px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .tj_accordion_5 {
        max-width: 650px;
    }
}

/**----------------------------------------
START: Integration CSS
----------------------------------------*/
.integration-section-wrap {
    position: relative;
    background-color: var(--empe-color-theme-bg);
    border-radius: 16px;
    padding-top: 120px;
    padding-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.integration-section-wrap::before {
    content: "";
    width: 305px;
    height: 305px;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -227px;
    background-color: var(--empe-color-theme-primary);
    filter: blur(70px);
    opacity: 0.6;
}
.integration-section-wrap .bg-img {
    opacity: 0.12;
    mix-blend-mode: luminosity;
}
.integration-section-wrap .sec-heading .sec_heading_wrap {
    max-width: 550px;
    width: 100%;
}
.integration-section-wrap .sec-heading .sec_content_wrap {
    max-width: 355px;
    width: 100%;
}
.integration-section-wrap .sec-heading .sec_content_wrap .tj-text-btn {
    color: var(--empe-color-heading-primary);
    margin-top: 23px;
}
.integration-section-wrap .sec-heading .sec_content_wrap .tj-text-btn:hover {
    color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .integration-section-wrap {
        padding-top: 100px;
        padding-bottom: 5px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .integration-section-wrap {
        padding-top: 70px;
        padding-bottom: 5px;
        border-radius: 12px;
    }
}
@media (max-width: 575px) {
    .integration-section-wrap::before {
        width: 280px;
        height: 280px;
        bottom: -245px;
    }
}

.throwable_wrapper {
    pointer-events: none;
}

.throwable_items_wrap {
    position: relative;
    overflow: hidden;
    height: 445px;
    pointer-events: none;
}
.throwable_items_wrap > * {
    position: absolute;
    display: inline-block;
    margin-bottom: 0;
    left: 0;
    top: 0;
    user-select: none;
    pointer-events: auto;
    transition: none;
    margin: 0;
    padding: 0;
}

.integration_item {
    width: 220px;
    height: 76px;
    padding: 13px 30px;
    border: 1px solid var(--empe-color-border-1);
    border-radius: 85.5px;
    background-color: var(--empe-color-theme-dark);
    display: inline-flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    transform: translate(-50%, -50%) rotate(0rad);
}
.integration_item img,
.integration_item svg {
    pointer-events: none;
    max-width: 100%;
    max-height: 100%;
    transform: rotate(0) !important;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .integration_item {
        width: 190px;
        height: 65px;
        padding: 10px 25px;
    }
}
@media (max-width: 575px) {
    .integration_item {
        width: 140px;
        height: 55px;
        padding: 10px 20px;
    }
}

/* !END: Integration CSS */
.tj-blog-section-2 .sec-heading{max-width:450px}.blog-item{height:100%;background-color:var(--empe-color-theme-bg);padding:15px;border-radius:10px;position:relative}.blog-item .blog-thumb{height:270px;overflow:hidden;position:relative;border-radius:8px}.blog-item .blog-thumb a{display:inline-flex;width:100%;height:100%}.blog-item .blog-thumb img{width:100%;height:100%;object-fit:cover;-webkit-transition:all 0.4s linear 0s;-moz-transition:all 0.4s linear 0s;-ms-transition:all 0.4s linear 0s;-o-transition:all 0.4s linear 0s;transition:all 0.4s linear 0s}@media only screen and (min-width:1200px) and (max-width:1399px),only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:576px) and (max-width:767px){.blog-item .blog-thumb{height:300px}}.blog-item .blog-content{padding:25px 15px 15px 15px}.blog-item .blog-content .title{margin:0;letter-spacing:-.02em}.blog-item .blog-content .title a{background-image:linear-gradient(to bottom,currentColor 0%,currentColor 100%);background-size:0 1px;background-repeat:no-repeat;background-position:0 90%;display:inline}.blog-item .blog-content .title a:hover{background-size:100% 1px}.blog-item .blog-content .desc,.blog-item .blog-content .excerpt{margin-top:20px}.blog-item .blog-content .desc:last-of-type,.blog-item .blog-content .excerpt:last-of-type{margin-bottom:0}.blog-item .categories{margin-bottom:0}.blog-item .categories a{background-color:var(--empe-color-theme-dark);color:var(--empe-color-theme-primary)}.blog-item .categories a:hover{background-color:var(--empe-color-theme-primary);color:var(--empe-color-theme-bg)}.blog-item .tj-text-btn{margin-top:23px}.blog-item:hover .blog-thumb img{transform:scale(1.1)}.blog-item:hover .blog-thumb.img-reveal-2 img{transform:scale(1.1)!important}@media (max-width:575px){.blog-item .blog-content{padding:25px 5px 5px 10px}}.blog-date{position:absolute;inset-inline-start:15px;top:15px;text-align:center;background:var(--empe-color-theme-dark);border:1px solid var(--empe-color-border-1);padding:20px;border-radius:6px;z-index:2}.blog-date .date{display:block;font-size:32px;font-family:var(--empe-ff-heading),sans-serif;font-weight:var(--empe-fw-sbold);color:var(--empe-color-common-white);letter-spacing:-.02em;margin-bottom:8px;line-height:1}.blog-date .month{display:block;font-size:14px;color:var(--empe-color-common-white);letter-spacing:0;text-transform:uppercase;line-height:1}.blog-meta{display:flex;flex-wrap:wrap;align-items:center;gap:8px;margin-bottom:18px}.blog-meta span{color:var(--empe-color-theme-dark-3);line-height:1}.blog-meta span a{color:var(--empe-color-text-body)}.blog-meta span a:hover{color:var(--empe-color-theme-primary)}@media (max-width:575px){.blog-meta{margin-bottom:15px}}.blog-post-wrapper .blog-item{margin-bottom:40px;padding:0;background-color:#fff0}.blog-post-wrapper .blog-item .blog-thumb{border-radius:12px;height:auto;display:inline-flex;position:relative}.blog-post-wrapper .blog-item .blog-thumb iframe{max-width:100%}.blog-post-wrapper .blog-item .blog-thumb .video-btn{position:absolute;width:auto;height:auto;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2}.blog-post-wrapper .blog-item .blog-thumb .video-btn .video-icon{font-size:20px}@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px){.blog-post-wrapper .blog-item .blog-thumb .video-btn .video-icon{width:70px;height:70px}}.blog-post-wrapper .blog-item .blog-thumb .video-btn::before{position:absolute;content:"";inset-inline-start:50%;top:50%;width:100%;height:100%;transform:translate(-50%,-50%);background-color:rgb(211 237 49 / .1);animation:pulse2 2s linear infinite;z-index:-1;border-radius:50%}.blog-post-wrapper .blog-item .categories a{color:var(--empe-color-text-body)}.blog-post-wrapper .blog-item .categories a:hover{color:var(--empe-color-theme-dark)}.blog-post-wrapper .blog-item .blog-content{background-color:#fff0;padding:25px 0 0 0}.blog-post-wrapper .blog-item .tj-primary-btn{margin-top:26px}.blog-post-wrapper .blog-item .tj-primary-btn .btn-icon{width:38px;height:38px}.blog-post-wrapper .blog-item .tj-primary-btn:not(:hover) .btn-icon::before{width:38px}.blog-post-wrapper .blog-date{padding:15px 20px 17px}.blog-post-wrapper .blog-date .date{letter-spacing:-.02em;color:var(--empe-color-heading-primary)}.blog-post-wrapper .blog-date .month{font-size:15px;letter-spacing:.15em;color:var(--empe-color-heading-primary)}.blog-post-wrapper .wp-block-pullquote,.blog-post-wrapper blockquote{margin:0}.tj-post-slider{position:relative;border-radius:12px}.tj-post-slider img{border-radius:12px}.tj-post-slider .blog-post-navigation{position:absolute;width:100%;top:56%;left:50%;transform:translate(-50%,-50%);z-index:5;padding:0 15px;justify-content:space-between;-webkit-transition:all 0.3s ease-in-out;-moz-transition:all 0.3s ease-in-out;-ms-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out}.tj-post-slider .slider-prev{margin-top:-50px}.tj-post-slider .slider-prev:not(:hover){background-color:var(--empe-color-theme-dark)}@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px){.tj-post-slider .slider-prev{margin-top:-40px}}.tj-post-slider .slider-next{margin-top:-50px}.tj-post-slider .slider-next:not(:hover){background-color:var(--empe-color-theme-dark)}@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px){.tj-post-slider .slider-next{margin-top:-40px}}.tj_blog_wrap{display:grid;gap:30px;grid-template-columns:repeat(2,1fr);grid-auto-rows:minmax(200px,auto)}.tj_blog_wrap .blog-item:first-child{grid-column:1;grid-row:1/span 3}.tj_blog_wrap .blog-item:first-child .blog-thumb{height:356px}.tj_blog_wrap .blog-item:first-child .blog-content{padding:20px 15px 15px 15px}.tj_blog_wrap .blog-item:first-child .blog-content .title{font-size:32px;line-height:1.25}.tj_blog_wrap .blog-item:not(:first-child){display:flex;flex-wrap:wrap;align-items:center}.tj_blog_wrap .blog-item:not(:first-child) .blog-thumb{height:100%;width:170px}.tj_blog_wrap .blog-item:not(:first-child) .blog-content{display:flex;flex-direction:column;align-items:start;justify-content:center;width:calc(100% - 170px);padding:15px 15px 15px 25px}.tj_blog_wrap .blog-item:not(:first-child) .blog-content .blog-meta{margin-bottom:15px}.tj_blog_wrap .blog-item:not(:first-child) .blog-content .excerpt,.tj_blog_wrap .blog-item:not(:first-child) .blog-content .desc{display:none}.tj_blog_wrap .blog-item:not(:first-child) .blog-content .tj-text-btn{margin-top:18px}@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:576px) and (max-width:767px),(max-width:575px){.tj_blog_wrap{grid-template-columns:1fr}.tj_blog_wrap .blog-item:first-child{grid-row:auto}}@media only screen and (min-width:576px) and (max-width:767px){.tj_blog_wrap .blog-item:first-child .blog-thumb{height:300px}.tj_blog_wrap .blog-item:first-child .blog-content .title{font-size:25px;line-height:1.333}}@media (max-width:575px){.tj_blog_wrap .blog-item:first-child .blog-thumb{height:270px}.tj_blog_wrap .blog-item:first-child .blog-content{padding:25px 5px 5px 10px}.tj_blog_wrap .blog-item:first-child .blog-content .title{font-size:20px;line-height:1.333}.tj_blog_wrap .blog-item:not(:first-child){flex-direction:column;align-items:start}.tj_blog_wrap .blog-item:not(:first-child) .blog-thumb{height:270px;width:100%}.tj_blog_wrap .blog-item:not(:first-child) .blog-content{width:100%;padding:25px 5px 5px 10px}.tj_blog_wrap .blog-item:not(:first-child) .blog-content .blog-meta{margin-bottom:18px}.tj_blog_wrap .blog-item:not(:first-child) .blog-content .tj-text-btn{margin-top:23px}}.tj_blog_wrap_2 .blog-item{display:flex;flex-wrap:wrap;align-items:center}.tj_blog_wrap_2 .blog-item .tj-primary-btn{display:none}.tj_blog_wrap_2 .blog-item:first-child{grid-row:auto;grid-column:1/span 2}.tj_blog_wrap_2 .blog-item:first-child .blog-thumb{width:calc((100% - 30px) / 2);height:480px}.tj_blog_wrap_2 .blog-item:first-child .blog-content{width:calc((100% - 30px) / 2);padding:15px 15px 15px 30px}.tj_blog_wrap_2 .blog-item:first-child .blog-content .title{font-size:32px;line-height:1.25}.tj_blog_wrap_2 .blog-item:first-child .blog-content .tj-primary-btn{display:inline-flex;margin-top:26px}@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px){.tj_blog_wrap_2 .blog-item:first-child .blog-content .tj-primary-btn{margin-top:22px}}.tj_blog_wrap_2 .blog-item:not(:first-child) .blog-thumb{width:243px;height:260px}.tj_blog_wrap_2 .blog-item:not(:first-child) .blog-content{width:calc(100% - 243px);padding-inline-start:30px}@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:576px) and (max-width:767px),(max-width:575px){.tj_blog_wrap_2 .blog-item:first-child{grid-column:auto}}@media only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:576px) and (max-width:767px),(max-width:575px){.tj_blog_wrap_2 .blog-item:first-child .blog-thumb{width:100%;height:480px}.tj_blog_wrap_2 .blog-item:first-child .blog-content{padding:20px 15px 15px 15px;width:100%}}@media only screen and (min-width:576px) and (max-width:767px){.tj_blog_wrap_2 .blog-item:first-child .blog-thumb{height:300px}.tj_blog_wrap_2 .blog-item:first-child .blog-content .title{font-size:25px;line-height:1.333}.tj_blog_wrap_2 .blog-item:not(:first-child) .blog-thumb{width:200px;height:210px}.tj_blog_wrap_2 .blog-item:not(:first-child) .blog-content{width:calc(100% - 200px);padding:15px;padding-inline-start:20px}}@media (max-width:575px){.tj_blog_wrap .blog-item:first-child .blog-thumb{height:270px}.tj_blog_wrap .blog-item:first-child .blog-content{padding:25px 5px 15px 5px}.tj_blog_wrap .blog-item:first-child .blog-content .title{font-size:20px;line-height:1.333}.tj_blog_wrap .blog-item:not(:first-child){flex-direction:column;align-items:start}.tj_blog_wrap .blog-item:not(:first-child) .blog-thumb{height:270px;width:100%}.tj_blog_wrap .blog-item:not(:first-child) .blog-content{width:100%;padding:25px 5px 15px 5px}.tj_blog_wrap .blog-item:not(:first-child) .blog-content .blog-meta{margin-bottom:18px}.tj_blog_wrap .blog-item:not(:first-child) .blog-content .tj-text-btn{margin-top:22px}}.tj-pagination{margin-top:60px}.tj-pagination ul{padding:0;margin:0;list-style:none;display:flex;flex-wrap:wrap;align-items:center;gap:10px}.tj-pagination ul li .page-numbers{display:inline-block;width:48px;height:48px;border-radius:50%;line-height:48px;text-align:center;background-color:var(--empe-color-theme-bg);font-weight:var(--empe-fw-medium);color:var(--empe-color-heading-primary);border:1px solid var(--empe-color-border-1)}.tj-pagination ul li .page-numbers i{line-height:1;color:var(--empe-color-heading-primary)}.tj-pagination ul li .page-numbers.current,.tj-pagination ul li .page-numbers:hover{background-color:var(--empe-color-theme-primary);color:var(--empe-color-theme-dark);border-color:var(--empe-color-theme-primary)}.tj-pagination ul li .page-numbers.current i,.tj-pagination ul li .page-numbers:hover i{color:var(--empe-color-theme-dark)}.tj-pagination ul li .page-numbers.prev,.tj-pagination ul li .page-numbers.next{font-size:22px}.tj-post-item{height:100%;background-color:var(--empe-color-theme-bg);padding:15px;border-radius:12px;position:relative;overflow:hidden;margin-bottom:30px}.tj-post-item:last-child{margin-bottom:0}.tj-post-item .categories{position:absolute;top:0;left:0;padding:0 10px 10px 0;background-color:var(--empe-color-theme-bg);border-bottom-right-radius:12px;z-index:2}.tj-post-item:hover .tj-post-thumb img{transform:scale(1.1)}.tj-post-thumb{height:410px;overflow:hidden;position:relative;border-radius:0 12px 12px 12px}.tj-post-thumb img{width:100%;height:100%;object-fit:cover;-webkit-transition:all 0.4s linear 0s;-moz-transition:all 0.4s linear 0s;-ms-transition:all 0.4s linear 0s;-o-transition:all 0.4s linear 0s;transition:all 0.4s linear 0s}@media only screen and (min-width:992px) and (max-width:1199px){.tj-post-thumb{height:350px}}@media only screen and (min-width:576px) and (max-width:767px),(max-width:575px){.tj-post-thumb{height:300px}}.tj-post-content{padding:25px 15px 13px 15px}.tj-post-content .title{margin:0}.tj-post-content .title a:hover{color:var(--empe-color-theme-primary)}.tj-post-content .desc{margin-top:15px}.tj-post-content .desc:last-of-type{margin-bottom:0}.tj-post-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px;margin-bottom:15px}.tj-post-meta span{color:var(--empe-color-text-body);line-height:1}.tj-post-meta span a{color:var(--empe-color-text-body)}.tj-post-meta span a:hover{color:var(--empe-color-theme-primary)}.tj-post-meta span:not(:last-child)::after{content:"";width:6px;height:6px;border-radius:50%;background-color:var(--empe-color-theme-primary);display:inline-block;margin:0 0 2px 10px}@media (max-width:575px){.tj-post-meta{margin-bottom:15px}}.tj-post-btn{margin-top:25px}
.grid-left{display:flex;flex-direction:column;justify-content:space-between;height:100%;padding-bottom:25px}.grid-left .grid-info{margin-top:25px}.grid-info{display:flex;flex-wrap:wrap;gap:15px}.grid-info .grid-item{max-width:205px;width:100%}.grid-info .grid-item:not(:last-child){padding-right:15px;border-right:1px solid var(--empe-color-border-1)}@media only screen and (min-width:992px) and (max-width:1199px),(max-width:575px){.grid-info .grid-item:not(:last-child){border:0}}.grid-info .grid-item .subtitle{display:block;font-size:14px;line-height:1;color:var(--empe-color-text-body);margin-bottom:7px}.grid-info .grid-item .title{color:var(--empe-color-common-white);font-size:16px;font-family:var(--empe-ff-body);font-weight:var(--empe-fw-sbold);letter-spacing:0}.grid-info .grid-item a.grid-link{color:var(--empe-color-text-body);position:relative}.grid-info .grid-item a.grid-link::after{content:"";height:1px;width:100%;background-color:var(--empe-color-theme-primary);position:absolute;left:0;bottom:3px;transform:scaleX(0);transform-origin:right;transition:transform 0.3s ease-in-out}.grid-info .grid-item a.grid-link:hover{color:var(--empe-color-theme-primary)}.grid-info .grid-item a.grid-link:hover::after{transform-origin:left;transform:scaleX(1)}.grid-info .grid-item .grid-link{display:inline-flex}.grid-info .grid-item .grid-link span{color:var(--empe-color-theme-primary);margin-inline-start:4px}@media (max-width:575px){.grid-info{gap:20px}}.grid-item.style-2{padding:30px 25px 40px;background-color:var(--empe-color-theme-bg);text-align:center;border-radius:10px}@media only screen and (min-width:576px) and (max-width:767px),only screen and (min-width:768px) and (max-width:991px){.grid-item.style-2{padding:25px}}.grid-item.style-2 p{margin-bottom:0;max-width:224px;margin:0 auto}.grid-item.style-2:hover .grid-icon{background:var(--empe-color-theme-primary)}.grid-item.style-2:hover .grid-icon i{color:var(--empe-color-theme-dark)}.grid-item.style-2 .grid-icon{width:88px;height:88px;display:inline-flex;justify-content:center;align-items:center;background:var(--empe-color-theme-dark);border:1px solid var(--empe-color-border-1);border-radius:50%;margin-bottom:22px;-webkit-transition:all 0.3s ease-in-out 0s;-moz-transition:all 0.3s ease-in-out 0s;-ms-transition:all 0.3s ease-in-out 0s;-o-transition:all 0.3s ease-in-out 0s;transition:all 0.3s ease-in-out 0s}.grid-item.style-2 .grid-icon i{font-size:32px;color:var(--empe-color-theme-primary)}.grid-item.style-2 .grid-title{font-size:24px;font-weight:var(--empe-fw-sbold);letter-spacing:-.02em;margin-bottom:20px}@media only screen and (min-width:576px) and (max-width:767px),only screen and (min-width:768px) and (max-width:991px){.grid-item.style-2 .grid-title{font-size:20px}}.grid-item.style-2 .grid-list{list-style:none}.grid-item.style-2 .grid-list a{color:var(--empe-color-text-body)}.grid-item.style-2 .grid-list a:hover{color:var(--empe-color-theme-primary)}.grid-item.style-2 .grid-list active a{font-weight:var(--empe-fw-sbold);color:var(--empe-color-theme-primary)}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .tj-service-section .sec-heading.mt-30 {
        margin-top: 0;
    }
}

.service-item {
    position: relative;
    padding-bottom: 42px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
    .service-item {
        padding-bottom: 38px;
    }
}
.service-item .item-count {
    position: absolute;
    top: 0;
    right: 0;
    width: 58px;
    height: 52px;
    font-size: 20px;
    line-height: 1;
    font-weight: var(--empe-fw-sbold);
    font-family: var(--empe-ff-heading), sans-serif;
    color: var(--empe-color-theme-dark-2);
    background-color: var(--empe-color-theme-dark);
    border-bottom-left-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-left: 1px solid var(--empe-color-border-1);
    border-bottom: 1px solid var(--empe-color-border-1);
}
.service-item .item-count::before, .service-item .item-count::after {
    content: "";
    position: absolute;
    background-color: transparent;
    top: 0px;
    left: -25px;
    width: 25px;
    height: 12px;
    box-shadow: 12px 0 0 0 var(--empe-color-theme-dark);
    border-top-right-radius: 12px;
    z-index: -1;
    border-top: 1px solid var(--empe-color-border-1);
    border-right: 1px solid var(--empe-color-border-1);
}
.service-item .item-count::after {
    top: auto;
    left: auto;
    bottom: -12px;
    right: 0;
}
.service-item .title {
    margin-bottom: 18px;
}
.service-item .title a:hover {
    color: var(--empe-color-theme-primary);
}
.service-item .desc {
    margin-bottom: 22px;
}
.service-item .tj-text-btn:hover {
    color: var(--empe-color-theme-primary);
}
.service-item:hover .service-icon {
    color: var(--empe-color-theme-dark);
}
.service-item:hover .service-icon::before {
    transform: scale(1);
}
.service-item:hover .item-count {
    color: var(--empe-color-theme-primary);
}
.service-item:hover .item-count i {
    transform: rotateY(360deg);
}
.service-inner {
    padding: 30px;
    background-color: var(--empe-color-theme-bg);
    border: 1px solid var(--empe-color-border-1);
    border-radius: 10px 10px 0 10px;
    position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
    .service-inner {
        padding: 30px 20px;
    }
}
.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--empe-color-theme-dark);
    border: 1px solid var(--empe-color-border-1);
    border-radius: 50%;
    font-size: 44px;
    color: var(--empe-color-theme-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service-icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background-color: var(--empe-color-theme-primary);
    z-index: -1;
    transform: scale(0);
}
.service-list {
    background-color: var(--empe-color-theme-dark);
    border: 1px solid var(--empe-color-border-1);
    padding: 16px 15px;
    border-radius: 8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service-list {
        padding: 14px 12px;
    }
}
.service-btn {
    display: inline-flex;
    background-color: var(--empe-color-theme-bg);
    border: 1px solid var(--empe-color-border-1);
    border-top: 0;
    border-radius: 0 0 10px 10px;
    padding: 0 30px 26px 30px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.service-btn::before {
    content: "";
    position: absolute;
    top: 0px;
    left: -20px;
    width: 20px;
    height: 10px;
    box-shadow: 10px 0 0 0 var(--empe-color-theme-bg);
    border-top-right-radius: 10px;
    border-top: 1px solid var(--empe-color-border-1);
    border-right: 1px solid var(--empe-color-border-1);
    z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
    .service-btn {
        padding: 0 20px 22px 20px;
    }
}
.service-item-2 {
    padding-bottom: 0;
}
.service-item-2 .service-inner {
    padding-top: 35px;
    padding: 32px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out 0s;
    position: relative;
    z-index: 1;
}
.service-item-2 .service-inner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background-color: var(--empe-color-theme-primary);
    z-index: -1;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleY(0);
}
.service-item-2 .service-icon {
    margin-bottom: 27px;
}
.service-item-2 .service-icon::before {
    display: none;
}
.service-item-2 .service-icon i {
    transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .service-item-2 .service-icon {
        margin-bottom: 20px;
    }
}
.service-item-2 .title {
    margin-bottom: 23px;
}
.service-item-2 .title a:hover {
    color: var(--empe-color-theme-dark);
    letter-spacing: 0.1px;
}
.service-item-2 .desc {
    margin-bottom: 24px;
    max-width: inherit !important;
}
.service-item-2:hover .service-inner::before {
    transform: scaleY(1);
}
.service-item-2:hover .service-icon {
    background-color: var(--empe-color-theme-dark);
    color: var(--empe-color-theme-primary);
}
.service-item-2:hover .service-icon i {
    transform: rotateY(360deg);
}
.service-item-2:hover .title a {
    color: var(--empe-color-theme-dark);
}
.service-item-2:hover .desc {
    color: var(--empe-color-theme-dark);
}
.service-item-2:hover .tj-text-btn {
    color: var(--empe-color-theme-dark);
}

.list-style-2 {
    list-style: none;
}
.list-style-2 li {
    color: var(--empe-color-text-body-2);
    font-weight: var(--empe-fw-medium);
    margin-bottom: 9px;
    display: flex;
    gap: 4px;
}
.list-style-2 li:last-child {
    margin-bottom: 0;
}
.list-style-2 li i {
    font-size: 20px;
    margin-top: 3px;
}

.h3-service-section .sec-heading-inner .sec-title {
    max-width: 510px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
    .h3-service-section .sec-heading-inner .sec-title {
        max-width: 430px;
    }
}

.h3-service-section-wrap {
    position: relative;
    background-color: var(--empe-color-theme-bg);
    border-radius: 16px;
    overflow: hidden;
    z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .h3-service-section-wrap {
        border-radius: 12px;
    }
}

.h3_services_wrap {
    border-top: 1px solid var(--empe-color-border-1);
}
.h3_services_wrap .service_list_item {
    border-bottom: 1px solid var(--empe-color-border-1);
}

.service_list_item {
    position: relative;
    padding: 30px 0;
    display: flex;
    align-items: start;
    gap: 20px;
    justify-content: space-between;
}
.service_list_item .service_reveal_img {
    position: absolute;
    top: 50%;
    inset-inline-start: 27%;
    width: 333px;
    height: 333px;
    opacity: 0;
    border-radius: 10px;
    overflow: hidden;
    pointer-events: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%) rotateX(270deg);
    transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
    z-index: 5;
}
.service_list_item:first-child .service_reveal_img {
    margin-top: 30px;
}
.service_list_item .item_count {
    display: inline-flex;
    justify-content: center;
    align-items: start;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    width: 50px;
    height: 88px;
    border: 1px solid var(--empe-color-border-1);
    border-radius: 60px;
    background-color: var(--empe-color-theme-dark);
    font-weight: var(--empe-fw-sbold);
    font-size: 48px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-family: var(--empe-ff-heading), sans-serif;
    color: var(--empe-color-text-body);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}
.service_list_item .item_count span {
    display: inline-flex;
    line-height: 1;
    margin-left: -13px;
}
.service_list_item .item_content {
    display: flex;
    align-items: start;
    gap: 126px;
    margin-left: auto;
}
.service_list_item .item_content .content_inner {
    max-width: 510px;
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.service_list_item .item_content .content_inner .title {
    color: var(--empe-color-heading-primary);
    margin: 0;
}
.service_list_item .item_content .content_inner .title a:hover {
    color: var(--empe-color-theme-primary);
}
.service_list_item .item_content .content_inner .desc {
    color: var(--empe-color-text-body);
    margin-top: 20px;
}
.service_list_item .item_content .tj-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background-color: transparent;
    font-size: 35px;
    border: none;
}
.service_list_item .item_content .tj-icon-btn i {
    color: var(--empe-color-common-white);
}
.service_list_item .item_content .tj-icon-btn:hover i {
    color: var(--empe-color-theme-primary);
}
.service_list_item:not(.is-active) .item_content .content_inner {
    opacity: 0.25;
}
.service_list_item:hover .service_reveal_img {
    opacity: 1;
    transform: translate(-50%, -50%) rotateX(360deg);
}
.service_list_item:hover .item_count {
    border-color: var(--empe-color-theme-primary);
    background-color: var(--empe-color-theme-primary);
    color: var(--empe-color-theme-dark);
}
.service_list_item:hover .item_count span {
    margin-left: 0;
}
.service_list_item:hover .item_content .tj-icon-btn i {
    color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .service_list_item .item_content {
        gap: 50px;
    }
    .service_list_item .service_reveal_img {
        inset-inline-start: 25%;
        width: 300px;
        height: 330px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service_list_item .item_content {
        gap: 30px;
    }
    .service_list_item .item_content .content_inner {
        max-width: 475px;
    }
    .service_list_item .service_reveal_img {
        inset-inline-start: 23%;
        width: 240px;
        height: 280px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .service_list_item .item_content {
        gap: 30px;
    }
    .service_list_item .item_content .content_inner {
        max-width: 475px;
    }
    .service_list_item .service_reveal_img {
        display: none;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .service_list_item {
        padding: 25px 0;
    }
    .service_list_item .item_count {
        width: 40px;
        height: 70px;
        font-size: 40px;
    }
    .service_list_item .item_count span {
        margin-left: -10px;
    }
    .service_list_item .item_content {
        width: calc(100% - 60px);
        flex-direction: column;
        gap: 30px;
    }
    .service_list_item .item_content .content_inner {
        max-width: 100%;
    }
    .service_list_item .item_content .content_inner .desc {
        margin-top: 10px;
    }
    .service_list_item .service_reveal_img {
        display: none;
    }
}

/*!
 * Bootstrap  v5.3.8 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-heading-color:inherit;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-color:#212529;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#dee2e6;--bs-body-color-rgb:222,226,230;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb:222,226,230;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb:222,226,230;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-heading-color:inherit;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-highlight-color:#dee2e6;--bs-highlight-bg:#664d03;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;color:var(--bs-highlight-color);background-color:var(--bs-highlight-bg)}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:var(--bs-code-color);word-wrap:break-word}a>code{color:inherit}kbd{padding:.1875rem .375rem;font-size:.875em;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;line-height:inherit;font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-cancel-button{cursor:pointer;filter:grayscale(1)}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}::file-selector-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-weight:300;line-height:1.2;font-size:calc(1.625rem + 4.5vw)}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-weight:300;line-height:1.2;font-size:calc(1.575rem + 3.9vw)}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-weight:300;line-height:1.2;font-size:calc(1.525rem + 3.3vw)}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-weight:300;line-height:1.2;font-size:calc(1.475rem + 2.7vw)}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-weight:300;line-height:1.2;font-size:calc(1.425rem + 2.1vw)}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-weight:300;line-height:1.2;font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.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(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.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%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.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-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.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%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-color-type:initial;--bs-table-bg-type:initial;--bs-table-color-state:initial;--bs-table-bg-state:initial;--bs-table-color:var(--bs-emphasis-color);--bs-table-bg:var(--bs-body-bg);--bs-table-border-color:var(--bs-border-color);--bs-table-accent-bg:transparent;--bs-table-striped-color:var(--bs-emphasis-color);--bs-table-striped-bg:rgba(var(--bs-emphasis-color-rgb), 0.05);--bs-table-active-color:var(--bs-emphasis-color);--bs-table-active-bg:rgba(var(--bs-emphasis-color-rgb), 0.1);--bs-table-hover-color:var(--bs-emphasis-color);--bs-table-hover-bg:rgba(var(--bs-emphasis-color-rgb), 0.075);width:100%;margin-bottom:1rem;vertical-align:top;border-color:var(--bs-table-border-color)}.table>:not(caption)>*>*{padding:.5rem .5rem;color:var(--bs-table-color-state,var(--bs-table-color-type,var(--bs-table-color)));background-color:var(--bs-table-bg);border-bottom-width:var(--bs-border-width);box-shadow:inset 0 0 0 9999px var(--bs-table-bg-state,var(--bs-table-bg-type,var(--bs-table-accent-bg)))}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table-group-divider{border-top:calc(var(--bs-border-width) * 2) solid currentcolor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:var(--bs-border-width) 0}.table-bordered>:not(caption)>*>*{border-width:0 var(--bs-border-width)}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-color-type:var(--bs-table-striped-color);--bs-table-bg-type:var(--bs-table-striped-bg)}.table-striped-columns>:not(caption)>tr>:nth-child(2n){--bs-table-color-type:var(--bs-table-striped-color);--bs-table-bg-type:var(--bs-table-striped-bg)}.table-active{--bs-table-color-state:var(--bs-table-active-color);--bs-table-bg-state:var(--bs-table-active-bg)}.table-hover>tbody>tr:hover>*{--bs-table-color-state:var(--bs-table-hover-color);--bs-table-bg-state:var(--bs-table-hover-bg)}.table-primary{--bs-table-color:#000;--bs-table-bg:#cfe2ff;--bs-table-border-color:#a6b5cc;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-secondary{--bs-table-color:#000;--bs-table-bg:#e2e3e5;--bs-table-border-color:#b5b6b7;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-success{--bs-table-color:#000;--bs-table-bg:#d1e7dd;--bs-table-border-color:#a7b9b1;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-info{--bs-table-color:#000;--bs-table-bg:#cff4fc;--bs-table-border-color:#a6c3ca;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-warning{--bs-table-color:#000;--bs-table-bg:#fff3cd;--bs-table-border-color:#ccc2a4;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-danger{--bs-table-color:#000;--bs-table-bg:#f8d7da;--bs-table-border-color:#c6acae;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-light{--bs-table-color:#000;--bs-table-bg:#f8f9fa;--bs-table-border-color:#c6c7c8;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-dark{--bs-table-color:#fff;--bs-table-bg:#212529;--bs-table-border-color:#4d5154;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:var(--bs-table-color);border-color:var(--bs-table-border-color)}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:var(--bs-secondary-color)}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-body-bg);background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg);border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:var(--bs-secondary-bg)}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.form-control-plaintext:focus{outline:0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-body-bg);background-image:var(--bs-form-select-bg-img),var(--bs-form-select-bg-icon,none);background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:var(--bs-secondary-bg)}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 var(--bs-body-color)}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}[data-bs-theme=dark] .form-select{--bs-form-select-bg-img:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-reverse{padding-right:1.5em;padding-left:0;text-align:right}.form-check-reverse .form-check-input{float:right;margin-right:-1.5em;margin-left:0}.form-check-input{--bs-form-check-bg:var(--bs-body-bg);flex-shrink:0;width:1em;height:1em;margin-top:.25em;vertical-align:top;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:var(--bs-form-check-bg);background-image:var(--bs-form-check-bg-image);background-repeat:no-repeat;background-position:center;background-size:contain;border:var(--bs-border-width) solid var(--bs-border-color);-webkit-print-color-adjust:exact;color-adjust:exact;print-color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;--bs-form-check-bg-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{cursor:default;opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");width:2em;margin-left:-2.5em;background-image:var(--bs-form-switch-bg);background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-switch.form-check-reverse{padding-right:2.5em;padding-left:0}.form-switch.form-check-reverse .form-check-input{margin-right:-2.5em;margin-left:0}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}[data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus){--bs-form-switch-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")}.form-range{width:100%;height:1.5rem;padding:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;-webkit-appearance:none;appearance:none;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-secondary-bg);border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;-moz-appearance:none;appearance:none;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:var(--bs-secondary-bg);border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:var(--bs-secondary-color)}.form-range:disabled::-moz-range-thumb{background-color:var(--bs-secondary-color)}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-control-plaintext,.form-floating>.form-select{height:calc(3.5rem + calc(var(--bs-border-width) * 2));min-height:calc(3.5rem + calc(var(--bs-border-width) * 2));line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;z-index:2;max-width:100%;height:100%;padding:1rem .75rem;overflow:hidden;color:rgba(var(--bs-body-color-rgb),.65);text-align:start;text-overflow:ellipsis;white-space:nowrap;pointer-events:none;border:var(--bs-border-width) solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control,.form-floating>.form-control-plaintext{padding:1rem .75rem}.form-floating>.form-control-plaintext::placeholder,.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control-plaintext:focus,.form-floating>.form-control-plaintext:not(:placeholder-shown),.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control-plaintext:-webkit-autofill,.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem;padding-left:.75rem}.form-floating>.form-control-plaintext~label,.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>textarea:focus~label::after,.form-floating>textarea:not(:placeholder-shown)~label::after{position:absolute;inset:1rem 0.375rem;z-index:-1;height:1.5em;content:"";background-color:var(--bs-body-bg);border-radius:var(--bs-border-radius)}.form-floating>textarea:disabled~label::after{background-color:var(--bs-secondary-bg)}.form-floating>.form-control-plaintext~label{border-width:var(--bs-border-width) 0}.form-floating>.form-control:disabled~label,.form-floating>:disabled~label{color:#6c757d}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-floating,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-floating:focus-within,.input-group>.form-select:focus{z-index:5}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:5}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:var(--bs-body-color);text-align:center;white-space:nowrap;background-color:var(--bs-tertiary-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,.input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select,.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:calc(-1 * var(--bs-border-width));border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-floating:not(:first-child)>.form-control,.input-group>.form-floating:not(:first-child)>.form-select{border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-valid-color)}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-success);border-radius:var(--bs-border-radius)}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:var(--bs-form-valid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:var(--bs-form-valid-border-color)}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:var(--bs-form-valid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-control-color.is-valid,.was-validated .form-control-color:valid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:var(--bs-form-valid-border-color)}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:var(--bs-form-valid-color)}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-success-rgb),.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:var(--bs-form-valid-color)}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-valid,.input-group>.form-floating:not(:focus-within).is-valid,.input-group>.form-select:not(:focus).is-valid,.was-validated .input-group>.form-control:not(:focus):valid,.was-validated .input-group>.form-floating:not(:focus-within):valid,.was-validated .input-group>.form-select:not(:focus):valid{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:var(--bs-form-invalid-color)}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:var(--bs-danger);border-radius:var(--bs-border-radius)}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:var(--bs-form-invalid-border-color);padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:var(--bs-form-invalid-border-color)}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{--bs-form-select-bg-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");padding-right:4.125rem;background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:var(--bs-form-invalid-border-color);box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-control-color.is-invalid,.was-validated .form-control-color:invalid{width:calc(3rem + calc(1.5em + .75rem))}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:var(--bs-form-invalid-border-color)}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:var(--bs-form-invalid-color)}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(var(--bs-danger-rgb),.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:var(--bs-form-invalid-color)}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group>.form-control:not(:focus).is-invalid,.input-group>.form-floating:not(:focus-within).is-invalid,.input-group>.form-select:not(:focus).is-invalid,.was-validated .input-group>.form-control:not(:focus):invalid,.was-validated .input-group>.form-floating:not(:focus-within):invalid,.was-validated .input-group>.form-select:not(:focus):invalid{z-index:4}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-font-weight:400;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);color:var(--bs-btn-color);text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);background-color:var(--bs-btn-bg);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg);border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.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:var(--bs-btn-focus-box-shadow)}.btn-check:checked:focus-visible+.btn{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-color:#fff;--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-color:#fff;--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-color:#fff;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-color:#fff;--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-color:#fff;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info{--bs-btn-color:#000;--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-color:#000;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-color:#000;--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-color:#fff;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-color:#fff;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-color:#fff;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0d6efd;--bs-gradient:none}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-color:#fff;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#6c757d;--bs-gradient:none}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-color:#000;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#0dcaf0;--bs-gradient:none}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-color:#000;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#ffc107;--bs-gradient:none}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-font-weight:400;--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-group-lg>.btn,.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-group-sm>.btn,.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropdown-center,.dropend,.dropstart,.dropup,.dropup-center{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{--bs-dropdown-zindex:1000;--bs-dropdown-min-width:10rem;--bs-dropdown-padding-x:0;--bs-dropdown-padding-y:0.5rem;--bs-dropdown-spacer:0.125rem;--bs-dropdown-font-size:1rem;--bs-dropdown-color:var(--bs-body-color);--bs-dropdown-bg:var(--bs-body-bg);--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-border-radius:var(--bs-border-radius);--bs-dropdown-border-width:var(--bs-border-width);--bs-dropdown-inner-border-radius:calc(var(--bs-border-radius) - var(--bs-border-width));--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-divider-margin-y:0.5rem;--bs-dropdown-box-shadow:var(--bs-box-shadow);--bs-dropdown-link-color:var(--bs-body-color);--bs-dropdown-link-hover-color:var(--bs-body-color);--bs-dropdown-link-hover-bg:var(--bs-tertiary-bg);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:var(--bs-tertiary-color);--bs-dropdown-item-padding-x:1rem;--bs-dropdown-item-padding-y:0.25rem;--bs-dropdown-header-color:#6c757d;--bs-dropdown-header-padding-x:1rem;--bs-dropdown-header-padding-y:0.5rem;position:absolute;z-index:var(--bs-dropdown-zindex);display:none;min-width:var(--bs-dropdown-min-width);padding:var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);margin:0;font-size:var(--bs-dropdown-font-size);color:var(--bs-dropdown-color);text-align:left;list-style:none;background-color:var(--bs-dropdown-bg);background-clip:padding-box;border:var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);border-radius:var(--bs-dropdown-border-radius)}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:var(--bs-dropdown-spacer)}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:var(--bs-dropdown-spacer)}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:var(--bs-dropdown-spacer)}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:var(--bs-dropdown-spacer)}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:var(--bs-dropdown-divider-margin-y) 0;overflow:hidden;border-top:1px solid var(--bs-dropdown-divider-bg);opacity:1}.dropdown-item{display:block;width:100%;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);clear:both;font-weight:400;color:var(--bs-dropdown-link-color);text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0;border-radius:var(--bs-dropdown-item-border-radius,0)}.dropdown-item:focus,.dropdown-item:hover{color:var(--bs-dropdown-link-hover-color);background-color:var(--bs-dropdown-link-hover-bg)}.dropdown-item.active,.dropdown-item:active{color:var(--bs-dropdown-link-active-color);text-decoration:none;background-color:var(--bs-dropdown-link-active-bg)}.dropdown-item.disabled,.dropdown-item:disabled{color:var(--bs-dropdown-link-disabled-color);pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);margin-bottom:0;font-size:.875rem;color:var(--bs-dropdown-header-color);white-space:nowrap}.dropdown-item-text{display:block;padding:var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);color:var(--bs-dropdown-link-color)}.dropdown-menu-dark{--bs-dropdown-color:#dee2e6;--bs-dropdown-bg:#343a40;--bs-dropdown-border-color:var(--bs-border-color-translucent);--bs-dropdown-box-shadow: ;--bs-dropdown-link-color:#dee2e6;--bs-dropdown-link-hover-color:#fff;--bs-dropdown-divider-bg:var(--bs-border-color-translucent);--bs-dropdown-link-hover-bg:rgba(255, 255, 255, 0.15);--bs-dropdown-link-active-color:#fff;--bs-dropdown-link-active-bg:#0d6efd;--bs-dropdown-link-disabled-color:#adb5bd;--bs-dropdown-header-color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group{border-radius:var(--bs-border-radius)}.btn-group>.btn-group:not(:first-child),.btn-group>:not(.btn-check:first-child)+.btn{margin-left:calc(-1 * var(--bs-border-width))}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn.dropdown-toggle-split:first-child,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:calc(-1 * var(--bs-border-width))}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn:nth-child(n+3),.btn-group-vertical>:not(.btn-check)+.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled,.nav-link:disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-grow:1;flex-basis:0;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{--bs-navbar-padding-x:0;--bs-navbar-padding-y:0.5rem;--bs-navbar-color:rgba(var(--bs-emphasis-color-rgb), 0.65);--bs-navbar-hover-color:rgba(var(--bs-emphasis-color-rgb), 0.8);--bs-navbar-disabled-color:rgba(var(--bs-emphasis-color-rgb), 0.3);--bs-navbar-active-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-padding-y:0.3125rem;--bs-navbar-brand-margin-end:1rem;--bs-navbar-brand-font-size:1.25rem;--bs-navbar-brand-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-brand-hover-color:rgba(var(--bs-emphasis-color-rgb), 1);--bs-navbar-nav-link-padding-x:0.5rem;--bs-navbar-toggler-padding-y:0.25rem;--bs-navbar-toggler-padding-x:0.75rem;--bs-navbar-toggler-font-size:1.25rem;--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");--bs-navbar-toggler-border-color:rgba(var(--bs-emphasis-color-rgb), 0.15);--bs-navbar-toggler-border-radius:var(--bs-border-radius);--bs-navbar-toggler-focus-width:0.25rem;--bs-navbar-toggler-transition:box-shadow 0.15s ease-in-out;position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:var(--bs-navbar-brand-padding-y);padding-bottom:var(--bs-navbar-brand-padding-y);margin-right:var(--bs-navbar-brand-margin-end);font-size:var(--bs-navbar-brand-font-size);color:var(--bs-navbar-brand-color);text-decoration:none;white-space:nowrap}.navbar-brand:focus,.navbar-brand:hover{color:var(--bs-navbar-brand-hover-color)}.navbar-nav{--bs-nav-link-padding-x:0;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-navbar-color);--bs-nav-link-hover-color:var(--bs-navbar-hover-color);--bs-nav-link-disabled-color:var(--bs-navbar-disabled-color);display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link.active,.navbar-nav .nav-link.show{color:var(--bs-navbar-active-color)}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-navbar-color)}.navbar-text a,.navbar-text a:focus,.navbar-text a:hover{color:var(--bs-navbar-active-color)}.navbar-collapse{flex-grow:1;flex-basis:100%;align-items:center}.navbar-toggler{padding:var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);font-size:var(--bs-navbar-toggler-font-size);line-height:1;color:var(--bs-navbar-color);background-color:transparent;border:var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);border-radius:var(--bs-navbar-toggler-border-radius);transition:var(--bs-navbar-toggler-transition)}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 var(--bs-navbar-toggler-focus-width)}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-image:var(--bs-navbar-toggler-icon-bg);background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-sm .offcanvas .offcanvas-header{display:none}.navbar-expand-sm .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-md .offcanvas .offcanvas-header{display:none}.navbar-expand-md .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-lg .offcanvas .offcanvas-header{display:none}.navbar-expand-lg .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xl .offcanvas .offcanvas-header{display:none}.navbar-expand-xl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand-xxl .offcanvas .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:var(--bs-navbar-nav-link-padding-x);padding-left:var(--bs-navbar-nav-link-padding-x)}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas{position:static;z-index:auto;flex-grow:1;width:auto!important;height:auto!important;visibility:visible!important;background-color:transparent!important;border:0!important;transform:none!important;transition:none}.navbar-expand .offcanvas .offcanvas-header{display:none}.navbar-expand .offcanvas .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-dark,.navbar[data-bs-theme=dark]{--bs-navbar-color:rgba(255, 255, 255, 0.55);--bs-navbar-hover-color:rgba(255, 255, 255, 0.75);--bs-navbar-disabled-color:rgba(255, 255, 255, 0.25);--bs-navbar-active-color:#fff;--bs-navbar-brand-color:#fff;--bs-navbar-brand-hover-color:#fff;--bs-navbar-toggler-border-color:rgba(255, 255, 255, 0.1);--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}[data-bs-theme=dark] .navbar-toggler-icon{--bs-navbar-toggler-icon-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.card{--bs-card-spacer-y:1rem;--bs-card-spacer-x:1rem;--bs-card-title-spacer-y:0.5rem;--bs-card-title-color: ;--bs-card-subtitle-color: ;--bs-card-border-width:var(--bs-border-width);--bs-card-border-color:var(--bs-border-color-translucent);--bs-card-border-radius:var(--bs-border-radius);--bs-card-box-shadow: ;--bs-card-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-card-cap-padding-y:0.5rem;--bs-card-cap-padding-x:1rem;--bs-card-cap-bg:rgba(var(--bs-body-color-rgb), 0.03);--bs-card-cap-color: ;--bs-card-height: ;--bs-card-color: ;--bs-card-bg:var(--bs-body-bg);--bs-card-img-overlay-padding:1rem;--bs-card-group-margin:0.75rem;position:relative;display:flex;flex-direction:column;min-width:0;height:var(--bs-card-height);color:var(--bs-body-color);word-wrap:break-word;background-color:var(--bs-card-bg);background-clip:border-box;border:var(--bs-card-border-width) solid var(--bs-card-border-color);border-radius:var(--bs-card-border-radius)}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:var(--bs-card-spacer-y) var(--bs-card-spacer-x);color:var(--bs-card-color)}.card-title{margin-bottom:var(--bs-card-title-spacer-y);color:var(--bs-card-title-color)}.card-subtitle{margin-top:calc(-.5 * var(--bs-card-title-spacer-y));margin-bottom:0;color:var(--bs-card-subtitle-color)}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:var(--bs-card-spacer-x)}.card-header{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);margin-bottom:0;color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-bottom:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-header:first-child{border-radius:var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0}.card-footer{padding:var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);color:var(--bs-card-cap-color);background-color:var(--bs-card-cap-bg);border-top:var(--bs-card-border-width) solid var(--bs-card-border-color)}.card-footer:last-child{border-radius:0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)}.card-header-tabs{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-bottom:calc(-1 * var(--bs-card-cap-padding-y));margin-left:calc(-.5 * var(--bs-card-cap-padding-x));border-bottom:0}.card-header-tabs .nav-link.active{background-color:var(--bs-card-bg);border-bottom-color:var(--bs-card-bg)}.card-header-pills{margin-right:calc(-.5 * var(--bs-card-cap-padding-x));margin-left:calc(-.5 * var(--bs-card-cap-padding-x))}.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,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:var(--bs-card-inner-border-radius);border-top-right-radius:var(--bs-card-inner-border-radius)}.card-img,.card-img-bottom{border-bottom-right-radius:var(--bs-card-inner-border-radius);border-bottom-left-radius:var(--bs-card-inner-border-radius)}.card-group>.card{margin-bottom:var(--bs-card-group-margin)}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child)>.card-header,.card-group>.card:not(:last-child)>.card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child)>.card-footer,.card-group>.card:not(:last-child)>.card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child)>.card-header,.card-group>.card:not(:first-child)>.card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child)>.card-footer,.card-group>.card:not(:first-child)>.card-img-bottom{border-bottom-left-radius:0}}.accordion{--bs-accordion-color:var(--bs-body-color);--bs-accordion-bg:var(--bs-body-bg);--bs-accordion-transition:color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;--bs-accordion-border-color:var(--bs-border-color);--bs-accordion-border-width:var(--bs-border-width);--bs-accordion-border-radius:var(--bs-border-radius);--bs-accordion-inner-border-radius:calc(var(--bs-border-radius) - (var(--bs-border-width)));--bs-accordion-btn-padding-x:1.25rem;--bs-accordion-btn-padding-y:1rem;--bs-accordion-btn-color:var(--bs-body-color);--bs-accordion-btn-bg:var(--bs-accordion-bg);--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");--bs-accordion-btn-icon-width:1.25rem;--bs-accordion-btn-icon-transform:rotate(-180deg);--bs-accordion-btn-icon-transition:transform 0.2s ease-in-out;--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");--bs-accordion-btn-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-accordion-body-padding-x:1.25rem;--bs-accordion-body-padding-y:1rem;--bs-accordion-active-color:var(--bs-primary-text-emphasis);--bs-accordion-active-bg:var(--bs-primary-bg-subtle)}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);font-size:1rem;color:var(--bs-accordion-btn-color);text-align:left;background-color:var(--bs-accordion-btn-bg);border:0;border-radius:0;overflow-anchor:none;transition:var(--bs-accordion-transition)}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:var(--bs-accordion-active-color);background-color:var(--bs-accordion-active-bg);box-shadow:inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)}.accordion-button:not(.collapsed)::after{background-image:var(--bs-accordion-btn-active-icon);transform:var(--bs-accordion-btn-icon-transform)}.accordion-button::after{flex-shrink:0;width:var(--bs-accordion-btn-icon-width);height:var(--bs-accordion-btn-icon-width);margin-left:auto;content:"";background-image:var(--bs-accordion-btn-icon);background-repeat:no-repeat;background-size:var(--bs-accordion-btn-icon-width);transition:var(--bs-accordion-btn-icon-transition)}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;outline:0;box-shadow:var(--bs-accordion-btn-focus-box-shadow)}.accordion-header{margin-bottom:0}.accordion-item{color:var(--bs-accordion-color);background-color:var(--bs-accordion-bg);border:var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)}.accordion-item:first-of-type{border-top-left-radius:var(--bs-accordion-border-radius);border-top-right-radius:var(--bs-accordion-border-radius)}.accordion-item:first-of-type>.accordion-header .accordion-button{border-top-left-radius:var(--bs-accordion-inner-border-radius);border-top-right-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{border-bottom-right-radius:var(--bs-accordion-inner-border-radius);border-bottom-left-radius:var(--bs-accordion-inner-border-radius)}.accordion-item:last-of-type>.accordion-collapse{border-bottom-right-radius:var(--bs-accordion-border-radius);border-bottom-left-radius:var(--bs-accordion-border-radius)}.accordion-body{padding:var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)}.accordion-flush>.accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush>.accordion-item:first-child{border-top:0}.accordion-flush>.accordion-item:last-child{border-bottom:0}.accordion-flush>.accordion-item>.accordion-collapse,.accordion-flush>.accordion-item>.accordion-header .accordion-button,.accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed{border-radius:0}[data-bs-theme=dark] .accordion-button::after{--bs-accordion-btn-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");--bs-accordion-btn-active-icon:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")}.breadcrumb{--bs-breadcrumb-padding-x:0;--bs-breadcrumb-padding-y:0;--bs-breadcrumb-margin-bottom:1rem;--bs-breadcrumb-bg: ;--bs-breadcrumb-border-radius: ;--bs-breadcrumb-divider-color:var(--bs-secondary-color);--bs-breadcrumb-item-padding-x:0.5rem;--bs-breadcrumb-item-active-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding:var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);margin-bottom:var(--bs-breadcrumb-margin-bottom);font-size:var(--bs-breadcrumb-font-size);list-style:none;background-color:var(--bs-breadcrumb-bg);border-radius:var(--bs-breadcrumb-border-radius)}.breadcrumb-item+.breadcrumb-item{padding-left:var(--bs-breadcrumb-item-padding-x)}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:var(--bs-breadcrumb-item-padding-x);color:var(--bs-breadcrumb-divider-color);content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:var(--bs-breadcrumb-item-active-color)}.pagination{--bs-pagination-padding-x:0.75rem;--bs-pagination-padding-y:0.375rem;--bs-pagination-font-size:1rem;--bs-pagination-color:var(--bs-link-color);--bs-pagination-bg:var(--bs-body-bg);--bs-pagination-border-width:var(--bs-border-width);--bs-pagination-border-color:var(--bs-border-color);--bs-pagination-border-radius:var(--bs-border-radius);--bs-pagination-hover-color:var(--bs-link-hover-color);--bs-pagination-hover-bg:var(--bs-tertiary-bg);--bs-pagination-hover-border-color:var(--bs-border-color);--bs-pagination-focus-color:var(--bs-link-hover-color);--bs-pagination-focus-bg:var(--bs-secondary-bg);--bs-pagination-focus-box-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-pagination-active-color:#fff;--bs-pagination-active-bg:#0d6efd;--bs-pagination-active-border-color:#0d6efd;--bs-pagination-disabled-color:var(--bs-secondary-color);--bs-pagination-disabled-bg:var(--bs-secondary-bg);--bs-pagination-disabled-border-color:var(--bs-border-color);display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;padding:var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);font-size:var(--bs-pagination-font-size);color:var(--bs-pagination-color);text-decoration:none;background-color:var(--bs-pagination-bg);border:var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:var(--bs-pagination-hover-color);background-color:var(--bs-pagination-hover-bg);border-color:var(--bs-pagination-hover-border-color)}.page-link:focus{z-index:3;color:var(--bs-pagination-focus-color);background-color:var(--bs-pagination-focus-bg);outline:0;box-shadow:var(--bs-pagination-focus-box-shadow)}.active>.page-link,.page-link.active{z-index:3;color:var(--bs-pagination-active-color);background-color:var(--bs-pagination-active-bg);border-color:var(--bs-pagination-active-border-color)}.disabled>.page-link,.page-link.disabled{color:var(--bs-pagination-disabled-color);pointer-events:none;background-color:var(--bs-pagination-disabled-bg);border-color:var(--bs-pagination-disabled-border-color)}.page-item:not(:first-child) .page-link{margin-left:calc(-1 * var(--bs-border-width))}.page-item:first-child .page-link{border-top-left-radius:var(--bs-pagination-border-radius);border-bottom-left-radius:var(--bs-pagination-border-radius)}.page-item:last-child .page-link{border-top-right-radius:var(--bs-pagination-border-radius);border-bottom-right-radius:var(--bs-pagination-border-radius)}.pagination-lg{--bs-pagination-padding-x:1.5rem;--bs-pagination-padding-y:0.75rem;--bs-pagination-font-size:1.25rem;--bs-pagination-border-radius:var(--bs-border-radius-lg)}.pagination-sm{--bs-pagination-padding-x:0.5rem;--bs-pagination-padding-y:0.25rem;--bs-pagination-font-size:0.875rem;--bs-pagination-border-radius:var(--bs-border-radius-sm)}.badge{--bs-badge-padding-x:0.65em;--bs-badge-padding-y:0.35em;--bs-badge-font-size:0.75em;--bs-badge-font-weight:700;--bs-badge-color:#fff;--bs-badge-border-radius:var(--bs-border-radius);display:inline-block;padding:var(--bs-badge-padding-y) var(--bs-badge-padding-x);font-size:var(--bs-badge-font-size);font-weight:var(--bs-badge-font-weight);line-height:1;color:var(--bs-badge-color);text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:var(--bs-badge-border-radius)}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;position:relative;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-heading{color:inherit}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}@keyframes progress-bar-stripes{0%{background-position-x:var(--bs-progress-height)}}.progress,.progress-stacked{--bs-progress-height:1rem;--bs-progress-font-size:0.75rem;--bs-progress-bg:var(--bs-secondary-bg);--bs-progress-border-radius:var(--bs-border-radius);--bs-progress-box-shadow:var(--bs-box-shadow-inset);--bs-progress-bar-color:#fff;--bs-progress-bar-bg:#0d6efd;--bs-progress-bar-transition:width 0.6s ease;display:flex;height:var(--bs-progress-height);overflow:hidden;font-size:var(--bs-progress-font-size);background-color:var(--bs-progress-bg);border-radius:var(--bs-progress-border-radius)}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:var(--bs-progress-bar-color);text-align:center;white-space:nowrap;background-color:var(--bs-progress-bar-bg);transition:var(--bs-progress-bar-transition)}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:var(--bs-progress-height) var(--bs-progress-height)}.progress-stacked>.progress{overflow:visible}.progress-stacked>.progress>.progress-bar{width:100%}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{animation:none}}.list-group{--bs-list-group-color:var(--bs-body-color);--bs-list-group-bg:var(--bs-body-bg);--bs-list-group-border-color:var(--bs-border-color);--bs-list-group-border-width:var(--bs-border-width);--bs-list-group-border-radius:var(--bs-border-radius);--bs-list-group-item-padding-x:1rem;--bs-list-group-item-padding-y:0.5rem;--bs-list-group-action-color:var(--bs-secondary-color);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-tertiary-bg);--bs-list-group-action-active-color:var(--bs-body-color);--bs-list-group-action-active-bg:var(--bs-secondary-bg);--bs-list-group-disabled-color:var(--bs-secondary-color);--bs-list-group-disabled-bg:var(--bs-body-bg);--bs-list-group-active-color:#fff;--bs-list-group-active-bg:#0d6efd;--bs-list-group-active-border-color:#0d6efd;display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:var(--bs-list-group-border-radius)}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>.list-group-item::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item{position:relative;display:block;padding:var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);color:var(--bs-list-group-color);text-decoration:none;background-color:var(--bs-list-group-bg);border:var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:var(--bs-list-group-disabled-color);pointer-events:none;background-color:var(--bs-list-group-disabled-bg)}.list-group-item.active{z-index:2;color:var(--bs-list-group-active-color);background-color:var(--bs-list-group-active-bg);border-color:var(--bs-list-group-active-border-color)}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:calc(-1 * var(--bs-list-group-border-width));border-top-width:var(--bs-list-group-border-width)}.list-group-item-action{width:100%;color:var(--bs-list-group-action-color);text-align:inherit}.list-group-item-action:not(.active):focus,.list-group-item-action:not(.active):hover{z-index:1;color:var(--bs-list-group-action-hover-color);text-decoration:none;background-color:var(--bs-list-group-action-hover-bg)}.list-group-item-action:not(.active):active{color:var(--bs-list-group-action-active-color);background-color:var(--bs-list-group-action-active-bg)}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child){border-bottom-left-radius:var(--bs-list-group-border-radius);border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child){border-top-right-radius:var(--bs-list-group-border-radius);border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:var(--bs-list-group-border-width);border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:calc(-1 * var(--bs-list-group-border-width));border-left-width:var(--bs-list-group-border-width)}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 var(--bs-list-group-border-width)}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{--bs-list-group-color:var(--bs-primary-text-emphasis);--bs-list-group-bg:var(--bs-primary-bg-subtle);--bs-list-group-border-color:var(--bs-primary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-primary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-primary-border-subtle);--bs-list-group-active-color:var(--bs-primary-bg-subtle);--bs-list-group-active-bg:var(--bs-primary-text-emphasis);--bs-list-group-active-border-color:var(--bs-primary-text-emphasis)}.list-group-item-secondary{--bs-list-group-color:var(--bs-secondary-text-emphasis);--bs-list-group-bg:var(--bs-secondary-bg-subtle);--bs-list-group-border-color:var(--bs-secondary-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-secondary-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-secondary-border-subtle);--bs-list-group-active-color:var(--bs-secondary-bg-subtle);--bs-list-group-active-bg:var(--bs-secondary-text-emphasis);--bs-list-group-active-border-color:var(--bs-secondary-text-emphasis)}.list-group-item-success{--bs-list-group-color:var(--bs-success-text-emphasis);--bs-list-group-bg:var(--bs-success-bg-subtle);--bs-list-group-border-color:var(--bs-success-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-success-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-success-border-subtle);--bs-list-group-active-color:var(--bs-success-bg-subtle);--bs-list-group-active-bg:var(--bs-success-text-emphasis);--bs-list-group-active-border-color:var(--bs-success-text-emphasis)}.list-group-item-info{--bs-list-group-color:var(--bs-info-text-emphasis);--bs-list-group-bg:var(--bs-info-bg-subtle);--bs-list-group-border-color:var(--bs-info-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-info-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-info-border-subtle);--bs-list-group-active-color:var(--bs-info-bg-subtle);--bs-list-group-active-bg:var(--bs-info-text-emphasis);--bs-list-group-active-border-color:var(--bs-info-text-emphasis)}.list-group-item-warning{--bs-list-group-color:var(--bs-warning-text-emphasis);--bs-list-group-bg:var(--bs-warning-bg-subtle);--bs-list-group-border-color:var(--bs-warning-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-warning-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-warning-border-subtle);--bs-list-group-active-color:var(--bs-warning-bg-subtle);--bs-list-group-active-bg:var(--bs-warning-text-emphasis);--bs-list-group-active-border-color:var(--bs-warning-text-emphasis)}.list-group-item-danger{--bs-list-group-color:var(--bs-danger-text-emphasis);--bs-list-group-bg:var(--bs-danger-bg-subtle);--bs-list-group-border-color:var(--bs-danger-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-danger-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-danger-border-subtle);--bs-list-group-active-color:var(--bs-danger-bg-subtle);--bs-list-group-active-bg:var(--bs-danger-text-emphasis);--bs-list-group-active-border-color:var(--bs-danger-text-emphasis)}.list-group-item-light{--bs-list-group-color:var(--bs-light-text-emphasis);--bs-list-group-bg:var(--bs-light-bg-subtle);--bs-list-group-border-color:var(--bs-light-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-light-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-light-border-subtle);--bs-list-group-active-color:var(--bs-light-bg-subtle);--bs-list-group-active-bg:var(--bs-light-text-emphasis);--bs-list-group-active-border-color:var(--bs-light-text-emphasis)}.list-group-item-dark{--bs-list-group-color:var(--bs-dark-text-emphasis);--bs-list-group-bg:var(--bs-dark-bg-subtle);--bs-list-group-border-color:var(--bs-dark-border-subtle);--bs-list-group-action-hover-color:var(--bs-emphasis-color);--bs-list-group-action-hover-bg:var(--bs-dark-border-subtle);--bs-list-group-action-active-color:var(--bs-emphasis-color);--bs-list-group-action-active-bg:var(--bs-dark-border-subtle);--bs-list-group-active-color:var(--bs-dark-bg-subtle);--bs-list-group-active-bg:var(--bs-dark-text-emphasis);--bs-list-group-active-border-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:var(--bs-btn-close-color);background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;filter:var(--bs-btn-close-filter);border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{color:var(--bs-btn-close-color);text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}.btn-close-white{--bs-btn-close-filter:invert(1) grayscale(100%) brightness(200%)}:root,[data-bs-theme=light]{--bs-btn-close-filter: }[data-bs-theme=dark]{--bs-btn-close-filter:invert(1) grayscale(100%) brightness(200%)}.toast{--bs-toast-zindex:1090;--bs-toast-padding-x:0.75rem;--bs-toast-padding-y:0.5rem;--bs-toast-spacing:1.5rem;--bs-toast-max-width:350px;--bs-toast-font-size:0.875rem;--bs-toast-color: ;--bs-toast-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-border-width:var(--bs-border-width);--bs-toast-border-color:var(--bs-border-color-translucent);--bs-toast-border-radius:var(--bs-border-radius);--bs-toast-box-shadow:var(--bs-box-shadow);--bs-toast-header-color:var(--bs-secondary-color);--bs-toast-header-bg:rgba(var(--bs-body-bg-rgb), 0.85);--bs-toast-header-border-color:var(--bs-border-color-translucent);width:var(--bs-toast-max-width);max-width:100%;font-size:var(--bs-toast-font-size);color:var(--bs-toast-color);pointer-events:auto;background-color:var(--bs-toast-bg);background-clip:padding-box;border:var(--bs-toast-border-width) solid var(--bs-toast-border-color);box-shadow:var(--bs-toast-box-shadow);border-radius:var(--bs-toast-border-radius)}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{--bs-toast-zindex:1090;position:absolute;z-index:var(--bs-toast-zindex);width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:var(--bs-toast-spacing)}.toast-header{display:flex;align-items:center;padding:var(--bs-toast-padding-y) var(--bs-toast-padding-x);color:var(--bs-toast-header-color);background-color:var(--bs-toast-header-bg);background-clip:padding-box;border-bottom:var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);border-top-left-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));border-top-right-radius:calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))}.toast-header .btn-close{margin-right:calc(-.5 * var(--bs-toast-padding-x));margin-left:var(--bs-toast-padding-x)}.toast-body{padding:var(--bs-toast-padding-x);word-wrap:break-word}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color:var(--bs-body-color);--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:var(--bs-box-shadow-sm);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transform:translate(0,-50px);transition:transform .3s ease-out}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0.5;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin-top:calc(-.5 * var(--bs-modal-header-padding-y));margin-right:calc(-.5 * var(--bs-modal-header-padding-x));margin-bottom:calc(-.5 * var(--bs-modal-header-padding-y));margin-left:auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:var(--bs-box-shadow)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@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-footer,.modal-fullscreen-sm-down .modal-header{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-footer,.modal-fullscreen-md-down .modal-header{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-footer,.modal-fullscreen-lg-down .modal-header{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-footer,.modal-fullscreen-xl-down .modal-header{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-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}.tooltip{--bs-tooltip-zindex:1080;--bs-tooltip-max-width:200px;--bs-tooltip-padding-x:0.5rem;--bs-tooltip-padding-y:0.25rem;--bs-tooltip-margin: ;--bs-tooltip-font-size:0.875rem;--bs-tooltip-color:var(--bs-body-bg);--bs-tooltip-bg:var(--bs-emphasis-color);--bs-tooltip-border-radius:var(--bs-border-radius);--bs-tooltip-opacity:0.9;--bs-tooltip-arrow-width:0.8rem;--bs-tooltip-arrow-height:0.4rem;z-index:var(--bs-tooltip-zindex);display:block;margin:var(--bs-tooltip-margin);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-tooltip-font-size);word-wrap:break-word;opacity:0}.tooltip.show{opacity:var(--bs-tooltip-opacity)}.tooltip .tooltip-arrow{display:block;width:var(--bs-tooltip-arrow-width);height:var(--bs-tooltip-arrow-height)}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-top-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;border-right-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:calc(-1 * var(--bs-tooltip-arrow-height))}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-bottom-color:var(--bs-tooltip-bg)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:calc(-1 * var(--bs-tooltip-arrow-height));width:var(--bs-tooltip-arrow-height);height:var(--bs-tooltip-arrow-width)}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);border-left-color:var(--bs-tooltip-bg)}.tooltip-inner{max-width:var(--bs-tooltip-max-width);padding:var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);color:var(--bs-tooltip-color);text-align:center;background-color:var(--bs-tooltip-bg);border-radius:var(--bs-tooltip-border-radius)}.popover{--bs-popover-zindex:1070;--bs-popover-max-width:276px;--bs-popover-font-size:0.875rem;--bs-popover-bg:var(--bs-body-bg);--bs-popover-border-width:var(--bs-border-width);--bs-popover-border-color:var(--bs-border-color-translucent);--bs-popover-border-radius:var(--bs-border-radius-lg);--bs-popover-inner-border-radius:calc(var(--bs-border-radius-lg) - var(--bs-border-width));--bs-popover-box-shadow:var(--bs-box-shadow);--bs-popover-header-padding-x:1rem;--bs-popover-header-padding-y:0.5rem;--bs-popover-header-font-size:1rem;--bs-popover-header-color:inherit;--bs-popover-header-bg:var(--bs-secondary-bg);--bs-popover-body-padding-x:1rem;--bs-popover-body-padding-y:1rem;--bs-popover-body-color:var(--bs-body-color);--bs-popover-arrow-width:1rem;--bs-popover-arrow-height:0.5rem;--bs-popover-arrow-border:var(--bs-popover-border-color);z-index:var(--bs-popover-zindex);display:block;max-width:var(--bs-popover-max-width);font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:var(--bs-popover-font-size);word-wrap:break-word;background-color:var(--bs-popover-bg);background-clip:padding-box;border:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-radius:var(--bs-popover-border-radius)}.popover .popover-arrow{display:block;width:var(--bs-popover-arrow-width);height:var(--bs-popover-arrow-height)}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;border-width:0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::after,.bs-popover-top>.popover-arrow::before{border-width:var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-top-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:var(--bs-popover-border-width);border-top-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::after,.bs-popover-end>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-right-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:var(--bs-popover-border-width);border-right-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::before{border-width:0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-bottom-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:var(--bs-popover-border-width);border-bottom-color:var(--bs-popover-bg)}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:var(--bs-popover-arrow-width);margin-left:calc(-.5 * var(--bs-popover-arrow-width));content:"";border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-header-bg)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));width:var(--bs-popover-arrow-height);height:var(--bs-popover-arrow-width)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::after,.bs-popover-start>.popover-arrow::before{border-width:calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-left-color:var(--bs-popover-arrow-border)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:var(--bs-popover-border-width);border-left-color:var(--bs-popover-bg)}.popover-header{padding:var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);margin-bottom:0;font-size:var(--bs-popover-header-font-size);color:var(--bs-popover-header-color);background-color:var(--bs-popover-header-bg);border-bottom:var(--bs-popover-border-width) solid var(--bs-popover-border-color);border-top-left-radius:var(--bs-popover-inner-border-radius);border-top-right-radius:var(--bs-popover-inner-border-radius)}.popover-header:empty{display:none}.popover-body{padding:var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);color:var(--bs-popover-body-color)}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;filter:var(--bs-carousel-control-icon-filter);border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:var(--bs-carousel-indicator-active-bg);background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:var(--bs-carousel-caption-color);text-align:center}.carousel-dark{--bs-carousel-indicator-active-bg:#000;--bs-carousel-caption-color:#000;--bs-carousel-control-icon-filter:invert(1) grayscale(100)}:root,[data-bs-theme=light]{--bs-carousel-indicator-active-bg:#fff;--bs-carousel-caption-color:#fff;--bs-carousel-control-icon-filter: }[data-bs-theme=dark]{--bs-carousel-indicator-active-bg:#000;--bs-carousel-caption-color:#000;--bs-carousel-control-icon-filter:invert(1) grayscale(100)}.spinner-border,.spinner-grow{display:inline-block;flex-shrink:0;width:var(--bs-spinner-width);height:var(--bs-spinner-height);vertical-align:var(--bs-spinner-vertical-align);border-radius:50%;animation:var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-border-width:0.25em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-border;border:var(--bs-spinner-border-width) solid currentcolor;border-right-color:transparent}.spinner-border-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem;--bs-spinner-border-width:0.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{--bs-spinner-width:2rem;--bs-spinner-height:2rem;--bs-spinner-vertical-align:-0.125em;--bs-spinner-animation-speed:0.75s;--bs-spinner-animation-name:spinner-grow;background-color:currentcolor;opacity:0}.spinner-grow-sm{--bs-spinner-width:1rem;--bs-spinner-height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{--bs-spinner-animation-speed:1.5s}}.offcanvas,.offcanvas-lg,.offcanvas-md,.offcanvas-sm,.offcanvas-xl,.offcanvas-xxl{--bs-offcanvas-zindex:1045;--bs-offcanvas-width:400px;--bs-offcanvas-height:30vh;--bs-offcanvas-padding-x:1rem;--bs-offcanvas-padding-y:1rem;--bs-offcanvas-color:var(--bs-body-color);--bs-offcanvas-bg:var(--bs-body-bg);--bs-offcanvas-border-width:var(--bs-border-width);--bs-offcanvas-border-color:var(--bs-border-color-translucent);--bs-offcanvas-box-shadow:var(--bs-box-shadow-sm);--bs-offcanvas-transition:transform 0.3s ease-in-out;--bs-offcanvas-title-line-height:1.5}@media (max-width:575.98px){.offcanvas-sm{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:575.98px) and (prefers-reduced-motion:reduce){.offcanvas-sm{transition:none}}@media (max-width:575.98px){.offcanvas-sm.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-sm.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-sm.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-sm.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-sm.show:not(.hiding),.offcanvas-sm.showing{transform:none}.offcanvas-sm.hiding,.offcanvas-sm.show,.offcanvas-sm.showing{visibility:visible}}@media (min-width:576px){.offcanvas-sm{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-sm .offcanvas-header{display:none}.offcanvas-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:767.98px){.offcanvas-md{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:767.98px) and (prefers-reduced-motion:reduce){.offcanvas-md{transition:none}}@media (max-width:767.98px){.offcanvas-md.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-md.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-md.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-md.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-md.show:not(.hiding),.offcanvas-md.showing{transform:none}.offcanvas-md.hiding,.offcanvas-md.show,.offcanvas-md.showing{visibility:visible}}@media (min-width:768px){.offcanvas-md{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-md .offcanvas-header{display:none}.offcanvas-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:991.98px){.offcanvas-lg{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:991.98px) and (prefers-reduced-motion:reduce){.offcanvas-lg{transition:none}}@media (max-width:991.98px){.offcanvas-lg.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-lg.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-lg.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-lg.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-lg.show:not(.hiding),.offcanvas-lg.showing{transform:none}.offcanvas-lg.hiding,.offcanvas-lg.show,.offcanvas-lg.showing{visibility:visible}}@media (min-width:992px){.offcanvas-lg{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-lg .offcanvas-header{display:none}.offcanvas-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1199.98px){.offcanvas-xl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1199.98px) and (prefers-reduced-motion:reduce){.offcanvas-xl{transition:none}}@media (max-width:1199.98px){.offcanvas-xl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xl.show:not(.hiding),.offcanvas-xl.showing{transform:none}.offcanvas-xl.hiding,.offcanvas-xl.show,.offcanvas-xl.showing{visibility:visible}}@media (min-width:1200px){.offcanvas-xl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xl .offcanvas-header{display:none}.offcanvas-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}@media (max-width:1399.98px){.offcanvas-xxl{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}}@media (max-width:1399.98px) and (prefers-reduced-motion:reduce){.offcanvas-xxl{transition:none}}@media (max-width:1399.98px){.offcanvas-xxl.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas-xxl.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas-xxl.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas-xxl.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas-xxl.show:not(.hiding),.offcanvas-xxl.showing{transform:none}.offcanvas-xxl.hiding,.offcanvas-xxl.show,.offcanvas-xxl.showing{visibility:visible}}@media (min-width:1400px){.offcanvas-xxl{--bs-offcanvas-height:auto;--bs-offcanvas-border-width:0;background-color:transparent!important}.offcanvas-xxl .offcanvas-header{display:none}.offcanvas-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible;background-color:transparent!important}}.offcanvas{position:fixed;bottom:0;z-index:var(--bs-offcanvas-zindex);display:flex;flex-direction:column;max-width:100%;color:var(--bs-offcanvas-color);visibility:hidden;background-color:var(--bs-offcanvas-bg);background-clip:padding-box;outline:0;transition:var(--bs-offcanvas-transition)}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas.offcanvas-start{top:0;left:0;width:var(--bs-offcanvas-width);border-right:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(-100%)}.offcanvas.offcanvas-end{top:0;right:0;width:var(--bs-offcanvas-width);border-left:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateX(100%)}.offcanvas.offcanvas-top{top:0;right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-bottom:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(-100%)}.offcanvas.offcanvas-bottom{right:0;left:0;height:var(--bs-offcanvas-height);max-height:100%;border-top:var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);transform:translateY(100%)}.offcanvas.show:not(.hiding),.offcanvas.showing{transform:none}.offcanvas.hiding,.offcanvas.show,.offcanvas.showing{visibility:visible}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)}.offcanvas-header .btn-close{padding:calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);margin-top:calc(-.5 * var(--bs-offcanvas-padding-y));margin-right:calc(-.5 * var(--bs-offcanvas-padding-x));margin-bottom:calc(-.5 * var(--bs-offcanvas-padding-y));margin-left:auto}.offcanvas-title{margin-bottom:0;line-height:var(--bs-offcanvas-title-line-height)}.offcanvas-body{flex-grow:1;padding:var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);overflow-y:auto}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentcolor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{animation:placeholder-glow 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:#fff!important;background-color:RGBA(var(--bs-primary-rgb),var(--bs-bg-opacity,1))!important}.text-bg-secondary{color:#fff!important;background-color:RGBA(var(--bs-secondary-rgb),var(--bs-bg-opacity,1))!important}.text-bg-success{color:#fff!important;background-color:RGBA(var(--bs-success-rgb),var(--bs-bg-opacity,1))!important}.text-bg-info{color:#000!important;background-color:RGBA(var(--bs-info-rgb),var(--bs-bg-opacity,1))!important}.text-bg-warning{color:#000!important;background-color:RGBA(var(--bs-warning-rgb),var(--bs-bg-opacity,1))!important}.text-bg-danger{color:#fff!important;background-color:RGBA(var(--bs-danger-rgb),var(--bs-bg-opacity,1))!important}.text-bg-light{color:#000!important;background-color:RGBA(var(--bs-light-rgb),var(--bs-bg-opacity,1))!important}.text-bg-dark{color:#fff!important;background-color:RGBA(var(--bs-dark-rgb),var(--bs-bg-opacity,1))!important}.link-primary{color:RGBA(var(--bs-primary-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-primary-rgb),var(--bs-link-underline-opacity,1))!important}.link-primary:focus,.link-primary:hover{color:RGBA(10,88,202,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(10,88,202,var(--bs-link-underline-opacity,1))!important}.link-secondary{color:RGBA(var(--bs-secondary-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-secondary-rgb),var(--bs-link-underline-opacity,1))!important}.link-secondary:focus,.link-secondary:hover{color:RGBA(86,94,100,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(86,94,100,var(--bs-link-underline-opacity,1))!important}.link-success{color:RGBA(var(--bs-success-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-success-rgb),var(--bs-link-underline-opacity,1))!important}.link-success:focus,.link-success:hover{color:RGBA(20,108,67,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(20,108,67,var(--bs-link-underline-opacity,1))!important}.link-info{color:RGBA(var(--bs-info-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-info-rgb),var(--bs-link-underline-opacity,1))!important}.link-info:focus,.link-info:hover{color:RGBA(61,213,243,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(61,213,243,var(--bs-link-underline-opacity,1))!important}.link-warning{color:RGBA(var(--bs-warning-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-warning-rgb),var(--bs-link-underline-opacity,1))!important}.link-warning:focus,.link-warning:hover{color:RGBA(255,205,57,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(255,205,57,var(--bs-link-underline-opacity,1))!important}.link-danger{color:RGBA(var(--bs-danger-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-danger-rgb),var(--bs-link-underline-opacity,1))!important}.link-danger:focus,.link-danger:hover{color:RGBA(176,42,55,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(176,42,55,var(--bs-link-underline-opacity,1))!important}.link-light{color:RGBA(var(--bs-light-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-light-rgb),var(--bs-link-underline-opacity,1))!important}.link-light:focus,.link-light:hover{color:RGBA(249,250,251,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(249,250,251,var(--bs-link-underline-opacity,1))!important}.link-dark{color:RGBA(var(--bs-dark-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-dark-rgb),var(--bs-link-underline-opacity,1))!important}.link-dark:focus,.link-dark:hover{color:RGBA(26,30,33,var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(26,30,33,var(--bs-link-underline-opacity,1))!important}.link-body-emphasis{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,1))!important;-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-body-emphasis:focus,.link-body-emphasis:hover{color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-opacity,.75))!important;-webkit-text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))!important;text-decoration-color:RGBA(var(--bs-emphasis-color-rgb),var(--bs-link-underline-opacity,0.75))!important}.focus-ring:focus{outline:0;box-shadow:var(--bs-focus-ring-x,0) var(--bs-focus-ring-y,0) var(--bs-focus-ring-blur,0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)}.icon-link{display:inline-flex;gap:.375rem;align-items:center;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,0.5));text-underline-offset:0.25em;-webkit-backface-visibility:hidden;backface-visibility:hidden}.icon-link>.bi{flex-shrink:0;width:1em;height:1em;fill:currentcolor;transition:.2s ease-in-out transform}@media (prefers-reduced-motion:reduce){.icon-link>.bi{transition:none}}.icon-link-hover:focus-visible>.bi,.icon-link-hover:hover>.bi{transform:var(--bs-icon-link-transform,translate3d(.25em,0,0))}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-sm-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-md-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-lg-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}.sticky-xxl-bottom{position:-webkit-sticky;position:sticky;bottom:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),.visually-hidden:not(caption){position:absolute!important}.visually-hidden *,.visually-hidden-focusable:not(:focus):not(:focus-within) *{overflow:hidden!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:var(--bs-border-width);min-height:1em;background-color:currentcolor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.object-fit-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-none{-o-object-fit:none!important;object-fit:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.overflow-x-auto{overflow-x:auto!important}.overflow-x-hidden{overflow-x:hidden!important}.overflow-x-visible{overflow-x:visible!important}.overflow-x-scroll{overflow-x:scroll!important}.overflow-y-auto{overflow-y:auto!important}.overflow-y-hidden{overflow-y:hidden!important}.overflow-y-visible{overflow-y:visible!important}.overflow-y-scroll{overflow-y:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:var(--bs-box-shadow)!important}.shadow-sm{box-shadow:var(--bs-box-shadow-sm)!important}.shadow-lg{box-shadow:var(--bs-box-shadow-lg)!important}.shadow-none{box-shadow:none!important}.focus-ring-primary{--bs-focus-ring-color:rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-secondary{--bs-focus-ring-color:rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))}.focus-ring-success{--bs-focus-ring-color:rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))}.focus-ring-info{--bs-focus-ring-color:rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))}.focus-ring-warning{--bs-focus-ring-color:rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))}.focus-ring-danger{--bs-focus-ring-color:rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))}.focus-ring-light{--bs-focus-ring-color:rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))}.focus-ring-dark{--bs-focus-ring-color:rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-0{border:0!important}.border-top{border-top:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-top-0{border-top:0!important}.border-end{border-right:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:var(--bs-border-width) var(--bs-border-style) var(--bs-border-color)!important}.border-start-0{border-left:0!important}.border-primary{--bs-border-opacity:1;border-color:rgba(var(--bs-primary-rgb),var(--bs-border-opacity))!important}.border-secondary{--bs-border-opacity:1;border-color:rgba(var(--bs-secondary-rgb),var(--bs-border-opacity))!important}.border-success{--bs-border-opacity:1;border-color:rgba(var(--bs-success-rgb),var(--bs-border-opacity))!important}.border-info{--bs-border-opacity:1;border-color:rgba(var(--bs-info-rgb),var(--bs-border-opacity))!important}.border-warning{--bs-border-opacity:1;border-color:rgba(var(--bs-warning-rgb),var(--bs-border-opacity))!important}.border-danger{--bs-border-opacity:1;border-color:rgba(var(--bs-danger-rgb),var(--bs-border-opacity))!important}.border-light{--bs-border-opacity:1;border-color:rgba(var(--bs-light-rgb),var(--bs-border-opacity))!important}.border-dark{--bs-border-opacity:1;border-color:rgba(var(--bs-dark-rgb),var(--bs-border-opacity))!important}.border-black{--bs-border-opacity:1;border-color:rgba(var(--bs-black-rgb),var(--bs-border-opacity))!important}.border-white{--bs-border-opacity:1;border-color:rgba(var(--bs-white-rgb),var(--bs-border-opacity))!important}.border-primary-subtle{border-color:var(--bs-primary-border-subtle)!important}.border-secondary-subtle{border-color:var(--bs-secondary-border-subtle)!important}.border-success-subtle{border-color:var(--bs-success-border-subtle)!important}.border-info-subtle{border-color:var(--bs-info-border-subtle)!important}.border-warning-subtle{border-color:var(--bs-warning-border-subtle)!important}.border-danger-subtle{border-color:var(--bs-danger-border-subtle)!important}.border-light-subtle{border-color:var(--bs-light-border-subtle)!important}.border-dark-subtle{border-color:var(--bs-dark-border-subtle)!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.border-opacity-10{--bs-border-opacity:0.1}.border-opacity-25{--bs-border-opacity:0.25}.border-opacity-50{--bs-border-opacity:0.5}.border-opacity-75{--bs-border-opacity:0.75}.border-opacity-100{--bs-border-opacity:1}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-lighter{font-weight:lighter!important}.fw-light{font-weight:300!important}.fw-normal{font-weight:400!important}.fw-medium{font-weight:500!important}.fw-semibold{font-weight:600!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-body-secondary{--bs-text-opacity:1;color:var(--bs-secondary-color)!important}.text-body-tertiary{--bs-text-opacity:1;color:var(--bs-tertiary-color)!important}.text-body-emphasis{--bs-text-opacity:1;color:var(--bs-emphasis-color)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.text-primary-emphasis{color:var(--bs-primary-text-emphasis)!important}.text-secondary-emphasis{color:var(--bs-secondary-text-emphasis)!important}.text-success-emphasis{color:var(--bs-success-text-emphasis)!important}.text-info-emphasis{color:var(--bs-info-text-emphasis)!important}.text-warning-emphasis{color:var(--bs-warning-text-emphasis)!important}.text-danger-emphasis{color:var(--bs-danger-text-emphasis)!important}.text-light-emphasis{color:var(--bs-light-text-emphasis)!important}.text-dark-emphasis{color:var(--bs-dark-text-emphasis)!important}.link-opacity-10{--bs-link-opacity:0.1}.link-opacity-10-hover:hover{--bs-link-opacity:0.1}.link-opacity-25{--bs-link-opacity:0.25}.link-opacity-25-hover:hover{--bs-link-opacity:0.25}.link-opacity-50{--bs-link-opacity:0.5}.link-opacity-50-hover:hover{--bs-link-opacity:0.5}.link-opacity-75{--bs-link-opacity:0.75}.link-opacity-75-hover:hover{--bs-link-opacity:0.75}.link-opacity-100{--bs-link-opacity:1}.link-opacity-100-hover:hover{--bs-link-opacity:1}.link-offset-1{text-underline-offset:0.125em!important}.link-offset-1-hover:hover{text-underline-offset:0.125em!important}.link-offset-2{text-underline-offset:0.25em!important}.link-offset-2-hover:hover{text-underline-offset:0.25em!important}.link-offset-3{text-underline-offset:0.375em!important}.link-offset-3-hover:hover{text-underline-offset:0.375em!important}.link-underline-primary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-primary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-secondary{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-secondary-rgb),var(--bs-link-underline-opacity))!important}.link-underline-success{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-success-rgb),var(--bs-link-underline-opacity))!important}.link-underline-info{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-info-rgb),var(--bs-link-underline-opacity))!important}.link-underline-warning{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-warning-rgb),var(--bs-link-underline-opacity))!important}.link-underline-danger{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-danger-rgb),var(--bs-link-underline-opacity))!important}.link-underline-light{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-light-rgb),var(--bs-link-underline-opacity))!important}.link-underline-dark{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important;text-decoration-color:rgba(var(--bs-dark-rgb),var(--bs-link-underline-opacity))!important}.link-underline{--bs-link-underline-opacity:1;-webkit-text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important;text-decoration-color:rgba(var(--bs-link-color-rgb),var(--bs-link-underline-opacity,1))!important}.link-underline-opacity-0{--bs-link-underline-opacity:0}.link-underline-opacity-0-hover:hover{--bs-link-underline-opacity:0}.link-underline-opacity-10{--bs-link-underline-opacity:0.1}.link-underline-opacity-10-hover:hover{--bs-link-underline-opacity:0.1}.link-underline-opacity-25{--bs-link-underline-opacity:0.25}.link-underline-opacity-25-hover:hover{--bs-link-underline-opacity:0.25}.link-underline-opacity-50{--bs-link-underline-opacity:0.5}.link-underline-opacity-50-hover:hover{--bs-link-underline-opacity:0.5}.link-underline-opacity-75{--bs-link-underline-opacity:0.75}.link-underline-opacity-75-hover:hover{--bs-link-underline-opacity:0.75}.link-underline-opacity-100{--bs-link-underline-opacity:1}.link-underline-opacity-100-hover:hover{--bs-link-underline-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-body-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-bg-rgb),var(--bs-bg-opacity))!important}.bg-body-tertiary{--bs-bg-opacity:1;background-color:rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity))!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-primary-subtle{background-color:var(--bs-primary-bg-subtle)!important}.bg-secondary-subtle{background-color:var(--bs-secondary-bg-subtle)!important}.bg-success-subtle{background-color:var(--bs-success-bg-subtle)!important}.bg-info-subtle{background-color:var(--bs-info-bg-subtle)!important}.bg-warning-subtle{background-color:var(--bs-warning-bg-subtle)!important}.bg-danger-subtle{background-color:var(--bs-danger-bg-subtle)!important}.bg-light-subtle{background-color:var(--bs-light-bg-subtle)!important}.bg-dark-subtle{background-color:var(--bs-dark-bg-subtle)!important}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:var(--bs-border-radius)!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:var(--bs-border-radius-sm)!important}.rounded-2{border-radius:var(--bs-border-radius)!important}.rounded-3{border-radius:var(--bs-border-radius-lg)!important}.rounded-4{border-radius:var(--bs-border-radius-xl)!important}.rounded-5{border-radius:var(--bs-border-radius-xxl)!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:var(--bs-border-radius-pill)!important}.rounded-top{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-0{border-top-left-radius:0!important;border-top-right-radius:0!important}.rounded-top-1{border-top-left-radius:var(--bs-border-radius-sm)!important;border-top-right-radius:var(--bs-border-radius-sm)!important}.rounded-top-2{border-top-left-radius:var(--bs-border-radius)!important;border-top-right-radius:var(--bs-border-radius)!important}.rounded-top-3{border-top-left-radius:var(--bs-border-radius-lg)!important;border-top-right-radius:var(--bs-border-radius-lg)!important}.rounded-top-4{border-top-left-radius:var(--bs-border-radius-xl)!important;border-top-right-radius:var(--bs-border-radius-xl)!important}.rounded-top-5{border-top-left-radius:var(--bs-border-radius-xxl)!important;border-top-right-radius:var(--bs-border-radius-xxl)!important}.rounded-top-circle{border-top-left-radius:50%!important;border-top-right-radius:50%!important}.rounded-top-pill{border-top-left-radius:var(--bs-border-radius-pill)!important;border-top-right-radius:var(--bs-border-radius-pill)!important}.rounded-end{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-0{border-top-right-radius:0!important;border-bottom-right-radius:0!important}.rounded-end-1{border-top-right-radius:var(--bs-border-radius-sm)!important;border-bottom-right-radius:var(--bs-border-radius-sm)!important}.rounded-end-2{border-top-right-radius:var(--bs-border-radius)!important;border-bottom-right-radius:var(--bs-border-radius)!important}.rounded-end-3{border-top-right-radius:var(--bs-border-radius-lg)!important;border-bottom-right-radius:var(--bs-border-radius-lg)!important}.rounded-end-4{border-top-right-radius:var(--bs-border-radius-xl)!important;border-bottom-right-radius:var(--bs-border-radius-xl)!important}.rounded-end-5{border-top-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-right-radius:var(--bs-border-radius-xxl)!important}.rounded-end-circle{border-top-right-radius:50%!important;border-bottom-right-radius:50%!important}.rounded-end-pill{border-top-right-radius:var(--bs-border-radius-pill)!important;border-bottom-right-radius:var(--bs-border-radius-pill)!important}.rounded-bottom{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-0{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.rounded-bottom-1{border-bottom-right-radius:var(--bs-border-radius-sm)!important;border-bottom-left-radius:var(--bs-border-radius-sm)!important}.rounded-bottom-2{border-bottom-right-radius:var(--bs-border-radius)!important;border-bottom-left-radius:var(--bs-border-radius)!important}.rounded-bottom-3{border-bottom-right-radius:var(--bs-border-radius-lg)!important;border-bottom-left-radius:var(--bs-border-radius-lg)!important}.rounded-bottom-4{border-bottom-right-radius:var(--bs-border-radius-xl)!important;border-bottom-left-radius:var(--bs-border-radius-xl)!important}.rounded-bottom-5{border-bottom-right-radius:var(--bs-border-radius-xxl)!important;border-bottom-left-radius:var(--bs-border-radius-xxl)!important}.rounded-bottom-circle{border-bottom-right-radius:50%!important;border-bottom-left-radius:50%!important}.rounded-bottom-pill{border-bottom-right-radius:var(--bs-border-radius-pill)!important;border-bottom-left-radius:var(--bs-border-radius-pill)!important}.rounded-start{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-0{border-bottom-left-radius:0!important;border-top-left-radius:0!important}.rounded-start-1{border-bottom-left-radius:var(--bs-border-radius-sm)!important;border-top-left-radius:var(--bs-border-radius-sm)!important}.rounded-start-2{border-bottom-left-radius:var(--bs-border-radius)!important;border-top-left-radius:var(--bs-border-radius)!important}.rounded-start-3{border-bottom-left-radius:var(--bs-border-radius-lg)!important;border-top-left-radius:var(--bs-border-radius-lg)!important}.rounded-start-4{border-bottom-left-radius:var(--bs-border-radius-xl)!important;border-top-left-radius:var(--bs-border-radius-xl)!important}.rounded-start-5{border-bottom-left-radius:var(--bs-border-radius-xxl)!important;border-top-left-radius:var(--bs-border-radius-xxl)!important}.rounded-start-circle{border-bottom-left-radius:50%!important;border-top-left-radius:50%!important}.rounded-start-pill{border-bottom-left-radius:var(--bs-border-radius-pill)!important;border-top-left-radius:var(--bs-border-radius-pill)!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}.z-n1{z-index:-1!important}.z-0{z-index:0!important}.z-1{z-index:1!important}.z-2{z-index:2!important}.z-3{z-index:3!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.object-fit-sm-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-sm-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-sm-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-sm-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-sm-none{-o-object-fit:none!important;object-fit:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-sm-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-sm-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-sm-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-sm-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-sm-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.object-fit-md-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-md-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-md-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-md-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-md-none{-o-object-fit:none!important;object-fit:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-md-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-md-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-md-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-md-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-md-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.object-fit-lg-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-lg-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-lg-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-lg-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-lg-none{-o-object-fit:none!important;object-fit:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-lg-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-lg-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-lg-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-lg-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-lg-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.object-fit-xl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xl-none{-o-object-fit:none!important;object-fit:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.object-fit-xxl-contain{-o-object-fit:contain!important;object-fit:contain!important}.object-fit-xxl-cover{-o-object-fit:cover!important;object-fit:cover!important}.object-fit-xxl-fill{-o-object-fit:fill!important;object-fit:fill!important}.object-fit-xxl-scale{-o-object-fit:scale-down!important;object-fit:scale-down!important}.object-fit-xxl-none{-o-object-fit:none!important;object-fit:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{-moz-column-gap:0!important;column-gap:0!important}.column-gap-xxl-1{-moz-column-gap:0.25rem!important;column-gap:.25rem!important}.column-gap-xxl-2{-moz-column-gap:0.5rem!important;column-gap:.5rem!important}.column-gap-xxl-3{-moz-column-gap:1rem!important;column-gap:1rem!important}.column-gap-xxl-4{-moz-column-gap:1.5rem!important;column-gap:1.5rem!important}.column-gap-xxl-5{-moz-column-gap:3rem!important;column-gap:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map */
@font-face {
    font-family: 'Inter';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Black.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Light.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Medium.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Bold.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Regular.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Thin.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Inter/Inter-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-Bold.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-ExtraLight.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-ExtraBold.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-Light.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-Medium.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-Regular.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-SemiBold.woff2') format('woff2'),
    url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/Manrope/Manrope-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}



@font-face{font-family:'empe-icon';src:url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/empe/empe-icon.eot?lhbs01');src:url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/empe/empe-icon.eot?lhbs01#iefix') format('embedded-opentype'),url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/empe/empe-icon.ttf?lhbs01') format('truetype'),url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/empe/empe-icon.woff?lhbs01') format('woff'),url('../../../typo3conf/ext/empe_template/Resources/Public/Fonts/empe/empe-icon.svg?lhbs01#empe-icon') format('svg');font-weight:400;font-style:normal;font-display:block}[class^="tji-"],[class*=" tji-"]{font-family:'empe-icon'!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tji-quote-2:before{content:"\e96f"}.tji-arrow-bold-left:before{content:"\e970"}.tji-arrow-bold-right:before{content:"\e971"}.tji-download:before{content:"\e96e"}.tji-server:before{content:"\e96d"}.tji-star:before{content:"\e96c"}.tji-security:before{content:"\e96b"}.tji-speed-meter:before{content:"\e96a"}.tji-trust:before{content:"\e969"}.tji-cloud-2:before{content:"\e968"}.tji-chart-2:before{content:"\e967"}.tji-envelop-2:before{content:"\e966"}.tji-percent:before{content:"\e965"}.tji-subtitle-5:before{content:"\e964"}.tji-subtitle-4:before{content:"\e963"}.tji-subtitle-3:before{content:"\e962"}.tji-arrow-up-5:before{content:"\e906"}.tji-arrow-down-5:before{content:"\e907"}.tji-arrow-left-5:before{content:"\e908"}.tji-arrow-right-5:before{content:"\e909"}.tji-arrow-long-up:before{content:"\e90a"}.tji-arrow-long-down:before{content:"\e90b"}.tji-arrow-long-left:before{content:"\e90c"}.tji-arrow-long-right:before{content:"\e90d"}.tji-arrow-up-4:before{content:"\e90e"}.tji-arrow-down-4:before{content:"\e90f"}.tji-arrow-left-4:before{content:"\e910"}.tji-arrow-right-4:before{content:"\e911"}.tji-arrow-up-3:before{content:"\e912"}.tji-arrow-down-3:before{content:"\e913"}.tji-arrow-left-3:before{content:"\e914"}.tji-arrow-right-3:before{content:"\e915"}.tji-arrow-up-2:before{content:"\e916"}.tji-arrow-down-2:before{content:"\e917"}.tji-arrow-left-2:before{content:"\e918"}.tji-arrow-right-2:before{content:"\e919"}.tji-arrow-up:before{content:"\e91a"}.tji-arrow-down:before{content:"\e91b"}.tji-arrow-left:before{content:"\e91c"}.tji-arrow-right:before{content:"\e91d"}.tji-plus:before{content:"\e91f"}.tji-minus:before{content:"\e920"}.tji-subtitle:before{content:"\e921"}.tji-subtitle-2:before{content:"\e922"}.tji-growth:before{content:"\e923"}.tji-hand:before{content:"\e924"}.tji-trophy:before{content:"\e925"}.tji-team:before{content:"\e926"}.tji-marquee:before{content:"\e927"}.tji-marquee-2:before{content:"\e928"}.tji-plane:before{content:"\e929"}.tji-bell:before{content:"\e92a"}.tji-bell-2:before{content:"\e92b"}.tji-play:before{content:"\e92c"}.tji-quote:before{content:"\e92e"}.tji-home:before{content:"\e92d"}.tji-user:before{content:"\e900"}.tji-budget:before{content:"\e901"}.tji-location-2:before{content:"\e902"}.tji-chart:before{content:"\e903"}.tji-calendar:before{content:"\e904"}.tji-comment:before{content:"\e905"}.tji-window:before{content:"\e92f"}.tji-computer:before{content:"\e930"}.tji-development:before{content:"\e931"}.tji-network:before{content:"\e932"}.tji-consulting:before{content:"\e933"}.tji-cybersecurity:before{content:"\e934"}.tji-cloud:before{content:"\e935"}.tji-hand-2:before{content:"\e936"}.tji-idea:before{content:"\e937"}.tji-rocket:before{content:"\e938"}.tji-search:before{content:"\e939"}.tji-globe:before{content:"\e93a"}.tji-gear:before{content:"\e93b"}.tji-shield:before{content:"\e93c"}.tji-spark:before{content:"\e93d"}.tji-thumbs-up:before{content:"\e93e"}.tji-x-mark:before{content:"\e93f"}.tji-award:before{content:"\e940"}.tji-check:before{content:"\e941"}.tji-check-2:before{content:"\e91e"}.tji-check-3:before{content:"\e943"}.tji-check-4:before{content:"\e942"}.tji-clock:before{content:"\e944"}.tji-clock-2:before{content:"\e945"}.tji-location:before{content:"\e946"}.tji-phone:before{content:"\e947"}.tji-phone-2:before{content:"\e948"}.tji-phone-3:before{content:"\e949"}.tji-envelop:before{content:"\e94a"}.tji-chat:before{content:"\e94b"}.tji-share:before{content:"\e94c"}.tji-facebook:before{content:"\e94d"}.tji-messenger:before{content:"\e94e"}.tji-instagram:before{content:"\e94f"}.tji-whatsapp:before{content:"\e950"}.tji-linkedin:before{content:"\e951"}.tji-x-twitter:before{content:"\e952"}.tji-telegram:before{content:"\e953"}.tji-pinterest:before{content:"\e954"}.tji-signal:before{content:"\e955"}.tji-tiktok:before{content:"\e956"}.tji-threads:before{content:"\e957"}.tji-dribble:before{content:"\e958"}.tji-apple:before{content:"\e959"}.tji-google:before{content:"\e95a"}.tji-youtube:before{content:"\e95b"}.tji-vimeo:before{content:"\e95c"}.tji-github:before{content:"\e95d"}.tji-discord:before{content:"\e95e"}.tji-tumblr:before{content:"\e95f"}.tji-spotify:before{content:"\e960"}.tji-twitch:before{content:"\e961"}
.vbox-overlay{--vbox-tools-color:#fff;--vbox-title-background:#101010;--vbox-title-width:'auto';--vbox-title-radius:0;--vbox-share-background:#101010;--vbox-share-width:'auto';--vbox-share-radius:0;--vbox-padding:0;--vbox-max-width:100%}.vbox-overlay *,.vbox-overlay :after,.vbox-overlay :before{-webkit-backface-visibility:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.vbox-overlay *{-webkit-backface-visibility:visible;backface-visibility:visible}.vbox-overlay{display:-webkit-flex;display:flex;-webkit-flex-direction:column;flex-direction:column;-webkit-justify-content:center;justify-content:center;-webkit-align-items:center;align-items:center;position:fixed;left:0;top:0;bottom:0;right:0;z-index:999999}.vbox-share,.vbox-title{line-height:1;position:fixed;z-index:98;text-align:center;margin:0 auto;color:var(--vbox-tools-color)}.vbox-title{font-size:12px;background-color:var(--vbox-title-background);width:var(--vbox-title-width);border-radius:var(--vbox-title-radius);padding:12px 54px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;display:block}.vbox-share{font-size:24px;padding:0 .35em;background-color:var(--vbox-share-background);width:var(--vbox-share-width);border-radius:var(--vbox-share-radius)}.vbox-link-btn,button.vbox-link-btn,button.vbox-link-btn:active,button.vbox-link-btn:focus,button.vbox-link-btn:hover{border:none!important;background:0 0!important;box-shadow:none!important;color:inherit!important;padding:6px 12px;outline:0;display:inline-block;cursor:pointer}.vbox-share a{color:inherit!important;padding:6px 12px;display:inline-block}.vbox-share svg{z-index:10;vertical-align:middle}.vbox-close{cursor:pointer;position:fixed;top:0;right:0;z-index:99;padding:6px 15px;color:#000;color:var(--vbox-tools-color);border:0;font-size:24px;display:flex;align-items:center;opacity:.8;transition:opacity .2s}.vbox-close:hover{opacity:1}.vbox-left-corner{cursor:pointer;position:fixed;left:0;top:0;overflow:hidden;line-height:1;font-size:12px;z-index:99;display:flex;align-items:center;color:var(--vbox-tools-color)}.vbox-num{display:inline-block;padding:12px 15px}.vbox-left{left:0}.vbox-right{right:0}.vbox-top{top:0}.vbox-bottom{bottom:0}.vbox-next,.vbox-prev{position:fixed;top:50%;margin-top:-15px;overflow:hidden;cursor:pointer;display:block;width:45px;height:45px;z-index:99;opacity:.8;transition:opacity .2s}.vbox-next:hover,.vbox-prev:hover{opacity:1}.vbox-next span,.vbox-prev span{position:relative;width:20px;height:20px;border:2px solid transparent;border-top-color:var(--vbox-tools-color);border-right-color:var(--vbox-tools-color);text-indent:-100px;position:absolute;top:8px;display:block}.vbox-prev{left:15px}.vbox-next{right:15px}.vbox-prev span{left:10px;-ms-transform:rotate(-135deg);-webkit-transform:rotate(-135deg);transform:rotate(-135deg)}.vbox-next span{-ms-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg);right:10px}.vbox-inline,.venoratio{position:relative;width:100%;margin:0 auto}.venoratio::before{display:block;padding-top:var(--vb-aspect-ratio);content:""}.venoratio>*{position:absolute;top:0;left:0;width:100%;height:100%;padding:var(--vbox-padding)}.venoratio-1x1{--vb-aspect-ratio:100%;max-width:calc(min(var(--vbox-max-width),(100vh - 60px)))}.venoratio-4x3.vbox-child.venoratio{--vb-aspect-ratio:calc(3 / 4 * 100%);max-width:calc(min(var(--vbox-max-width),(100vh - 60px) * 4 / 3))}.venoratio-16x9.vbox-child.venoratio{--vb-aspect-ratio:calc(9 / 16 * 100%);max-width:calc(min(var(--vbox-max-width),(100vh - 60px) * 16 / 9))}.venoratio-21x9.vbox-child.venoratio{--vb-aspect-ratio:calc(9 / 21 * 100%);max-width:calc(min(var(--vbox-max-width),(100vh - 60px) * 21 / 9))}.venoratio-full{--vb-aspect-ratio:calc(100vh - 60px)}.vbox-child.vbox-inline,.vbox-child.venoratio{max-width:100%}.vbox-open{overflow:hidden}.vbox-container{position:absolute;left:0;right:0;top:0;bottom:0;overflow-x:hidden;overflow-y:scroll;overflow-scrolling:touch;-webkit-overflow-scrolling:touch;z-index:20;max-height:100%;padding:30px 0}.vbox-content{opacity:0;text-align:center;width:100%;position:relative;overflow:hidden;padding:0 4%;display:flex;align-items:center;justify-content:center;min-height:100%}.vbox-container img{max-width:100%;height:auto}.vbox-child{box-shadow:0 0 12px rgba(0,0,0,.19),0 6px 6px rgba(0,0,0,.23);max-width:var(--vbox-max-width);text-align:initial;padding:var(--vbox-padding)}.vbox-child img{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-o-user-select:none;user-select:none;display:block}.vbox-fit .vbox-child img,.vbox-fit .vbox-child.venoratio{max-height:calc(100vh - 60px)}.vbox-grab .vbox-child img{cursor:grab}.vbox-child>iframe{border:none!important}.vbox-content.swipe-left{margin-left:-200px!important}.vbox-content.swipe-right{margin-left:200px!important}.vbox-preloader{-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.vbox-preloader .vbox-preloader-inner{opacity:1;transition:opacity .2s}.vbox-hidden{display:none}.vbox-preloader.vbox-hidden .vbox-preloader-inner{opacity:0}.vbox-backdrop{position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:translateZ(-1px);-moz-transform:translateZ(-1px);-o-transform:translateZ(-1px);transform:translateZ(-1px);z-index:0}.vbox-tooltip{position:relative;display:inline-block}.vbox-tooltip .vbox-tooltip-text{visibility:hidden;color:#fff;text-align:center;padding:0;position:absolute;z-index:1;bottom:100%;left:0;opacity:0;transition:opacity .3s;margin-bottom:2px;font-family:sans-serif}.vbox-top .vbox-tooltip .vbox-tooltip-text{bottom:auto;top:100%;margin-bottom:0;margin-top:2px}.vbox-tooltip-inner{padding:5px 10px;background-color:rgba(0,0,0,.9);border-radius:6px;font-size:10px}.vbox-tooltip:hover .vbox-tooltip-text{visibility:visible;opacity:1}.vbox-overlay{--sk-size:40px;--sk-color:#333}.sk-center{margin:auto}.sk-plane{width:var(--sk-size);height:var(--sk-size);background-color:var(--sk-color);animation:sk-plane 1.2s infinite ease-in-out}@keyframes sk-plane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}.sk-chase{width:var(--sk-size);height:var(--sk-size);position:relative;animation:sk-chase 2.5s infinite linear both}.sk-chase-dot{width:100%;height:100%;position:absolute;left:0;top:0;animation:sk-chase-dot 2s infinite ease-in-out both}.sk-chase-dot:before{content:'';display:block;width:25%;height:25%;background-color:var(--sk-color);border-radius:100%;animation:sk-chase-dot-before 2s infinite ease-in-out both}.sk-chase-dot:nth-child(1){animation-delay:-1.1s}.sk-chase-dot:nth-child(2){animation-delay:-1s}.sk-chase-dot:nth-child(3){animation-delay:-.9s}.sk-chase-dot:nth-child(4){animation-delay:-.8s}.sk-chase-dot:nth-child(5){animation-delay:-.7s}.sk-chase-dot:nth-child(6){animation-delay:-.6s}.sk-chase-dot:nth-child(1):before{animation-delay:-1.1s}.sk-chase-dot:nth-child(2):before{animation-delay:-1s}.sk-chase-dot:nth-child(3):before{animation-delay:-.9s}.sk-chase-dot:nth-child(4):before{animation-delay:-.8s}.sk-chase-dot:nth-child(5):before{animation-delay:-.7s}.sk-chase-dot:nth-child(6):before{animation-delay:-.6s}@keyframes sk-chase{100%{transform:rotate(360deg)}}@keyframes sk-chase-dot{100%,80%{transform:rotate(360deg)}}@keyframes sk-chase-dot-before{50%{transform:scale(.4)}0%,100%{transform:scale(1)}}.sk-bounce{width:var(--sk-size);height:var(--sk-size);position:relative}.sk-bounce-dot{width:100%;height:100%;border-radius:50%;background-color:var(--sk-color);opacity:.6;position:absolute;top:0;left:0;animation:sk-bounce 2s infinite cubic-bezier(.455,.03,.515,.955)}.sk-bounce-dot:nth-child(2){animation-delay:-1s}@keyframes sk-bounce{0%,100%{transform:scale(0)}45%,55%{transform:scale(1)}}.sk-wave{width:var(--sk-size);height:var(--sk-size);display:flex;justify-content:space-between}.sk-wave-rect{background-color:var(--sk-color);height:100%;width:15%;animation:sk-wave 1.2s infinite ease-in-out}.sk-wave-rect:nth-child(1){animation-delay:-1.2s}.sk-wave-rect:nth-child(2){animation-delay:-1.1s}.sk-wave-rect:nth-child(3){animation-delay:-1s}.sk-wave-rect:nth-child(4){animation-delay:-.9s}.sk-wave-rect:nth-child(5){animation-delay:-.8s}@keyframes sk-wave{0%,100%,40%{transform:scaleY(.4)}20%{transform:scaleY(1)}}.sk-pulse{width:var(--sk-size);height:var(--sk-size);background-color:var(--sk-color);border-radius:100%;animation:sk-pulse 1.2s infinite cubic-bezier(.455,.03,.515,.955)}@keyframes sk-pulse{0%{transform:scale(0)}100%{transform:scale(1);opacity:0}}.sk-flow{width:calc(var(--sk-size) * 1.3);height:calc(var(--sk-size) * 1.3);display:flex;justify-content:space-between}.sk-flow-dot{width:25%;height:25%;background-color:var(--sk-color);border-radius:50%;animation:sk-flow 1.4s cubic-bezier(.455,.03,.515,.955) 0s infinite both}.sk-flow-dot:nth-child(1){animation-delay:-.3s}.sk-flow-dot:nth-child(2){animation-delay:-.15s}@keyframes sk-flow{0%,100%,80%{transform:scale(.3)}40%{transform:scale(1)}}.sk-swing{width:var(--sk-size);height:var(--sk-size);position:relative;animation:sk-swing 1.8s infinite linear}.sk-swing-dot{width:45%;height:45%;position:absolute;top:0;left:0;right:0;margin:auto;background-color:var(--sk-color);border-radius:100%;animation:sk-swing-dot 2s infinite ease-in-out}.sk-swing-dot:nth-child(2){top:auto;bottom:0;animation-delay:-1s}@keyframes sk-swing{100%{transform:rotate(360deg)}}@keyframes sk-swing-dot{0%,100%{transform:scale(.2)}50%{transform:scale(1)}}.sk-circle{width:var(--sk-size);height:var(--sk-size);position:relative}.sk-circle-dot{width:100%;height:100%;position:absolute;left:0;top:0}.sk-circle-dot:before{content:'';display:block;width:15%;height:15%;background-color:var(--sk-color);border-radius:100%;animation:sk-circle 1.2s infinite ease-in-out both}.sk-circle-dot:nth-child(1){transform:rotate(30deg)}.sk-circle-dot:nth-child(2){transform:rotate(60deg)}.sk-circle-dot:nth-child(3){transform:rotate(90deg)}.sk-circle-dot:nth-child(4){transform:rotate(120deg)}.sk-circle-dot:nth-child(5){transform:rotate(150deg)}.sk-circle-dot:nth-child(6){transform:rotate(180deg)}.sk-circle-dot:nth-child(7){transform:rotate(210deg)}.sk-circle-dot:nth-child(8){transform:rotate(240deg)}.sk-circle-dot:nth-child(9){transform:rotate(270deg)}.sk-circle-dot:nth-child(10){transform:rotate(300deg)}.sk-circle-dot:nth-child(11){transform:rotate(330deg)}.sk-circle-dot:nth-child(1):before{animation-delay:-1.1s}.sk-circle-dot:nth-child(2):before{animation-delay:-1s}.sk-circle-dot:nth-child(3):before{animation-delay:-.9s}.sk-circle-dot:nth-child(4):before{animation-delay:-.8s}.sk-circle-dot:nth-child(5):before{animation-delay:-.7s}.sk-circle-dot:nth-child(6):before{animation-delay:-.6s}.sk-circle-dot:nth-child(7):before{animation-delay:-.5s}.sk-circle-dot:nth-child(8):before{animation-delay:-.4s}.sk-circle-dot:nth-child(9):before{animation-delay:-.3s}.sk-circle-dot:nth-child(10):before{animation-delay:-.2s}.sk-circle-dot:nth-child(11):before{animation-delay:-.1s}@keyframes sk-circle{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.sk-circle-fade{width:var(--sk-size);height:var(--sk-size);position:relative}.sk-circle-fade-dot{width:100%;height:100%;position:absolute;left:0;top:0}.sk-circle-fade-dot:before{content:'';display:block;width:15%;height:15%;background-color:var(--sk-color);border-radius:100%;animation:sk-circle-fade 1.2s infinite ease-in-out both}.sk-circle-fade-dot:nth-child(1){transform:rotate(30deg)}.sk-circle-fade-dot:nth-child(2){transform:rotate(60deg)}.sk-circle-fade-dot:nth-child(3){transform:rotate(90deg)}.sk-circle-fade-dot:nth-child(4){transform:rotate(120deg)}.sk-circle-fade-dot:nth-child(5){transform:rotate(150deg)}.sk-circle-fade-dot:nth-child(6){transform:rotate(180deg)}.sk-circle-fade-dot:nth-child(7){transform:rotate(210deg)}.sk-circle-fade-dot:nth-child(8){transform:rotate(240deg)}.sk-circle-fade-dot:nth-child(9){transform:rotate(270deg)}.sk-circle-fade-dot:nth-child(10){transform:rotate(300deg)}.sk-circle-fade-dot:nth-child(11){transform:rotate(330deg)}.sk-circle-fade-dot:nth-child(1):before{animation-delay:-1.1s}.sk-circle-fade-dot:nth-child(2):before{animation-delay:-1s}.sk-circle-fade-dot:nth-child(3):before{animation-delay:-.9s}.sk-circle-fade-dot:nth-child(4):before{animation-delay:-.8s}.sk-circle-fade-dot:nth-child(5):before{animation-delay:-.7s}.sk-circle-fade-dot:nth-child(6):before{animation-delay:-.6s}.sk-circle-fade-dot:nth-child(7):before{animation-delay:-.5s}.sk-circle-fade-dot:nth-child(8):before{animation-delay:-.4s}.sk-circle-fade-dot:nth-child(9):before{animation-delay:-.3s}.sk-circle-fade-dot:nth-child(10):before{animation-delay:-.2s}.sk-circle-fade-dot:nth-child(11):before{animation-delay:-.1s}@keyframes sk-circle-fade{0%,100%,39%{opacity:0;transform:scale(.6)}40%{opacity:1;transform:scale(1)}}.sk-grid{width:var(--sk-size);height:var(--sk-size)}.sk-grid-cube{width:33.33%;height:33.33%;background-color:var(--sk-color);float:left;animation:sk-grid 1.3s infinite ease-in-out}.sk-grid-cube:nth-child(1){animation-delay:.2s}.sk-grid-cube:nth-child(2){animation-delay:.3s}.sk-grid-cube:nth-child(3){animation-delay:.4s}.sk-grid-cube:nth-child(4){animation-delay:.1s}.sk-grid-cube:nth-child(5){animation-delay:.2s}.sk-grid-cube:nth-child(6){animation-delay:.3s}.sk-grid-cube:nth-child(7){animation-delay:0s}.sk-grid-cube:nth-child(8){animation-delay:.1s}.sk-grid-cube:nth-child(9){animation-delay:.2s}@keyframes sk-grid{0%,100%,70%{transform:scale3D(1,1,1)}35%{transform:scale3D(0,0,1)}}.sk-fold{width:var(--sk-size);height:var(--sk-size);position:relative;transform:rotateZ(45deg)}.sk-fold-cube{float:left;width:50%;height:50%;position:relative;transform:scale(1.1)}.sk-fold-cube:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:var(--sk-color);animation:sk-fold 2.4s infinite linear both;transform-origin:100% 100%}.sk-fold-cube:nth-child(2){transform:scale(1.1) rotateZ(90deg)}.sk-fold-cube:nth-child(4){transform:scale(1.1) rotateZ(180deg)}.sk-fold-cube:nth-child(3){transform:scale(1.1) rotateZ(270deg)}.sk-fold-cube:nth-child(2):before{animation-delay:.3s}.sk-fold-cube:nth-child(4):before{animation-delay:.6s}.sk-fold-cube:nth-child(3):before{animation-delay:.9s}@keyframes sk-fold{0%,10%{transform:perspective(140px) rotateX(-180deg);opacity:0}25%,75%{transform:perspective(140px) rotateX(0);opacity:1}100%,90%{transform:perspective(140px) rotateY(180deg);opacity:0}}.sk-wander{width:var(--sk-size);height:var(--sk-size);position:relative}.sk-wander-cube{background-color:var(--sk-color);width:20%;height:20%;position:absolute;top:0;left:0;--sk-wander-distance:calc(var(--sk-size) * 0.75);animation:sk-wander 2s ease-in-out -2s infinite both}.sk-wander-cube:nth-child(2){animation-delay:-.5s}.sk-wander-cube:nth-child(3){animation-delay:-1s}@keyframes sk-wander{0%{transform:rotate(0)}25%{transform:translateX(var(--sk-wander-distance)) rotate(-90deg) scale(.6)}50%{transform:translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg)}50.1%{transform:translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg)}75%{transform:translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(.6)}100%{transform:rotate(-360deg)}}

/*! #######################################################################

	MeanMenu 2.0.7
	--------

	To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */

/* hide the link until viewport size is reached */
a.meanmenu-reveal {
	display: none;
}

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
	float: left;
	width: 100%;
	position: relative;
	background: #070337;
	padding: 4px 0;
	min-height: 42px;
	z-index: 999999;
}

.mean-container a.meanmenu-reveal {
	width: 22px;
	height: 22px;
	padding: 13px 13px 11px 13px;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	text-indent: -9999em;
	line-height: 22px;
	font-size: 1px;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
	display: block;
	background: #fff;
	height: 3px;
	margin-top: 3px;
}

.mean-container .mean-nav {
	float: left;
	width: 100%;
	background: #070337;
	margin-top: 44px;
}

.mean-container .mean-nav ul {
	padding: 0;
	margin: 0;
	width: 100%;
	list-style-type: none;
}

.mean-container .mean-nav ul li {
	position: relative;
	float: left;
	width: 100%;
}

.mean-container .mean-nav ul li a {
	display: block;
	float: left;
	width: 90%;
	padding: 10px 5%;
	margin: 0;
	text-align: left;
	color: #fff;
	border-top: 1px solid #e0e3ed;
	text-decoration: none;
	text-transform: uppercase;
}

.mean-container .mean-nav ul li li a {
	width: 80%;
	padding: 10px 10%;
	text-shadow: none !important;
	visibility: visible;
}

.mean-container .mean-nav ul li.mean-last a {
	border-bottom: none;
	margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
	width: 70%;
	padding: 10px 15%;
}

.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 10px 20%;
}

.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 10px 25%;
}


.mean-container .mean-nav ul li a.mean-expand {
	margin-top: 1px;
	width: 26px;
	height: 32px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	font-weight: 700;
	background: transparent;
	border: none !important;
	font-size: 14px;
}




.mean-container .mean-push {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	clear: both;
}

.mean-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar, .mean-container .mean-bar * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


.mean-remove {
	display: none !important;
}

.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto; }
  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f6f6f6; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }

:root {
  --empe-ff-body: 'Inter';
  --empe-ff-heading: 'Manrope';
  --empe-fonticon: 'empe-icon';

  --empe-fw-normal: normal;
  --empe-fw-thin: 100;
  --empe-fw-elight: 200;
  --empe-fw-light: 300;
  --empe-fw-regular: 400;
  --empe-fw-medium: 500;
  --empe-fw-sbold: 600;
  --empe-fw-bold: 700;
  --empe-fw-ebold: 800;
  --empe-fw-black: 900;

  --empe-fs-body: 16px;
  --empe-fs-p: 16px;
  --empe-fs-h1: 74px;
  --empe-fs-h2: 48px;
  --empe-fs-h3: 32px;
  --empe-fs-h4: 24px;
  --empe-fs-h5: 20px;
  --empe-fs-h6: 18px;

  --empe-color-common-white: #ffffff;
  --empe-color-common-black: #000000;
  --empe-color-common-black-2: #050505;
  --empe-color-heading-primary: #f6f7f7;
  --empe-color-text-body: #bcbdb9;
  --empe-color-text-body-2: #999996;
  --empe-color-theme-primary: #2D9CDB;
  --empe-color-theme-bg: #191a18;
  --empe-color-theme-dark: #050505;
  --empe-color-theme-dark-2: #494a46;
  --empe-color-theme-dark-3: #6d6e68;
  --empe-color-white-2: rgba(255, 255, 255, 0.8);
  --empe-color-grey-1: #9692b2;
  --empe-color-grey-2: #78758f;
  --empe-color-grey-3: rgba(150, 146, 178, 0.8);
  --empe-color-grey-4: rgba(250, 251, 251, 0.0784313725);
  --empe-color-border-1: #282926;
  --empe-color-border-2: rgba(45, 156, 219, 0.5019607843);
  --empe-color-golden-1: #fdb900;
}

.skip-to-content {
  position: fixed;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--empe-color-theme-primary);
  color: var(--empe-color-common-black-2) !important;
  padding: 8px 20px;
  font-family: var(--empe-ff-heading), sans-serif;
  z-index: 1000;
  text-decoration: none;
  transition: top 0.3s;
  outline-offset: inherit !important;
  outline: inherit !important;
  font-weight: var(--empe-fw-medium);
}

.skip-to-content:focus,
.skip-to-content:focus-visible {
  top: 0;
  border-radius: 0;
  border: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.site-main,
html {
  position: relative;
}

body {
  background-color: var(--empe-color-common-black-2);
  color: var(--empe-color-text-body);
  font-family: var(--empe-ff-body), sans-serif;
  font-size: var(--empe-fs-body);
  font-weight: var(--empe-fw-regular);
  line-height: 1.625;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--empe-color-heading-primary);
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-top: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 span,
 h2 span,
 h3 span,
 h4 span,
 h5 span,
 h6 span {
   color: var(--empe-color-theme-primary);
 }

h1 {
  font-size: var(--empe-fs-h1);
  line-height: 1.027;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h1 {
    font-size: 45px;
  }
}

h2 {
  font-size: var(--empe-fs-h2);
  line-height: 1.167;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: var(--empe-fs-h3);
  line-height: 1.25;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-size: var(--empe-fs-h4);
  line-height: 1.333;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h4 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: var(--empe-fs-h5);
  line-height: 1.4;
}

h6 {
  font-size: var(--empe-fs-h6);
  line-height: 1.444;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.title {
  margin-bottom: 35px;
}

ul {
  margin: 0;
  padding: 0;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:focus,
button:focus,
button:focus-visible {
  text-decoration: none;
  outline: none;
  box-shadow: 0 0 0;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: var(--empe-color-theme-primary);
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input[type=search],
input[type=tel],
input[type=text],
input[type=email],
input[type=url],
textarea {
  outline: none;
  background-color: var(--empe-color-common-black) !important;
  width: 100%;
  height: auto;
  min-height: 44px;
  font-size: var(--empe-fs-body);
  border: 1px solid var(--empe-color-border-1);
  color: var(--empe-color-text-body);
  padding: 10px 20px;
  box-shadow: 0 0 0;
  border-radius: 8px;
}
select:focus,
.nice-select:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--empe-color-theme-primary);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.nice-select:hover {
  border-color: var(--empe-color-border-1);
}
.nice-select.open {
  border-color: var(--empe-color-theme-primary);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--empe-color-theme-dark-3) var(--empe-color-border-1);
}

*::-moz-selection {
  background: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  text-shadow: none;
}

::-moz-selection {
  background: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  text-shadow: none;
}

::selection {
  background: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: var(--empe-color-text-body-2);
  font-size: var(--empe-fs-body);
  opacity: 1;
}
*:-moz-placeholder {
  color: var(--empe-color-text-body-2);
  font-size: var(--empe-fs-body);
  opacity: 1;
}
*::-moz-placeholder {
  color: var(--empe-color-text-body-2);
  font-size: var(--empe-fs-body);
  opacity: 1;
}
*:-ms-input-placeholder {
  color: var(--empe-color-text-body-2);
  font-size: var(--empe-fs-body);
  opacity: 1;
}
*::placeholder {
  color: var(--empe-color-text-body-2);
  font-size: var(--empe-fs-body);
  opacity: 1;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 30px;
}
.container.gx-0,
.container-fluid.gx-0,
.container-lg.gx-0,
.container-md.gx-0,
.container-sm.gx-0,
.container-xl.gx-0,
.container-xxl.gx-0 {
  --bs-gutter-x: 0;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1350px;
}

.row {
  --bs-gutter-x: 30px;
}

/**
 	Common Classes CSS
*/
img {
  max-width: 100%;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.rg-30 {
  row-gap: 30px;
}

.rg-40 {
  row-gap: 40px;
}

.rg-50 {
  row-gap: 50px;
}

.rg-60 {
  row-gap: 60px;
}

.rg-70 {
  row-gap: 70px;
}

.rg-80 {
  row-gap: 80px;
}

.pt-90 {
  padding-top: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pt-90 {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pt-90 {
    padding-top: 60px;
  }
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.gap,
.section-gap {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gap,
  .section-gap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gap,
  .section-gap {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.gap-2,
.section-gap-2 {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gap-2,
  .section-gap-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gap-2,
  .section-gap-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.gap-top,
.section-gap-top {
  padding-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gap-top,
  .section-gap-top {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gap-top,
  .section-gap-top {
    padding-top: 70px;
  }
}

.gap-bottom,
.section-gap-bottom {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gap-bottom,
  .section-gap-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gap-bottom,
  .section-gap-bottom {
    padding-bottom: 70px;
  }
}

.section-gap-x {
  margin-left: 30px;
  margin-right: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-gap-x {
    margin-left: 15px;
    margin-right: 15px;
  }
}

.section-separator {
  border-top: 1px solid var(--empe-color-border-1);
}

.section-separator-2 {
  border-top: 1px dashed var(--empe-color-border-1);
}

#smooth-content {
  padding-bottom: 30px;
  will-change: transform;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  #smooth-content {
    padding-bottom: 15px;
  }
}

.bottom-space-0 {
  margin-bottom: -30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bottom-space-0 {
    margin-bottom: -15px;
  }
}

.bottom-space-30 {
  padding-bottom: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bottom-space-30 {
    padding-bottom: 15px;
  }
}

.top-space-30 {
  padding-top: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .top-space-30 {
    padding-top: 15px;
  }
}

.top-space-125 {
  padding-top: 125px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .top-space-125 {
    padding-top: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .top-space-125 {
    padding-top: 105px;
  }
}

.tj-sticky-item,
.tj-sticky-panel {
  will-change: transform;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  [data-speed=".8"] {
    transform: none !important;
  }
}

.star-ratings {
  unicode-bidi: bidi-override;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 2px;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--empe-color-theme-primary);
}
.star-ratings .fill-ratings {
  color: var(--empe-color-theme-primary);
  display: inline-flex;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 0;
  overflow: hidden;
}
.star-ratings .fill-ratings span {
  display: inline-block;
  margin: 0;
}
.star-ratings .empty-ratings {
  color: var(--empe-color-theme-primary);
  display: inline-flex;
  padding: 0;
  z-index: 0;
  opacity: 0.5;
}

.sticky-lg-top {
  top: 30px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.sticky-lg-top.sec-heading {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sticky-lg-top.sec-heading {
    margin-bottom: 35px;
  }
}

body:has(.sticky) .sticky-lg-top {
  top: 130px;
}

.tj-split-text-4 > div {
  overflow: hidden;
}

.tj-text-invert > div {
  background-size: 250% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, var(--empe-color-heading-primary) 50%, var(--empe-color-theme-dark-2) 50%);
}

.line {
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  --highlight-offset: 0%;
  background-image: linear-gradient(90deg, var(--empe-color-heading-primary) var(--highlight-offset), var(--empe-color-theme-dark-2) var(--highlight-offset));
}

.circle-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 130px;
  height: 130px;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-animation: textRotate 20s infinite linear;
  animation: textRotate 20s infinite linear;
}
.circle-text-wrap {
  background-color: var(--empe-color-theme-primary);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-text {
    width: 120px;
    height: 120px;
  }
}
.circle-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  color: var(--empe-color-theme-dark);
  font-size: 32px;
  width: 100%;
  height: 100%;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.circle-icon span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--empe-color-theme-primary);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.circle-icon i {
  color: var(--empe-color-theme-dark);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-icon {
    font-size: 30;
    width: 120px;
    height: 120px;
  }
}

.tj-split-text-3 {
  line-height: 1.2;
}
.tj-split-text-3 .char {
  display: inline-block;
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
}

.img-reveal-1 {
  position: relative;
  overflow: hidden;
}
.img-reveal-1 img {
  object-fit: cover;
  transform-origin: left;
}
.img-reveal-2 {
  position: relative;
  overflow: hidden;
}
.img-reveal-2 img {
  object-fit: cover;
  transform-origin: center;
}

/**
  Buttons CSS
*/
.tj-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--empe-color-theme-primary);
  font-size: 16px;
  font-weight: var(--empe-fw-sbold);
  padding: 5px 5px 5px 30px;
  text-align: center;
  border-radius: 50px;
  line-height: 1;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
}
.tj-primary-btn .btn-text {
  color: var(--empe-color-theme-bg);
  overflow: hidden;
}
.tj-primary-btn .btn-text span {
  display: flex;
  line-height: 1.3;
  text-shadow: 0 30px 0 var(--empe-color-common-white);
  backface-visibility: hidden;
  transform: translateY(0);
  transition: 0.4s ease-in-out;
}
.tj-primary-btn .btn-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border-radius: 50%;
}
.tj-primary-btn .btn-icon::before {
  content: "";
  background-color: var(--empe-color-theme-dark);
  width: 46px;
  height: calc(100% - 10px);
  position: absolute;
  right: 5px;
  top: 5px;
  z-index: -1;
  border-radius: 50px;
}
.tj-primary-btn .btn-icon i {
  color: var(--empe-color-common-white);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.tj-primary-btn:hover .btn-text span {
  transform: translateY(-30px);
}
.tj-primary-btn:hover .btn-icon::before {
  width: calc(100% - 10px);
}
.tj-primary-btn:hover .btn-icon i {
  transform: rotate(0);
}
.tj-primary-btn.style-2 {
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  padding: 4px 4px 4px 29px;
}
.tj-primary-btn.style-2 .btn-text {
  color: var(--empe-color-common-white);
}
.tj-primary-btn.style-2 .btn-text span {
  text-shadow: 0 30px 0 var(--empe-color-theme-dark);
}
.tj-primary-btn.style-2 .btn-icon::before {
  background-color: var(--empe-color-theme-primary);
  right: 4px;
  top: 4px;
}
.tj-primary-btn.style-2 .btn-icon i {
  color: var(--empe-color-theme-bg);
}
.tj-primary-btn.style-3 {
  background-color: var(--empe-color-theme-dark);
}

.tj-text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--empe-color-text-body);
  font-size: 16px;
  line-height: 1;
  font-weight: var(--empe-fw-sbold);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.tj-text-btn .btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-inline-start: -14px;
}
.tj-text-btn .btn-text span {
  display: inline-flex;
  line-height: 1;
}
.tj-text-btn .btn-icon {
  font-size: 10px;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 2px;
}
.tj-text-btn .btn-icon span {
  display: inline-flex;
  line-height: 1;
}
.tj-text-btn.style-2 {
  color: var(--empe-color-text-body-2);
  line-height: 1.3;
}
.tj-text-btn.style-2::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--empe-color-heading-primary);
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}
.tj-text-btn.style-2 i,
.tj-text-btn.style-2 svg {
  display: inline-flex;
  line-height: 1;
  font-size: 10px;
  margin-top: 2px;
}
.tj-text-btn.style-2 svg {
  max-width: 10px;
}
.tj-text-btn:hover {
  color: var(--empe-color-theme-primary);
}
.tj-text-btn:hover .btn-inner {
  margin-inline-start: 0;
  margin-inline-end: -14px;
}
.tj-text-btn:hover.style-2 {
  color: var(--empe-color-heading-primary);
}
.tj-text-btn:hover.style-2::before {
  transform-origin: left;
  transform: scaleX(1);
}
.tj-text-btn.style-3 {
  gap: 10px;
  text-align: center;
}
.tj-text-btn.style-3 .btn-text {
  color: var(--empe-color-heading-primary);
  overflow: hidden;
}
.tj-text-btn.style-3 .btn-text span {
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  backface-visibility: hidden;
  transform: translateY(0);
  transition: 0.4s ease-in-out;
}
.tj-text-btn.style-3 .btn-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 24px;
  height: 24px;
  overflow: hidden;
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  color: var(--empe-color-theme-dark);
}
.tj-text-btn.style-3 .btn-icon i,
.tj-text-btn.style-3 .btn-icon svg {
  display: inline-flex;
  line-height: 1;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.tj-text-btn.style-3 .btn-icon svg {
  max-width: 20px;
  height: a;
}
.tj-text-btn.style-3:hover .btn-text span {
  transform: translateY(-30px);
}
.tj-text-btn.style-3:hover .btn-icon {
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
}
.tj-text-btn.style-3:hover .btn-icon i,
.tj-text-btn.style-3:hover .btn-icon svg {
  transform: rotate(0);
}

.tj-icon-btn {
  font-size: 22px;
  width: 60px;
  height: 60px;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tj-icon-btn i {
  color: var(--empe-color-common-white);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.tj-icon-btn:hover {
  background-color: var(--empe-color-theme-primary);
}
.tj-icon-btn:hover i {
  color: var(--empe-color-theme-dark);
  transform: rotate(0);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area {
  background-color: var(--empe-color-theme-bg);
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 97;
}
.header-area.header-absolute {
  background-color: transparent;
  position: absolute;
  z-index: 98;
}
.header-area.header-duplicate {
  background-color: var(--empe-color-theme-bg);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
  display: none;
  opacity: 0;
  visibility: hidden;
}
.header-area.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  animation: sticky 0.9s;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  display: block;
}
.header-area.header-1.header-absolute {
  top: 30px;
  padding: 0 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-1.header-absolute {
    top: 15px;
    padding: 0 15px;
  }
}
.header-area.header-1.header-duplicate {
  background-color: transparent;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-1.header-duplicate .header-bottom {
    padding: 0;
  }
}
.header-area.header-1.header-duplicate .header-wrapper {
  background-color: var(--empe-color-theme-bg);
  border-start-start-radius: 0;
  border-start-end-radius: 0;
}
.header-area.header-1 .header-wrapper {
  padding: 0 20px;
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(40px);
  border-radius: 10px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-1 .header-wrapper {
    padding: 0 15px;
  }
}
.header-area.header-2 .header-wrapper {
  padding: 0 20px;
  border-radius: 10px;
  background-color: var(--empe-color-theme-bg);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-2 .header-wrapper {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-2 .header-bottom {
    padding: 0;
  }
}
.header-area.header-2.header-absolute {
  top: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-2.header-absolute {
    top: 15px;
  }
}
.header-area.header-2.header-duplicate {
  background-color: transparent;
}
.header-area.header-2.header-duplicate .header-wrapper {
  border-start-start-radius: 0;
  border-start-end-radius: 0;
}
.header-area.header-3.header-absolute .mainmenu ul:not(.sub-menu) > li > a {
  color: var(--empe-color-heading-primary);
}
.header-area.header-3.header-absolute .mainmenu ul:not(.sub-menu) > li.current-menu-ancestor > a, .header-area.header-3.header-absolute .mainmenu ul:not(.sub-menu) > li.current-menu-item > a, .header-area.header-3.header-absolute .mainmenu ul:not(.sub-menu) > li:hover > a {
  color: var(--empe-color-theme-primary);
}
.header-area.header-3.header-absolute .mainmenu ul:not(.sub-menu) > li.current-menu-ancestor > a::after, .header-area.header-3.header-absolute .mainmenu ul:not(.sub-menu) > li.current-menu-item > a::after, .header-area.header-3.header-absolute .mainmenu ul:not(.sub-menu) > li:hover > a::after {
  color: var(--empe-color-theme-primary);
}
.header-area.header-3.header-absolute .header-search .search {
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(40px);
}
.header-area.header-3.header-absolute .cubes {
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(40px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-3 .header-bottom {
    padding: 0;
  }
}

.header-top {
  padding: 0 15px;
}
.header-top-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header-top-content .topbar-text {
  padding: 15px 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-top-content .topbar-text i {
  color: var(--empe-color-theme-primary);
  font-size: 17px;
  animation: zoomEffect 1.5s linear infinite;
}
.header-top-content .topbar-text a {
  color: var(--empe-color-theme-primary);
  font-weight: var(--empe-fw-medium);
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.header-top-content .topbar-text a::after {
  content: "\e919";
  font-size: 18px;
  line-height: 1;
  font-family: var(--empe-fonticon) !important;
  font-weight: var(--empe-fw-medium);
  display: inline-flex;
  color: inherit;
  margin-left: 4px;
  margin-top: 3px;
  transform: rotate(-45deg);
}
.header-top-content .topbar-text a:hover {
  color: var(--empe-color-theme-primary);
}
.header-top-content .topbar-text a:hover::after {
  transform: rotate(0deg);
}
.header-top-content .header-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.header-top-content .header-info .info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0 15px;
  border-left: 2px solid var(--empe-color-border-1);
  line-height: 1;
}
.header-top-content .header-info .info-item:first-child {
  border: 0;
}
.header-top-content .header-info .info-item:last-child {
  padding-right: 0;
}
.header-top-content .header-info .info-item span {
  display: inline-flex;
  line-height: 1;
}
.header-top-content .header-info .info-item span i {
  display: inline-flex;
  line-height: 1;
  font-size: 18px;
  color: var(--empe-color-theme-primary);
}
.header-top-content .header-info .info-item a {
  color: var(--empe-color-text-body);
}
.header-top-content .header-info .info-item a:hover {
  color: var(--empe-color-heading-primary);
}
.header-top-content .header-info .info-item .tj-language {
  position: relative;
  padding: 15px 0;
}
.header-top-content .header-info .info-item .tj-language span {
  font-size: 16px;
  display: inline-flex;
  padding-inline-end: 17px;
  cursor: pointer;
}
.header-top-content .header-info .info-item .tj-language span::after {
  content: "\e91b";
  font-family: var(--empe-fonticon);
  font-size: 12px;
  inset-inline-end: 0;
  height: auto;
  width: auto;
  border: none;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  margin-top: 0;
  transform-origin: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-top-content .header-info .info-item .tj-language ul {
  list-style: none;
  background-color: var(--empe-color-theme-bg);
  color: var(--empe-color-text-body);
  border-radius: 6px;
  min-width: 120px;
  padding: 10px 0;
  border: 1px solid var(--empe-color-border-1);
  position: absolute;
  top: 100%;
  left: auto;
  right: 0;
  z-index: 100;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.header-top-content .header-info .info-item .tj-language ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
  min-height: 30px;
  padding: 8px 20px;
  background-color: transparent;
  cursor: pointer;
}
.header-top-content .header-info .info-item .tj-language ul li:hover {
  background-color: transparent;
  color: var(--empe-color-theme-primary);
}
.header-top-content .header-info .info-item .tj-language:hover span {
  color: var(--empe-color-heading-primary);
}
.header-top-content .header-info .info-item .tj-language:hover span::after {
  transform: translateY(-50%) rotate(-180deg);
}
.header-top-content .header-info .info-item .tj-language:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  pointer-events: inherit;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-top-content .header-info .info-item {
    border: 0;
    padding: 0 10px 10px 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-top-content {
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-top {
    padding: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-top {
    display: none;
  }
}

.header-bottom {
  padding: 0 15px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-bottom {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-bottom {
    padding: 15px 0 0 0;
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  position: relative;
}

.site_logo {
  padding: 17px 0;
}
.site_logo .logo {
  display: inline-block;
  max-width: 145px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .site_logo {
    padding: 15px 0;
  }
}

.menu-area {
  gap: 25px;
}

.mainmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.mainmenu ul > li {
  position: relative;
  z-index: 1;
}
.mainmenu ul > li > a {
  position: relative;
  font-size: 16px;
  color: var(--empe-color-text-body);
  display: block;
  padding: 32px 0;
  font-weight: var(--empe-fw-medium);
  line-height: 1;
}
.mainmenu ul > li.menu-item-has-children > a, .mainmenu ul > li.has-dropdown > a {
  padding-right: 18px;
}
.mainmenu ul > li.menu-item-has-children > a::after, .mainmenu ul > li.has-dropdown > a::after {
  content: "\e91b";
  font-family: var(--empe-fonticon);
  color: inherit;
  font-size: 12px;
  position: absolute;
  top: 35px;
  right: 0;
}
.mainmenu ul > li.menu-item-has-children:hover > a::after, .mainmenu ul > li.has-dropdown:hover > a::after {
  transform: rotate(-180deg);
}
.mainmenu ul > li.current-menu-ancestor > a, .mainmenu ul > li.current-menu-item > a, .mainmenu ul > li:hover > a {
  color: var(--empe-color-theme-primary);
}
.mainmenu ul > li.current-menu-ancestor > a::after, .mainmenu ul > li.current-menu-item > a::after, .mainmenu ul > li:hover > a::after {
  color: var(--empe-color-theme-primary);
}
.mainmenu ul > li.current-menu-ancestor > a::before, .mainmenu ul > li.current-menu-item > a::before, .mainmenu ul > li:hover > a::before {
  opacity: 1;
  visibility: visible;
}
.mainmenu ul > li > .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  top: 100%;
  left: 0;
  z-index: 99;
  text-align: left;
  background-color: var(--empe-color-theme-bg);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  gap: 0;
  padding: 10px 0;
  pointer-events: none;
  transition: 0.4s;
}
.mainmenu ul > li > .sub-menu > li {
  display: block;
  width: 100%;
}
.mainmenu ul > li > .sub-menu > li > a {
  position: relative;
  padding: 10px 20px;
  display: block;
  color: var(--empe-color-text-body);
}
.mainmenu ul > li > .sub-menu > li > a::before {
  display: none;
}
.mainmenu ul > li > .sub-menu > li:last-child {
  padding-bottom: 0;
}
.mainmenu ul > li > .sub-menu > li.menu-item-has-children > a::after, .mainmenu ul > li > .sub-menu > li.has-dropdown > a::after {
  top: 15px;
  right: 15px;
  color: var(--empe-color-text-body);
  transform: rotate(-90deg);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a, .mainmenu ul > li > .sub-menu > li.current-menu-item > a, .mainmenu ul > li > .sub-menu > li:hover > a {
  color: var(--empe-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::before, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::before, .mainmenu ul > li > .sub-menu > li:hover > a::before {
  opacity: 1;
  visibility: visible;
  width: 14px;
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::after, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::after, .mainmenu ul > li > .sub-menu > li:hover > a::after {
  color: var(--empe-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li:hover > a {
  padding-inline-start: 25px;
}
.mainmenu ul > li > .sub-menu > li > .sub-menu {
  left: 100%;
  top: -10px;
}
.mainmenu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: all 0.5s ease;
  pointer-events: inherit;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mainmenu ul {
    gap: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul {
    gap: 16px;
  }
}

.header-search {
  line-height: 1;
  position: relative;
}
.header-search .search {
  color: var(--empe-color-common-white);
  font-size: 16px;
  font-weight: var(--empe-fw-medium);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--empe-color-theme-dark);
}
.header-search .search i {
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
}
.header-search .search.search-hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
}
.header-search .search:hover i {
  animation: bellShake 1.5s ease;
}

.header-button .tj-primary-btn {
  padding: 5px 5px 5px 25px;
}
.header-button .tj-primary-btn .btn-icon {
  width: 38px;
  height: 38px;
}
.header-button .tj-primary-btn:not(:hover) .btn-icon::before {
  width: 38px;
}

.header-right-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu_bar {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  left: 0;
  margin-left: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.menu_bar span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--empe-color-common-white);
  margin-right: auto;
  backface-visibility: hidden;
  transition: all 0.3s;
}
.menu_bar span:last-child, .menu_bar span:first-child {
  width: 25px;
}
.menu_bar.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--empe-color-theme-primary);
  border-radius: 7px;
}
.menu_bar.mobile_menu_bar span {
  background-color: var(--empe-color-common-white);
}
.menu_bar:hover span {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu_bar {
    margin-left: 0;
  }
}
.menu_bar.menu_offcanvas {
  width: 60px;
  gap: 12px;
}
.menu_bar.menu_offcanvas span {
  width: 60px;
}
.menu_bar.menu_offcanvas:hover span {
  animation: linehover 0.6s linear;
}
.menu_bar.menu_offcanvas:hover span:last-child {
  animation-delay: 0.12s;
}

.cubes {
  display: flex;
  flex-wrap: wrap;
  width: 48px;
  height: 48px;
  gap: 2px;
  padding: 13px;
  background-color: var(--empe-color-theme-dark);
  border-radius: 50%;
}
.cubes span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 2px solid var(--empe-color-common-white);
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.cubes:hover span {
  border-radius: 20px;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-section {
  background-color: var(--empe-color-theme-bg);
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  padding-top: 138px;
}
.tj-footer-section .bg-img {
  opacity: 0.15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}
.tj-footer-section::after, .tj-footer-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(75px);
  filter: blur(75px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-section::after, .tj-footer-section::before {
    width: 300px;
    height: 300px;
  }
}
.tj-footer-section::after {
  top: auto;
  right: auto;
  left: -100px;
  bottom: -100px;
}
.tj-footer-section.footer-2 {
  background-color: transparent;
  padding: 0;
  overflow: hidden;
}
.tj-footer-section.footer-3 {
  background-color: transparent;
  padding: 0;
  overflow: hidden;
}
.tj-footer-section.footer-3::after, .tj-footer-section.footer-3::before {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-section {
    border-radius: 12px;
  }
}

.footer-main-area {
  position: relative;
  padding: 90px 0 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-main-area {
    padding: 70px 0 60px;
  }
}

.footer-logo {
  max-width: 169px;
  width: 100%;
}

.download-buttons {
  max-width: 150px;
  width: 100%;
}
.download-buttons a {
  display: block;
  max-width: 148px;
  width: 100%;
  border: 6px;
  margin-bottom: 15px;
}
.download-buttons a:hover {
  transform: translateY(-3px);
}

.footer-widget .footer-text {
  max-width: 280px;
  width: 100%;
  color: var(--empe-color-text-body-2);
}
.footer-widget .footer-text p {
  margin: 25px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .footer-text p {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .footer-text {
    max-width: 100%;
  }
}
.footer-widget .wp-block-heading,
.footer-widget .wp-block-search__label,
.footer-widget .wp-block-categories__label,
.footer-widget .wp-block-archives__label,
.footer-widget .title {
  color: var(--empe-color-heading-primary);
  font-size: 20px;
  font-weight: var(--empe-fw-sbold);
  font-family: var(--empe-ff-heading), sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.4;
  display: block;
  margin-bottom: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .wp-block-heading,
  .footer-widget .wp-block-search__label,
  .footer-widget .wp-block-categories__label,
  .footer-widget .wp-block-archives__label,
  .footer-widget .title {
    margin-bottom: 18px;
  }
}
.footer-widget.subscription-widget-2 .title {
  letter-spacing: -0.02em;
}
.footer-widget.subscription-widget-2 .subscribe-form input[type=email] {
  outline-color: var(--empe-color-border-1);
}
.footer-widget.subscription-widget-2 .subscribe-form input[type=email]:focus {
  outline-color: var(--empe-color-theme-primary);
}
.footer-widget.subscription_widget {
  max-width: 416px;
  width: 100%;
}
.footer-widget.subscription_widget .title {
  max-width: 252px;
  width: 100%;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 22px;
}
.footer-widget.subscription_widget .title span {
  color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.subscription_widget .title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.subscription_widget .title {
    font-size: 24px;
  }
}
.footer-widget.subscription_widget .subscribe_form {
  position: relative;
  z-index: 1;
}
.footer-widget.subscription_widget .subscribe_form input[type=email] {
  min-height: 72px;
  padding: 22px 70px 22px 20px;
}
.footer-widget.subscription_widget .subscribe_form button[type=submit],
.footer-widget.subscription_widget .subscribe_form input[type=submit] {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 62px;
  height: calc(100% - 10px);
  background-color: var(--empe-color-theme-primary);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: var(--empe-color-theme-dark);
  transition: all 0.3s ease-in-out 0s;
}
.footer-widget.subscription_widget .subscribe_form button[type=submit] i,
.footer-widget.subscription_widget .subscribe_form button[type=submit] svg,
.footer-widget.subscription_widget .subscribe_form input[type=submit] i,
.footer-widget.subscription_widget .subscribe_form input[type=submit] svg {
  display: inline-flex;
  line-height: 1;
}
.footer-widget.subscription_widget .subscribe_form button[type=submit] svg,
.footer-widget.subscription_widget .subscribe_form input[type=submit] svg {
  max-width: 24px;
  height: auto;
}
.footer-widget.subscription_widget .subscribe_form button[type=submit]:hover i,
.footer-widget.subscription_widget .subscribe_form button[type=submit]:hover svg,
.footer-widget.subscription_widget .subscribe_form input[type=submit]:hover i,
.footer-widget.subscription_widget .subscribe_form input[type=submit]:hover svg {
  animation: bellShake 1s linear infinite;
}
.footer-widget.subscription_widget .download_buttons {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-widget.subscription_widget .download_buttons > a {
  display: inline-flex;
  max-width: 121px;
  width: 100%;
}
.footer-widget.subscription_widget .download_buttons > a:hover {
  transform: translateY(-3px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.subscription_widget .subscribe_form input[type=email] {
    min-height: 64px;
    padding: 16px 62px 16px 20px;
  }
  .footer-widget.subscription_widget .subscribe_form button[type=submit],
  .footer-widget.subscription_widget .subscribe_form input[type=submit] {
    width: 54px;
  }
  .footer-widget.subscription_widget .download_buttons {
    margin-top: 20px;
  }
}
.footer-widget.hourly_widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 11px;
}
.footer-widget.hourly_widget ul > li {
  display: flex;
  align-items: start;
  gap: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--empe-color-text-body);
}
.footer-widget.hourly_widget ul > li .key {
  min-width: 100px;
}
.footer-widget.hourly_widget ul > li .value.off {
  color: var(--empe-color-theme-primary);
}

.widget-nav-menu ul {
  list-style: none;
}
.widget-nav-menu ul li {
  padding: 6px 0;
}
.widget-nav-menu ul li:first-child {
  padding-top: 0;
}
.widget-nav-menu ul li a {
  color: var(--empe-color-text-body-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.widget-nav-menu ul li a:hover {
  color: var(--empe-color-theme-primary);
  transform: translateX(5px);
}
.widget-nav-menu ul li a .badge {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--empe-color-theme-bg);
  background-color: var(--empe-color-theme-primary);
  border-radius: 50px;
  padding: 3px 6px 4px;
  animation: zoomEffect2 1.5s infinite linear;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-nav-menu {
    margin-top: 30px;
  }
}

.footer-1 .widget-contact {
  max-width: 230px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-1 .footer_widget_wrapper .footer-widget {
    max-width: calc(50% - 15px);
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-1 .footer_widget_wrapper .footer-widget {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}

.footer-2 {
  border-start-start-radius: 0;
  border-start-end-radius: 0;
}
.footer-2 .tj_footer_inner {
  background-color: var(--empe-color-theme-bg);
  position: relative;
  z-index: 1;
}
.footer-2 .tj_footer_inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 67%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(400px);
  filter: blur(132px);
  z-index: -1;
  pointer-events: none;
  -webkit-transform: translate(0, 81%);
  -ms-transform: translate(0, 81%);
  transform: translate(0, 85%);
}
.footer-2 .widget-nav-menu ul li a {
  color: var(--empe-color-text-body);
}
.footer-2 .widget-nav-menu ul li a:hover {
  color: var(--empe-color-theme-primary);
}
.footer-2 .tj_footer_bottom_logo {
  text-align: center;
  margin-top: 30px;
}
.footer-2 .footer_widget_area {
  padding-top: 120px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--empe-color-border-1);
}
.footer-2 .footer_bottom_area {
  padding: 20px 0;
}
.footer-2 .footer_widget_wrapper .subscription-widget-2 {
  max-width: 350px;
  width: 100%;
}
.footer-2 .footer_widget_wrapper .subscription-widget-2 .subscribe-form {
  max-width: 350px;
  width: 100%;
}
.footer-2 .footer_widget_wrapper .subscription-widget-2 .title {
  max-width: 250px;
  width: 100%;
  font-size: 32px;
  line-height: 1.25;
  margin-bottom: 22px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-2 .footer_widget_wrapper .subscription-widget-2 .title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-2 .footer_widget_wrapper .subscription-widget-2 .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-2 .footer_widget_area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .footer-2 .footer_widget_wrapper .footer-widget {
    max-width: calc(50% - 15px);
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-2 .footer_widget_area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-2 .footer_widget_wrapper .footer-widget {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-2 .copyright-text {
    order: 1;
  }
  .footer-2 .copyright-menu {
    order: 2;
  }
  .footer-2 .footer_socials {
    order: 3;
  }
}

.footer-3 .tj_footer_inner {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
.footer-3 .tj_footer_inner::before {
  content: "";
  position: absolute;
  top: -500px;
  left: 50%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(75px);
  filter: blur(75px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-3 .tj_footer_inner::before {
    top: -150px;
    width: 300px;
    height: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-3 .tj_footer_inner {
    border-radius: 12px;
  }
}
.footer-3 .widget-nav-menu ul li a {
  color: var(--empe-color-text-body);
}
.footer-3 .widget-nav-menu ul li a:hover {
  color: var(--empe-color-theme-primary);
}
.footer-3 .tj_footer_bottom_logo {
  text-align: center;
  margin-top: 30px;
  transform: perspective(9000px) rotateX(-90deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-3 .tj_footer_bottom_logo {
    transform: perspective(9000px) rotateX(-20deg);
  }
}
.footer-3 .footer_widget_area {
  padding-top: 120px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--empe-color-border-1);
}
.footer-3 .footer_bottom_area {
  padding: 20px 0;
}
.footer-3 .footer_widget_wrapper .subscription_widget {
  max-width: 416px;
  width: 100%;
}
.footer-3 .footer_widget_wrapper .hourly_widget {
  max-width: 260px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-3 .tj_footer_bottom_logo {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-3 .footer_widget_area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .footer-3 .footer_widget_wrapper .footer-widget {
    max-width: calc(50% - 15px);
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-3 .footer_widget_area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-3 .footer_widget_wrapper .footer-widget {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-3 .copyright-text {
    order: 1;
  }
  .footer-3 .copyright-menu {
    order: 2;
  }
  .footer-3 .footer_socials {
    order: 3;
  }
}

.footer_widget_wrapper {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-contact-info {
  max-width: 230px;
  width: 100%;
}
.footer-contact-info .contact-item {
  margin-bottom: 14px;
}
.footer-contact-info .contact-item:last-child {
  margin-bottom: 0;
}
.footer-contact-info .contact-item span {
  color: var(--empe-color-text-body-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-contact-info .contact-item span i {
  font-size: 20px;
  color: var(--empe-color-theme-primary);
  display: inline-flex;
  line-height: 1;
}
.footer-contact-info .contact-item a {
  color: var(--empe-color-text-body-2);
  display: inline-flex;
  margin-bottom: 8px;
}
.footer-contact-info .contact-item a:last-child {
  margin-bottom: 0;
}
.footer-contact-info .contact-item a:hover {
  color: var(--empe-color-theme-primary);
}

.tj-copyright-area {
  border-top: 1px solid var(--empe-color-border-1);
  position: relative;
  z-index: 1;
}
.tj-copyright-area::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: 350px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(75px);
  filter: blur(75px);
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-copyright-area::before {
    right: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-copyright-area::before {
    display: none;
  }
}

.copyright-content-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area {
    gap: 14px;
  }
}

.copyright-text {
  color: var(--empe-color-text-body-2);
}
.copyright-text p:last-child {
  margin: 0;
}
.copyright-text a {
  color: var(--empe-color-heading-primary);
}
.copyright-text a:hover {
  color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-text {
    width: 100%;
    text-align: center;
  }
}

.copyright-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.copyright-menu ul li {
  position: relative;
  margin-right: 10px;
  padding-right: 14px;
  z-index: 1;
}
.copyright-menu ul li::before {
  content: "";
  background-color: var(--empe-color-theme-dark-3);
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.copyright-menu ul li a {
  font-size: 16px;
  color: var(--empe-color-text-body-2);
}
.copyright-menu ul li a:hover {
  color: var(--empe-color-theme-primary);
}
.copyright-menu ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.copyright-menu ul li:last-child::before {
  display: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-menu {
    width: 100%;
    text-align: center;
  }
}

.footer_socials {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.footer_socials li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--empe-color-heading-primary);
  color: var(--empe-color-theme-bg);
  font-size: 18px;
  line-height: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
  opacity: 0.15;
}
.footer_socials li a:hover {
  opacity: 1;
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  transform: translateY(-4px);
}

/* !END: Theme Footer CSS */
/* START: Search CSS */
.search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--empe-color-theme-bg);
  border-radius: 0 0 24px 24px;
  z-index: 100;
  padding-top: 120px;
  padding-bottom: 130px;
  opacity: 0;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.5s;
  z-index: 9999;
}
.search_popup .search_close {
  position: absolute;
  top: 36px;
  right: 36px;
}
.search_popup .search_close .search_close_btn {
  font-size: 24px;
  line-height: 1;
  color: var(--empe-color-common-white);
}
.search_popup .search_close .search_close_btn svg {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.search_popup .search_close .search_close_btn svg path {
  fill: var(--empe-color-common-white);
}
.search_popup .search_close .search_close_btn svg:hover {
  transform: rotate(90deg);
}
.search_popup .search_close .search_close_btn svg:hover path {
  fill: var(--empe-color-theme-primary);
}
.search_popup.search-opened {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
}
.search_popup.search-opened .search_form .search_input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}
.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  transition-delay: 0.5s;
}

.tj_search_wrapper {
  max-width: 720px;
  margin: 0 auto;
}
.search_form form .search_input {
  position: relative;
  z-index: 1;
}
.search_form form .search_input .title {
  color: var(--empe-color-common-white);
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
.search_form form .search_input .search-box {
  position: relative;
  z-index: 1;
}
.search_form .search_input .search-box input[type=search] {
  width: 100%;
  font-family: var(--empe-ff-body), sans-serif;
  color: var(--empe-color-common-white);
  border: 1px solid var(--empe-color-border-1);
  background: var(--empe-color-theme-dark);
  padding: 20px 75px 20px 24px;
  border-radius: 10px;
}
.search_form .search_input .search-box input[type=search]::placeholder {
  color: var(--empe-color-text-body);
}
.search_form .search_input .search-box input[type=search]:focus {
  border-color: var(--empe-color-theme-primary);
}
.search_form .search_input .search-box [type=submit],
.search_form .search_input .search-box input[type=submit] {
  color: var(--empe-color-heading-primary);
  font-size: 24px;
  line-height: 1;
  max-width: 62px;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.search_form .search_input .search-box [type=submit]::before,
.search_form .search_input .search-box input[type=submit]::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 20px;
  height: 28px;
  border-inline-start: 1px solid var(--empe-color-border-1);
}
.search_form .search_input .search-box [type=submit] i,
.search_form .search_input .search-box input[type=submit] i {
  display: inline-flex;
  line-height: 1;
}

.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: 99;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  transition: all 0.5s ease-in-out 0.3s;
}
.search-popup-overlay.opened {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* !END: Search CSS */
/* !START: hamburger CSS */
.hamburger-area {
  position: fixed;
  right: -490px;
  top: 15px;
  width: 450px;
  height: calc(100% - 30px);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 1s;
  z-index: 9999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  border-radius: 12px;
}
.hamburger-area::-webkit-scrollbar {
  display: none;
}
.hamburger-area.opened {
  right: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hamburger-area.opened {
    right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hamburger-area {
    top: 0;
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 575px) {
  .hamburger-area {
    width: 320px;
  }
}
.hamburger_bg {
  background-color: var(--empe-color-theme-dark);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.hamburger_bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--empe-color-theme-dark);
  opacity: 0.6;
  z-index: -1;
}
.hamburger_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 40px;
  overflow: auto;
  height: 100%;
}
.hamburger_wrapper::before {
  content: "";
  position: absolute;
  top: 3%;
  right: 3%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(50px);
  filter: blur(50px);
  opacity: 0.26;
  z-index: -1;
  backdrop-filter: blur(10px);
}
@media (max-width: 575px) {
  .hamburger_wrapper {
    padding: 40px 20px;
  }
}
.hamburger_top {
  margin-bottom: 30px;
}
.hamburger_close_btn {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  color: var(--empe-color-common-white);
}
.hamburger_close_btn svg {
  width: 22px;
  height: 22px;
  transition: all 0.4s ease-in-out;
}
.hamburger_close_btn svg path {
  fill: var(--empe-color-common-white);
}
.hamburger_close_btn:hover {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.hamburger_search {
  position: relative;
  margin-bottom: 30px;
}
.hamburger_search select,
.hamburger_search .nice-select,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.hamburger_search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 65px 0 16px;
  background: var(--empe-color-theme-bg);
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--empe-ff-body), sans-serif;
  color: var(--empe-color-text-body);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
}
.hamburger_search select::placeholder,
.hamburger_search .nice-select::placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.hamburger_search input::placeholder {
  color: var(--empe-color-text-body);
}
.hamburger_search select:focus,
.hamburger_search .nice-select:focus,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]):focus,
.hamburger_search input:focus {
  border-color: var(--empe-color-theme-primary);
}
.hamburger_search button {
  position: absolute;
  height: 58px;
  width: 58px;
  top: 50%;
  right: 0;
  font-size: 24px;
  color: var(--empe-color-heading-primary);
  transform: translateY(-50%);
}
.hamburger_search button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 22px;
  border-left: 1px solid var(--empe-color-border-1);
  transform: translateY(-50%);
}
.hamburger_menu .mean-container .mean-bar {
  background: transparent;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.hamburger_menu .mean-container .mean-bar * {
  box-sizing: border-box;
}
.hamburger_menu .mean-nav {
  background: transparent;
  margin-top: 0;
  overflow: hidden;
}
.hamburger_menu .mean-nav > ul {
  display: block !important;
}
.hamburger_menu .mean-nav > ul > li:first-child > a {
  border-top: none;
}
.hamburger_menu .mean-nav ul li {
  position: relative;
}
.hamburger_menu .mean-nav ul li a {
  color: var(--empe-color-common-white);
  width: 100%;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.5px;
  font-family: var(--empe-ff-body), sans-serif;
  font-weight: var(--empe-fw-medium);
  text-transform: capitalize;
  padding: 18px 0;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a:hover {
  color: var(--empe-color-theme-primary);
}
.hamburger_menu .mean-nav ul li a.mean-expand {
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 25px;
  position: absolute;
  top: 10px;
  right: 0;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a.mean-expand:hover {
  color: var(--empe-color-common-white);
}
.hamburger_menu .mean-nav ul li a.mean-expand i {
  font-size: 12px;
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--empe-color-theme-primary);
  transform: rotate(180deg);
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(180deg);
}
.hamburger_menu .mean-nav ul li .sub-menu li {
  padding-left: 25px;
  position: relative;
}
.hamburger_menu .mean-nav ul li .sub-menu li a {
  width: 100%;
  padding: 18px 0;
}
.hamburger_menu .mean-nav ul li .sub-menu li a.mean-expand {
  padding: 0;
  width: 30px;
}
.hamburger_menu .mean-nav ul li.dropdown-opened > a {
  color: var(--empe-color-theme-primary);
}
.hamburger-socials .social-links.style-2 a {
  background-color: var(--empe-color-theme-bg);
}

.tj-offcanvas-area {
  position: fixed;
  right: -490px;
  top: 15px;
  width: 470px;
  height: calc(100% - 30px);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.5s;
  z-index: 9999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  border-radius: 12px;
}
.tj-offcanvas-area::-webkit-scrollbar {
  display: none;
}
.tj-offcanvas-area.opened {
  right: 15px;
}

.offcanvas-text {
  margin-bottom: 40px;
}
.offcanvas-text p {
  color: var(--empe-color-text-body);
  margin-bottom: 0;
}

.hamburger-search-area {
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hamburger-search-area {
    margin-bottom: 30px;
  }
}

.hamburger-title {
  color: var(--empe-color-common-white);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.hamburger-infos {
  margin-bottom: 45px;
}
.hamburger-infos .contact-info .contact-item:not(:last-child) {
  padding: 5px 0;
  border: 0;
}
.hamburger-infos .contact-info .contact-item:first-child {
  padding-top: 0;
}
.hamburger-infos .contact-info .contact-item:last-child {
  padding-top: 5px;
}

.hamburger_logo .mobile_logo {
  display: inline-block;
  max-width: 136px;
  width: 100%;
}

.menu-bar button {
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transform-origin: center center;
  transform: rotate(0deg);
  cursor: pointer;
  transition: transform 300ms ease;
}
.menu-bar button span {
  height: 3px;
  width: 35px;
  display: block;
  background: var(--empe-color-common-white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin-left: auto;
}
.menu-bar button span:nth-child(2) {
  width: 40px;
  transition-delay: 200ms;
}
.menu-bar button span:nth-child(3) {
  width: 30px;
}
.menu-bar button span:nth-child(4) {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 3px;
  height: 0;
  transition: height 400ms;
}
.menu-bar.style-2 button span {
  background: var(--empe-color-heading-primary);
}
.menu-bar.menu-bar-toggeled button {
  transform: rotate(45deg);
  transition-delay: 400ms;
}
.menu-bar.menu-bar-toggeled button span:nth-child(1) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(3) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(4) {
  height: 40px;
  transition: height 200ms ease;
  transition-delay: 200ms;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .menu-bar {
    margin-left: 0;
  }
}

.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  backdrop-filter: blur(10px);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/* !END: hamburger CSS */
/**----------------------------------------
START: Preloader CSS
----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: var(--empe-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--empe-color-theme-dark) transparent var(--empe-color-theme-dark);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* !END: Preloader CSS */
/**----------------------------------------
START: Back to top CSS
----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 60px;
  bottom: 0;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .back-to-top-wrapper {
    right: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-wrapper {
    right: 15px;
  }
}
.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}
.back-to-top-btn-show:hover {
  transform: translateY(-6px);
}
.back-to-top-btn-show:hover .back_to_top_icon i {
  transform: translateY(-40px);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .back-to-top-btn-show {
    right: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .back-to-top-btn-show {
    right: 30px;
    bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-btn-show {
    bottom: 25px;
  }
}
.back-to-top-btn {
  color: var(--empe-color-heading-primary);
  line-height: 1;
  font-weight: var(--empe-fw-sbold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.back-to-top-btn .back_to_top_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 10px;
  color: var(--empe-color-theme-bg);
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  text-shadow: 0 40px 0 var(--empe-color-theme-dark);
  overflow: hidden;
}
.back-to-top-btn .back_to_top_text {
  font-weight: var(--empe-fw-medium);
  line-height: 1;
  letter-spacing: 0%;
  text-align: right;
  writing-mode: vertical-lr;
  transform: scale(-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-btn .back_to_top_text {
    display: none;
  }
}

/* !END: Back to top CSS */
/**----------------------------------------
START: Error 404 CSS
----------------------------------------*/
.tj-error-section {
  padding: 70px 0 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-error-section {
    padding: 70px 0 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-error-section {
    padding: 70px 0;
  }
}
.tj-error-content {
  position: relative;
  max-width: 1023px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.tj-error-content .error-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 1023px;
}
@media (max-width: 575px) {
  .tj-error-content .error-img {
    padding: 0 20px;
  }
}
.tj-error-content .error-title {
  font-size: 74px;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-error-content .error-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-error-content .error-title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .tj-error-content .error-title {
    font-size: 40px;
  }
}
.tj-error-content .error-desc {
  max-width: 730px;
  margin: 20px auto 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-error-content .error-desc {
    max-width: 650px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-error-content .error-desc {
    max-width: 500px;
  }
}
.tj-error-content .error-btn {
  margin-top: 35px;
}
@media (max-width: 575px) {
  .tj-error-content .error-btn {
    margin-top: 25px;
  }
}

/* !END: Error 404 CSS */
/**----------------------------------------
START: Heading CSS
----------------------------------------*/
.sec-heading {
  width: 100%;
  margin-bottom: 52px;
}
.sec-heading-centered {
  max-width: 550px;
  text-align: center;
  margin-inline-start: auto;
  margin-inline-end: auto;
}
.sec-heading-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading-inner {
    gap: 15px;
  }
}
.sec-heading-inner .sec-title {
  max-width: 550px;
  width: 100%;
}
.sec-heading .sec-title {
  margin-bottom: 0;
}
.sec-heading .sec-title span {
  color: var(--empe-color-theme-dark-2);
}
.sec-heading .sec-title span img {
  max-width: 140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .sec-heading .sec-title span img {
    max-width: 112px;
  }
}
@media (max-width: 575px) {
  .sec-heading .sec-title span img {
    max-width: 90px;
  }
}
.sec-heading .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--empe-color-theme-primary);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: var(--empe-fw-medium);
  margin-bottom: 18px;
  position: relative;
  transition: none;
}
.sec-heading .sub-title i {
  color: var(--empe-color-theme-primary);
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading .sub-title {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading .sub-title {
    font-size: 13px;
  }
}
.sec-heading.style-2 .sec-title {
  display: block;
}
.sec-heading.style-2 .sec-title span {
  color: var(--empe-color-theme-primary);
}
.sec-heading.style-2 .sub-title {
  color: var(--empe-color-text-body);
}
.sec-heading.style-2 .sub-title span {
  color: var(--empe-color-theme-primary);
  margin-inline-end: 5px;
}
.sec-heading.style-3 .sec-title {
  display: block;
}
.sec-heading.style-3 .sec-title span {
  color: var(--empe-color-theme-primary);
}
.sec-heading.style-3 .sub-title {
  color: var(--empe-color-text-body);
  font-size: 16px;
  text-transform: inherit;
  letter-spacing: 0;
  border: 1px solid var(--empe-color-border-1);
  background-color: rgba(250, 251, 251, 0.08);
  padding: 5px 10px;
  border-radius: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading {
    margin-bottom: 35px;
  }
}

/* !END: Heading CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.tj-banner-section {
  position: relative;
  z-index: 1;
  margin: 0 30px;
  background-color: var(--empe-color-theme-bg);
  border-radius: 20px;
  padding-top: 214px;
  padding-bottom: 60px;
  min-height: 865px;
}
.tj-banner-section .hero-bg {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section {
    margin: 0 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section {
    min-height: 645px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section {
    padding-top: 160px;
    border-radius: 12px;
  }
}

.banner-content {
  max-width: 540px;
  width: 100%;
  padding-top: 40px;
  margin-inline-start: -15px;
  display: flex;
  flex-direction: column;
}
.banner-content .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--empe-color-theme-primary);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: var(--empe-fw-medium);
  margin-bottom: 15px;
  position: relative;
  transition: none;
}
.banner-content .sub-title i {
  font-size: 16px;
}
.banner-content .banner-title {
  margin-bottom: 0;
}
.banner-content .btn-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.banner-content .btn-area .number {
  color: var(--empe-color-common-white);
  font-size: 18px;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  display: inline-flex;
  align-items: center;
  line-height: 1;
  gap: 6px;
}
.banner-content .btn-area .number i {
  color: var(--empe-color-theme-primary);
  font-size: 24px;
  display: inline-flex;
}
.banner-content .btn-area .number span {
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 100%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  display: inline;
}
.banner-content .btn-area .number:hover span {
  background-size: 100% 1px;
}
.banner-content .list-area {
  margin-top: 191px;
}
.banner-content .list-area .list-style-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.banner-content .list-area .list-style-1 li {
  display: inline-flex;
  margin: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .banner-content .list-area {
    margin-top: 160px;
    padding-inline-start: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content .list-area {
    margin-top: 120px;
    padding-inline-start: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content .list-area {
    margin: 30px 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content {
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content {
    padding-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content {
    padding-top: 0;
  }
}

.banner-img-area {
  margin-inline-start: 76px;
  position: relative;
}
.banner-img-area::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 450px;
  height: 500px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(75px);
  filter: blur(75px);
  opacity: 0.2;
  z-index: -1;
  backdrop-filter: blur(10px);
}
.banner-img-area .banner-img {
  max-width: 502px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/hero-img-shape.svg');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: top left;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-img-area .banner-img {
    max-width: 480px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-img-area .banner-img {
    max-width: 480px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-img-area .banner-img {
    max-width: 460px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-img-area .banner-img {
    mask-image: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-img-area .banner-img {
    border-radius: 12px;
  }
}
.banner-img-area .trusted {
  max-width: 205px;
  width: 100%;
  background-color: rgba(250, 251, 251, 0.08);
  border: 1px solid rgba(250, 251, 251, 0.08);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  padding: 20px;
  display: inline-flex;
  gap: 8px;
  border-radius: 8px;
  position: absolute;
  top: 45%;
  inset-inline-start: -155px;
  transform: translateY(-50%);
  z-index: 2;
}
.banner-img-area .trusted .icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  color: var(--empe-color-theme-dark);
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.banner-img-area .trusted .text {
  color: var(--empe-color-common-white);
  font-weight: var(--empe-fw-medium);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .banner-img-area .trusted {
    inset-inline-start: -125px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-img-area .trusted {
    inset-inline-start: -70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-img-area .trusted {
    inset-inline-start: -70px;
    top: 30%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-img-area .trusted {
    inset-inline-start: -60px;
  }
}
@media (max-width: 575px) {
  .banner-img-area .trusted {
    max-width: 195px;
    padding: 15px;
    inset-inline-start: 0;
    top: 35%;
  }
}
.banner-img-area .customers-box {
  max-width: 309px;
  width: 100%;
  position: absolute;
  inset-inline-end: -125px;
  bottom: -22px;
  border: 1px solid var(--empe-color-border-1);
}
.banner-img-area .customers-box .rating-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  padding: 25px 0 12px 0;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .banner-img-area .customers-box {
    inset-inline-end: -50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .banner-img-area .customers-box {
    max-width: 290px;
    padding: 26px 24px 24px 24px;
    inset-inline-end: -15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-img-area .customers-box {
    padding: 25px 20px 20px 20px;
    inset-inline-end: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-img-area .customers-box {
    max-width: 245px;
    bottom: -25px;
    inset-inline-end: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-img-area .customers-box {
    max-width: 280px;
    bottom: -18px;
    inset-inline-end: -4px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-img-area .customers-box {
    inset-inline-end: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-img-area .customers-box {
    max-width: 502px;
    position: unset;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .banner-img-area .customers-number {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-img-area .customers-number {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1700px), only screen and (min-width: 1400px) and (max-width: 1599px), (max-width: 575px) {
  .banner-img-area {
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-img-area {
    max-width: 615px;
    width: 100%;
    margin-inline-start: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-img-area {
    margin-inline-start: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-img-area {
    max-width: 630px;
    width: 100%;
    margin-inline-start: 70px;
  }
}

.banner-scroll {
  position: absolute;
  inset-inline-start: 30px;
  bottom: 30px;
  z-index: 5;
}
.banner-scroll .scroll-down {
  color: var(--empe-color-text-body);
  line-height: 1;
  font-weight: var(--empe-fw-medium);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.banner-scroll .scroll-down .text {
  writing-mode: vertical-lr;
  transform: scale(-1);
}
.banner-scroll .scroll-down .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 22px;
  background-color: rgba(250, 251, 251, 0.08);
  border-radius: 50%;
  overflow: hidden;
  text-shadow: 0 -30px 0 var(--empe-color-theme-dark);
}
.banner-scroll .scroll-down:hover {
  transform: translateY(6px);
}
.banner-scroll .scroll-down:hover .icon {
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
}
.banner-scroll .scroll-down:hover .icon i {
  transform: translateY(30px);
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .banner-scroll {
    inset-inline-start: 23px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-scroll {
    inset-inline-start: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-scroll {
    display: none;
  }
}

.customers-box {
  background-color: var(--empe-color-theme-dark);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 28px 24px 28px;
}
.customers ul {
  display: inline-flex;
  list-style: none;
}
.customers ul li {
  line-height: 1;
  margin-inline-start: -22px;
}
.customers ul li:first-child {
  margin-inline-start: 0;
}
.customers ul li img {
  width: 58px;
  height: 58px;
  background-color: var(--empe-color-common-white);
  border: 2px solid var(--empe-color-common-white);
  border-radius: 50%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .customers ul li img {
    width: 54px;
    height: 54px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .customers ul li img {
    width: 50px;
    height: 50px;
  }
}
.customers ul li span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 2px solid var(--empe-color-common-white);
}
.customers ul li span i {
  display: inline-flex;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .customers ul li span {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .customers ul li {
    margin-inline-start: -18px;
  }
}
.customers-number {
  color: var(--empe-color-heading-primary);
  font-size: 65px;
  line-height: 0.8;
  letter-spacing: -0.02em;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .customers-number {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .customers-number {
    font-size: 40px;
  }
}
.customers-text {
  color: var(--empe-color-text-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  margin-bottom: 0;
  font-weight: var(--empe-fw-medium);
}

.list-style-1 {
  list-style: none;
}
.list-style-1 li {
  display: flex;
  align-items: start;
  column-gap: 6px;
  color: var(--empe-color-heading-primary);
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-medium);
  margin-bottom: 16px;
}
.list-style-1 li:last-child {
  margin-bottom: 0;
}
.list-style-1 li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
  font-weight: var(--empe-fw-regular);
  color: var(--empe-color-theme-dark);
  background: var(--empe-color-theme-primary);
  border-radius: 50%;
}

.tj-banner-section-2 {
  min-height: 928px;
  margin-bottom: 316px;
  padding-top: 108px;
  overflow: visible;
  border-radius: 16px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 {
    min-height: 728px;
    margin-bottom: 240px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 {
    min-height: 628px;
    padding-top: 90px;
    margin-bottom: 226px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-2 {
    min-height: 700px;
    padding-top: 60px;
    margin-bottom: 200px;
    border-radius: 12px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-banner-section-2 {
    margin-bottom: 120px;
  }
}
@media (max-width: 575px) {
  .tj-banner-section-2 {
    min-height: 550px;
    margin-bottom: 120px;
  }
}
.tj-banner-section-2 .hero-bg {
  opacity: 1;
  border-radius: 16px;
}
.tj-banner-section-2 .banner-content {
  max-width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 0;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-2 .banner-content {
    flex-wrap: wrap;
  }
}
.tj-banner-section-2 .banner-content .banner-title {
  max-width: 720px;
  font-size: 84px;
  line-height: 1.048;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-banner-section-2 .banner-content .banner-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-banner-section-2 .banner-content .banner-title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .tj-banner-section-2 .banner-content .banner-title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-2 .banner-content .banner-title {
    max-width: 700px;
  }
}
.tj-banner-section-2 .banner-content .banner-title span {
  color: var(--empe-color-theme-primary);
}
.tj-banner-section-2 .banner-content .btn-area {
  max-width: 327px;
  gap: 23px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-2 .banner-content .btn-area {
    max-width: 500px;
  }
}
.tj-banner-section-2 .desc span {
  color: var(--empe-color-theme-primary);
  padding-left: 50px;
}
.tj-banner-section-2 .banner-img-area {
  max-width: 1668px;
  padding-top: 108px;
  margin: 0 auto -376px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-img-area {
    margin: 0 70px -300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section-2 .banner-img-area {
    max-width: calc(100% - 120px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-img-area {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-banner-section-2 .banner-img-area {
    margin: 0 auto -300px;
    padding-top: 70px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-2 .banner-img-area {
    margin: 0 15px -300px;
    padding-top: 70px;
  }
}
.tj-banner-section-2 .banner-img-area::before {
  width: 300px;
  height: 300px;
  top: 0;
  right: 269px;
  left: auto;
  -webkit-filter: blur(400px);
  filter: blur(181px);
  backdrop-filter: inherit;
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-img-area::before {
    right: 174px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-2 .banner-img-area::before {
    width: 200px;
    height: 200px;
    right: 50px;
  }
}
.tj-banner-section-2 .banner-img-area .banner-img {
  mask-image: none;
  max-width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-img-area .banner-img {
    height: 445px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-banner-section-2 .banner-img-area .banner-img {
    height: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-banner-section-2 .banner-img-area .banner-img {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .tj-banner-section-2 .banner-img-area .banner-img {
    height: 250px;
    border-radius: 12px;
  }
}
.tj-banner-section-2 .banner-img-area .banner-img img {
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/hero-img-shape-2.svg');
  mask-repeat: no-repeat;
  mask-size: auto;
  mask-position: top right;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-2 .banner-img-area .banner-img img {
    mask-image: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.tj-banner-section-2 .circle-text-wrap.award-circle {
  position: absolute;
  right: 323px;
  top: 11px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section-2 .circle-text-wrap.award-circle {
    right: 325px;
    top: 20px;
    width: 170px;
    height: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-banner-section-2 .circle-text-wrap.award-circle {
    width: 158px;
    height: 158px;
    top: 20px;
    right: 20%;
  }
  .tj-banner-section-2 .circle-text-wrap.award-circle .circle-text {
    width: 130px;
    height: 130px;
  }
  .tj-banner-section-2 .circle-text-wrap.award-circle .circle-icon span {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-banner-section-2 .circle-text-wrap.award-circle {
    top: 0;
    right: 15%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-2 .circle-text-wrap.award-circle {
    width: 115px;
    height: 115px;
    right: 50px;
  }
  .tj-banner-section-2 .circle-text-wrap.award-circle .circle-text {
    width: 95px;
    height: 95px;
  }
  .tj-banner-section-2 .circle-text-wrap.award-circle .circle-icon span {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .tj-banner-section-2 .circle-text-wrap.award-circle {
    right: 15px;
  }
}
.tj-banner-section-2 .banner-scroll {
  bottom: 140px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-scroll {
    inset-inline-start: 16px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section-2 .banner-scroll {
    bottom: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-scroll {
    bottom: 30px;
  }
}

/* !END: Hero CSS */
/**----------------------------------------
START: Choose CSS
----------------------------------------*/
.tj-choose-section .sec-heading .desc {
  max-width: 250px;
  width: 100%;
  margin-bottom: 0;
}
.tj-choose-section.h9-choose .sec-heading .desc {
  max-width: 425px;
  margin: 0 auto;
  margin-top: 10px;
}

.choose-box {
  background-color: var(--empe-color-theme-bg);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}
.choose-box .choose-inner {
  border: 1px solid var(--empe-color-border-1);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  height: 100%;
  padding: 35px 28px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .choose-box .choose-inner {
    padding: 38px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .choose-box .choose-inner {
    padding: 30px 15px;
  }
}
.choose-box .choose-icon {
  color: var(--empe-color-theme-primary);
  font-size: 40px;
  line-height: 1;
  width: 80px;
  height: 80px;
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.choose-box .choose-icon i {
  line-height: 1;
  display: inline-flex;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .choose-box .choose-icon {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .choose-box .choose-icon {
    margin-bottom: 20px;
  }
}
.choose-box .title {
  margin-bottom: 18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .choose-box .title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .choose-box .title {
    max-width: 100%;
    margin-bottom: 15px;
  }
}
.choose-box .desc {
  margin-bottom: 0;
}
.choose-box:hover .choose-inner {
  border-color: var(--empe-color-theme-primary);
}
.choose-box:hover .choose-icon {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  transform: rotateY(360deg);
}

/* !END: Choose CSS */
/**----------------------------------------
START: Client CSS
----------------------------------------*/
.tj-client-section {
  position: relative;
}
.tj-client-section .client-content {
  margin-bottom: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-client-section .client-content {
    margin-bottom: 40px;
  }
}

.client-content {
  max-width: 420px;
  width: 100%;
  padding: 3px 10px;
  margin: 0 auto;
  text-align: center;
  border-radius: 40px;
  border: 1px solid var(--empe-color-border-1);
}
.client-content .sec-title {
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.client-content span {
  display: inline-flex;
  color: var(--empe-color-theme-dark);
  background-color: var(--empe-color-theme-primary);
  line-height: 1.25;
  border-radius: 50px;
  padding: 0 5px;
  position: relative;
}
@media (max-width: 575px) {
  .client-content {
    max-width: 300px;
  }
  .client-content .sec-title {
    font-size: 16px;
  }
}

.client-slider {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.client-slider::before, .client-slider::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 100%;
  background-image: linear-gradient(90deg, rgb(5, 5, 5) 0%, rgba(5, 5, 5, 0) 100%);
  top: 0;
  left: 0;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-slider::before, .client-slider::after {
    width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .client-slider::before, .client-slider::after {
    width: 200px;
  }
}
@media (max-width: 575px) {
  .client-slider::before, .client-slider::after {
    width: 100px;
  }
}
.client-slider::after {
  left: auto;
  right: 0;
  background-image: linear-gradient(-90deg, rgb(5, 5, 5) 0%, rgba(5, 5, 5, 0) 100%);
}
.client-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.client-item {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-right: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .client-item {
    padding-right: 20px;
  }
}

.client-logo {
  width: 285px;
  height: 121px;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  padding: 20px;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo {
    width: 230px;
    height: 100px;
    padding: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .client-logo {
    width: 180px;
    height: 85px;
    padding: 15px;
  }
}

/* !END: Client CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.tj-about-section {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
.tj-about-section .bg-img {
  opacity: 0.1;
  mix-blend-mode: luminosity;
}
.tj-about-section .sec-heading {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-about-section .sec-heading .sec-title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-about-section .sec-heading .sec-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section {
    border-radius: 12px;
  }
}

.bg-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-img {
  position: relative;
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/shape-2.svg');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: top left;
}
.about-img img {
  border-radius: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-img {
    mask-image: none;
  }
}

.about-left {
  max-width: 645px;
  width: 100%;
}
.about-left-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 15px;
  margin-top: -65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-left-bottom {
    margin-top: -60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-left-bottom {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-left {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-left {
    max-width: 100%;
  }
}

.experience-area {
  max-width: 250px;
  width: 100%;
  background-color: var(--empe-color-theme-primary);
  border-radius: 10px;
  padding: 24px 30px 28px 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.experience-area .exp-badge {
  position: absolute;
  top: 25px;
  right: -55px;
  width: 190px;
  font-size: 14px;
  font-weight: var(--empe-fw-sbold);
  letter-spacing: -0.02em;
  transform: rotate(45deg);
  background-color: var(--empe-color-theme-dark);
  color: var(--empe-color-common-white);
  text-align: center;
  line-height: 1;
  padding: 5px 0;
}
.experience-area .inline-content {
  color: var(--empe-color-theme-bg);
  font-size: 80px;
  margin-bottom: 15px;
}
.experience-area .inline-content sup {
  font-size: 0.6em;
  top: -0.6em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .experience-area .inline-content {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .experience-area .inline-content {
    margin-bottom: 10px;
  }
}
.experience-area .count-text {
  font-size: 16px;
  color: var(--empe-color-theme-bg);
  font-weight: var(--empe-fw-medium);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .experience-area {
    max-width: 38.5%;
    padding: 24px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .experience-area {
    max-width: 225px;
    padding: 20px 18px;
  }
}
@media (max-width: 575px) {
  .experience-area {
    max-width: 100%;
    padding: 25px 20px;
  }
}

.author-area {
  max-width: 380px;
  width: 100%;
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .author-area {
    max-width: 58.8%;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .author-area {
    max-width: calc(100% - 240px);
    padding: 0 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .author-area {
    max-width: calc(100% - 240px);
  }
}
@media (max-width: 575px) {
  .author-area {
    max-width: 100%;
  }
}
.author-area .author-info {
  max-width: 225px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 27px 15px 27px 0;
  border-right: 1px solid var(--empe-color-border-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .author-area .author-info {
    max-width: 200px;
    padding: 24px 15px 24px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .author-area .author-info {
    max-width: 100%;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--empe-color-border-1);
  }
}
@media (max-width: 400px) {
  .author-area .author-info {
    max-width: 60%;
    flex-direction: column;
    align-items: start;
  }
}
.author-area .author-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .author-area .author-img {
    width: 55px;
    height: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .author-area .author-img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .author-area .author-img {
    width: 60px;
    height: 60px;
  }
}
.author-area .author-text {
  display: flex;
  flex-direction: column;
}
.author-area .author-text .author-name {
  font-size: 20px;
  margin-bottom: 6px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .author-area .author-text .author-name {
    font-size: 18px;
  }
}
.author-area .author-text span {
  font-size: 14px;
  line-height: 1;
}
.author-area .signature {
  max-width: 93px;
  width: 100%;
  margin-inline-start: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .author-area .signature {
    max-width: 74px;
    margin-inline-start: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .author-area .signature {
    max-width: 74px;
    margin-inline-start: 0;
    padding: 20px 0;
  }
}
@media (max-width: 575px) {
  .author-area .signature {
    max-width: 74px;
  }
}

.about-content-area {
  padding: 55px 70px 64px 45px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-content-area::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/shape-1.svg');
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: bottom right;
  background-color: var(--empe-color-theme-dark);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-area::before {
    display: none;
  }
}
.about-content-area .award-circle {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-area .award-circle {
    width: 115px;
    height: 115px;
    bottom: 10px;
    inset-inline-end: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-content-area .award-circle {
    display: none;
  }
}
.about-content-area .desc {
  margin-bottom: 22px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-content-area {
    padding: 40px 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content-area {
    max-width: 645px;
    width: 100%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-area {
    padding: 40px 30px;
    background-color: var(--empe-color-theme-dark);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-content-area {
    padding: 40px 20px;
    background-color: var(--empe-color-theme-dark);
    border-radius: 12px;
  }
}

.about-funfact {
  display: flex;
  gap: 40px;
}
.about-funfact .countup-item {
  max-width: 155px;
  width: 100%;
}
.about-funfact .countup-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: -20px;
  width: 1px;
  height: calc(100% - 5px);
  border-right: 1px solid var(--empe-color-border-1);
}
.about-funfact .inline-content {
  color: var(--empe-color-theme-primary);
  font-size: 64px;
  margin-bottom: 15px;
}
.about-funfact .inline-content sup {
  font-size: 0.5em;
  top: -1.05em;
  padding-left: 4px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-funfact .inline-content {
    font-size: 54px;
  }
}
.about-funfact .count-text {
  font-size: 16px;
  color: var(--empe-color-text-body-2);
}

.circle-text-wrap.award-circle {
  width: 178px;
  height: 178px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.circle-text-wrap.award-circle .circle-text {
  width: 146px;
  height: 146px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px) {
  .circle-text-wrap.award-circle .circle-text {
    width: 130px;
    height: 130px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .circle-text-wrap.award-circle .circle-text {
    width: 95px;
    height: 95px;
  }
}
.circle-text-wrap.award-circle .circle-icon {
  font-size: 42px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px) {
  .circle-text-wrap.award-circle .circle-icon {
    font-size: 32px;
  }
  .circle-text-wrap.award-circle .circle-icon span {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .circle-text-wrap.award-circle .circle-icon {
    font-size: 26px;
  }
  .circle-text-wrap.award-circle .circle-icon span {
    width: 50px;
    height: 50px;
  }
}
.circle-text-wrap.award-circle:hover i {
  transform: rotateY(-360deg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px) {
  .circle-text-wrap.award-circle {
    width: 158px;
    height: 158px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .circle-text-wrap.award-circle {
    width: 115px;
    height: 115px;
  }
}
.circle-text-wrap.about-btn .circle-icon {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.circle-text-wrap.about-btn .circle-icon:hover {
  transform: translate(-50%, -50%) rotate(0deg);
}
@media (max-width: 575px) {
  .circle-text-wrap.about-btn {
    width: 120px;
    height: 120px;
  }
  .circle-text-wrap.about-btn .circle-text {
    width: 85%;
    height: 85%;
  }
}

.tj-about-container {
  max-width: 1594px;
  margin-left: 0;
  --bs-gutter-x: 0;
}
.tj-about-container .row {
  --bs-gutter-x: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-about-section-2 .col-xxl-7,
  .tj-about-section-2 .col-xxl-5 {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section-2 {
    background-color: transparent;
  }
}
.tj-about-section-2 .about-left {
  max-width: 885px;
  position: relative;
  padding-bottom: 20px;
  padding-inline-end: 20px;
  background-color: var(--empe-color-theme-dark);
  border-end-end-radius: 16px;
}
.tj-about-section-2 .about-left::before, .tj-about-section-2 .about-left::after {
  content: "";
  position: absolute;
  background-color: transparent;
  width: 32px;
  height: 16px;
  -webkit-box-shadow: 16px 0 0 0 var(--empe-color-theme-dark);
  box-shadow: -16px 0 0 0 var(--empe-color-theme-dark);
  border-top-left-radius: 16px;
  z-index: -1;
}
.tj-about-section-2 .about-left::before {
  top: 0;
  right: -32px;
}
.tj-about-section-2 .about-left::after {
  bottom: -16px;
  left: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section-2 .about-left {
    padding: 15px 0;
    border-radius: 16px;
  }
  .tj-about-section-2 .about-left::before, .tj-about-section-2 .about-left::after {
    display: none;
  }
}
.tj-about-section-2 .about-img {
  mask-image: none;
  overflow: hidden;
}
.tj-about-section-2 .about-img img {
  border-radius: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section-2 .about-img img {
    border-radius: 12px;
  }
}
.tj-about-section-2 .about-content-area {
  padding: 110px 0 0 10px;
  background-color: transparent;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-about-section-2 .about-content-area {
    padding: 110px 30px 0 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-about-section-2 .about-content-area {
    padding: 90px 30px 0 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section-2 .about-content-area {
    max-width: 100%;
    padding: 70px 15px 30px;
    border-radius: 12px;
    background-color: var(--empe-color-theme-bg);
  }
}
.tj-about-section-2 .about-content-area::before {
  display: none;
}
.tj-about-section-2 .about-bottom {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-top: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-about-section-2 .about-bottom {
    gap: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section-2 .about-bottom {
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .tj-about-section-2 .about-bottom {
    flex-direction: column;
  }
}
.tj-about-section-2 .about-logo {
  padding: 38px 29px 40px;
  border-radius: 10px;
  background-color: var(--empe-color-theme-primary);
  width: 57%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .tj-about-section-2 .about-logo {
    width: 100%;
  }
}
.tj-about-section-2 .about-logo-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}
.tj-about-section-2 .about-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tj-about-section-2 .about-features-item {
  padding: 22px 30px 26px;
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
}
.tj-about-section-2 .about-features-item .title {
  margin-bottom: 16px;
}
.tj-about-section-2 .about-features-item .desc {
  margin-bottom: 0;
  color: var(--empe-color-text-body-2);
}
@media (max-width: 575px) {
  .tj-about-section-2 .about-features-item {
    padding: 22px 20px 26px;
  }
}

.h3-about-section .sec-heading {
  width: 100%;
  margin-bottom: 113px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-about-section .sec-heading {
    margin-bottom: 35px;
  }
}

.h3_about_img {
  position: relative;
  z-index: 1;
}
.h3_about_img > img {
  width: 100%;
  border-radius: 10px;
  max-height: 350px;
  object-fit: cover;
}
.h3_about_img .about_reviews {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 0 25px 50px;
  z-index: 2;
}
.h3_about_img .about_reviews .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: var(--empe-color-theme-dark);
  z-index: -1;
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/h3-about-shape.svg');
  mask-position: bottom left;
  mask-repeat: no-repeat;
}
.h3_about_img .about_reviews::before, .h3_about_img .about_reviews::after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 0px;
  left: -19px;
  width: 25px;
  height: 10px;
  box-shadow: 10px 0 0 0 var(--empe-color-theme-dark);
  border-top-right-radius: 10px;
}
.h3_about_img .about_reviews::after {
  top: auto;
  left: auto;
  bottom: -9px;
  right: 0;
}
@media (max-width: 575px) {
  .h3_about_img .about_reviews {
    padding: 0 0 25px 34px;
  }
}

.about_reviews {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
}
.about_reviews ul {
  display: inline-flex;
  list-style: none;
  align-items: center;
}
.about_reviews ul li {
  display: inline-flex;
  line-height: 1;
  margin-inline-start: -22px;
}
.about_reviews ul li:first-child {
  margin-inline-start: 0;
}
.about_reviews ul li img {
  width: 50px;
  height: 50px;
  background-color: var(--empe-color-common-white);
  padding: 2px;
  border-radius: 50%;
}
.about_reviews ul li span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}
.about_reviews ul li span i,
.about_reviews ul li span svg {
  display: inline-flex;
  line-height: 1;
}
.about_reviews ul li span svg {
  max-width: 20px;
  height: auto;
}
.about_reviews .text {
  display: inline-flex;
  max-width: 196px;
}
@media (max-width: 575px) {
  .about_reviews {
    font-size: 13px;
  }
  .about_reviews .text {
    max-width: 158px;
  }
}

.tj_list {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 12px;
}
.tj_list > li {
  display: inline-flex;
  gap: 9px;
  align-items: start;
  font-weight: var(--empe-fw-medium);
}
.tj_list > li i,
.tj_list > li svg {
  display: inline-flex;
  font-size: 20px;
  color: var(--empe-color-theme-primary);
  line-height: 1;
  margin-top: 2px;
}
.tj_list > li svg {
  max-width: 20px;
  height: auto;
}

.h3_countup {
  border: 1px solid var(--empe-color-border-1);
  background-color: var(--empe-color-theme-bg);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
  min-height: 322px;
}
.h3_countup .inline-content {
  margin-bottom: auto;
}
.h3_countup .title {
  margin: 0;
}
.h3_countup .desc {
  display: block;
  margin-top: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_countup {
    padding: 30px 20px;
    min-height: 312px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_countup {
    min-height: 280px;
    padding: 30px 20px;
  }
}

.about_right_content {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}

.content_right_inner .desc,
.content_right_inner .list_button {
  max-width: 532px;
  width: 100%;
  margin-left: auto;
}
.content_right_inner .list_button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  margin-bottom: 45px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .content_right_inner .list_button {
    margin-top: 20px;
    margin-bottom: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .content_right_inner .desc,
  .content_right_inner .list_button {
    margin-left: 0;
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .content_right_inner .list_button {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .content_right_inner .list_button {
    margin-top: 30px;
    margin-bottom: 30px;
    flex-direction: column;
    align-items: start;
  }
}

/* !END: About CSS */
/**----------------------------------------
START: Video CSS
----------------------------------------*/
.tj-video-section {
  margin-bottom: -312px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-video-section {
    margin-bottom: -240px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-video-section {
    margin-bottom: -210px;
  }
}

.video-content-area {
  position: relative;
  height: 597px;
  z-index: 2;
  overflow: hidden;
  border-radius: 16px;
}
.video-content-area .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-content-area .video-bg img {
  width: 100%;
  height: 140%;
  object-fit: cover;
}
.video-content-area .video-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.video-content-area .video-btn {
  border-radius: 50%;
}
.video-content-area .video-btn .video-icon {
  width: 120px;
  height: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-content-area .video-btn .video-icon {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .video-content-area .video-btn .video-icon {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }
}
.video-content-area .video-btn:hover .video-icon {
  transform: scale(0.9);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-content-area {
    height: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-content-area {
    height: 400px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .video-content-area {
    height: 320px;
    border-radius: 12px;
  }
}

.video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.video-btn .video-icon {
  color: var(--empe-color-theme-dark);
  background: var(--empe-color-theme-primary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 29px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
}
.video-btn .video-icon i {
  margin-left: 2px;
}
.video-btn .video-text {
  color: var(--empe-color-text-body);
  font-size: 16px;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-medium);
  letter-spacing: -0.03em;
}
.video-btn:hover {
  color: var(--empe-color-common-white);
}

@keyframes video_pulse {
  from {
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    transform: translate(-50%, -50%) scale(0.9);
  }
}
.video_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(40px);
  font-size: 20px;
  line-height: 1;
  color: var(--empe-color-common-white);
  z-index: 1;
}
.video_btn i,
.video_btn svg {
  display: inline-flex;
  line-height: 1;
}
.video_btn svg {
  max-width: 20px;
  height: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video_btn {
    width: 90px;
    height: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video_btn {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .video_btn {
    width: 70px;
    height: 70px;
  }
}

/* !END: Video CSS */
/**----------------------------------------
START: Theme Marquee CSS
----------------------------------------*/
.marquee-wrap {
  background-color: var(--empe-color-theme-primary);
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}
.marquee-wrap .marquee-icon,
.marquee-wrap .marquee-text {
  color: var(--empe-color-theme-dark);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .marquee-wrap {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}

.marquee-area {
  border-top: 1px dashed var(--empe-color-border-1);
  border-bottom: 1px dashed var(--empe-color-border-1);
  padding: 5px 0;
}
.marquee-item {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 35px;
}
.marquee-item .marquee-text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--empe-color-theme-dark-3);
  font-size: 74px;
  font-weight: var(--empe-fw-sbold);
  font-family: var(--empe-ff-heading), sans-serif;
  line-height: 1.3;
  margin: 0;
}
.marquee-item .marquee-text span {
  display: inline-flex;
  margin-inline-end: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-item .marquee-text span {
    margin-inline-end: 25px;
  }
}
@media (max-width: 575px) {
  .marquee-item .marquee-text span {
    margin-inline-end: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-item .marquee-text {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .marquee-item .marquee-text {
    font-size: 50px;
  }
}
.marquee-item .marquee-icon i {
  position: relative;
  top: 4px;
  color: var(--empe-color-theme-primary);
  font-size: 40px;
  line-height: 1;
  animation: rotateAntiClock 6s linear infinite;
}
.marquee-item .marquee-icon img {
  height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-item .marquee-icon {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-item .marquee-icon {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .marquee-item .marquee-icon {
    font-size: 22px;
  }
}
.marquee-item:hover .marquee-text {
  -webkit-text-stroke: 1px var(--empe-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-item {
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .marquee-item {
    gap: 20px;
  }
}
.marquee-item-2 {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}
.marquee-item-2 .marquee-icon {
  width: 100px;
  height: 100px;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1;
  color: var(--empe-color-theme-primary);
}
.marquee-item-2 .marquee-icon i,
.marquee-item-2 .marquee-icon svg {
  display: inline-flex;
  line-height: 1;
  animation: rotateAntiClock 10s linear infinite;
}
.marquee-item-2 .marquee-icon svg {
  max-width: 40px;
  height: auto;
}
.marquee-item-2 .marquee-text {
  font-weight: var(--empe-fw-sbold);
  font-family: var(--empe-ff-heading), sans-serif;
  font-size: 106px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--empe-color-heading-primary);
  margin: 0;
  opacity: 0.1;
}
.marquee-item-2:hover .marquee-text {
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-item-2 .marquee-icon {
    width: 80px;
    height: 80px;
    font-size: 35px;
  }
  .marquee-item-2 .marquee-icon svg {
    max-width: 35px;
  }
  .marquee-item-2 .marquee-text {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-item-2 .marquee-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
  .marquee-item-2 .marquee-icon svg {
    max-width: 30px;
  }
  .marquee-item-2 .marquee-text {
    font-size: 75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-item-2 .marquee-icon {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }
  .marquee-item-2 .marquee-icon svg {
    max-width: 25px;
  }
  .marquee-item-2 .marquee-text {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .marquee-item-2 .marquee-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .marquee-item-2 .marquee-icon svg {
    max-width: 20px;
  }
  .marquee-item-2 .marquee-text {
    font-size: 50px;
  }
}
.marquee-item-3 {
  width: auto;
  display: flex;
  align-items: center;
  gap: var(--gap);
}
.marquee-item-3 .marquee-icon {
  font-size: 27px;
  line-height: 1;
  color: var(--empe-color-theme-dark);
}
.marquee-item-3 .marquee-icon i,
.marquee-item-3 .marquee-icon svg {
  display: inline-flex;
  line-height: 1;
  animation: rotateAntiClock 10s linear infinite;
}
.marquee-item-3 .marquee-icon svg {
  max-width: 27px;
  height: auto;
}
.marquee-item-3 .marquee-text {
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--empe-color-theme-dark);
  margin: 0;
}

/* Scroll slider */
.scroll-slider {
  --gap: 35px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  align-items: center;
  gap: var(--gap);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .scroll-slider {
    --gap: 25px;
  }
}
@media (max-width: 575px) {
  .scroll-slider {
    --gap: 20px;
  }
}

.scroll-wrapper {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 30s linear infinite;
}

.marquee-slider-2 {
  --gap: 30px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  align-items: center;
  gap: var(--gap);
  padding: 28px 0;
  background-color: var(--empe-color-theme-primary);
  border-start-start-radius: 16px;
  border-start-end-radius: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-slider-2 {
    --gap: 25px;
    border-start-start-radius: 12px;
    border-start-end-radius: 12px;
  }
}
@media (max-width: 575px) {
  .marquee-slider-2 {
    --gap: 20px;
    border-start-start-radius: 12px;
    border-start-end-radius: 12px;
    padding: 20px 0;
  }
}

.marquee-slider-wrapper {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  animation: scroll 30s linear infinite;
}

/* RTL override */
[dir=rtl] .scroll-wrapper {
  animation: scroll-rtl 30s linear infinite;
}
[dir=rtl] .scroll-wrapper .marquee-item-2 .marquee-icon i,
[dir=rtl] .scroll-wrapper .marquee-item-2 .marquee-icon svg {
  animation: rotateClock 10s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scroll-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100% + var(--gap)));
  }
}
.h3-marquee-section.style-9 {
  padding: 30px 0;
  border-top: 1px solid var(--empe-color-border-1);
  border-bottom: 1px solid var(--empe-color-border-1);
}

/* !END: Theme Marquee CSS */
/**----------------------------------------
START: Technologies CSS
----------------------------------------*/
.tech-item {
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  padding: 30px 30px 25px 30px;
  display: inline-flex;
  gap: 15px;
  border-radius: 10px;
  max-width: 320px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tech-item {
    max-width: 300px;
    padding: 20px 20px 15px 20px;
  }
}
.tech-icon {
  max-width: 56px;
  width: 100%;
  height: 56px;
  border-radius: 4px;
  flex: 0 0 auto;
  overflow: hidden;
}
.tech-icon img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tech-icon {
    max-width: 50px;
  }
}
.tech-content .title {
  margin-top: 8px;
  margin-bottom: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tech-content .title {
    margin-top: 6px;
    margin-bottom: 10px;
  }
}
.tech-content .desc {
  margin-bottom: 0;
}

.technologies-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 1;
}
.technologies-item-wrap::after, .technologies-item-wrap::before {
  content: "";
  position: absolute;
  background: linear-gradient(to right, rgb(5, 5, 5) 0%, rgba(5, 5, 5, 0) 100%);
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .technologies-item-wrap::after, .technologies-item-wrap::before {
    width: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .technologies-item-wrap::after, .technologies-item-wrap::before {
    width: 100px;
  }
}
@media (max-width: 575px) {
  .technologies-item-wrap::after, .technologies-item-wrap::before {
    display: none;
  }
}
.technologies-item-wrap::after {
  top: auto;
  left: auto;
  right: 0;
  transform: scaleX(-1);
}
.technologies-item-wrap .scroll-slider {
  gap: 15px;
}
.technologies-item-wrap .scroll-slider .scroll-wrapper {
  gap: 15px;
}

[dir=rtl] .tech-item {
  flex-direction: row-reverse;
}
[dir=rtl] .tech-content {
  text-align: left;
}

/* !END: Technologies CSS */
/**----------------------------------------
START: Project CSS
----------------------------------------*/
.tj-project-section {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
}
.tj-project-section .sec-heading .desc {
  max-width: 248px;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-section {
    border-radius: 12px;
  }
}

.project-wrapper {
  padding: 0 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper {
    padding: 0 15px;
  }
}

.project-item {
  padding: 0;
  min-height: 560px;
  position: relative;
}
.project-item .project-img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.project-item .project-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(10, 10, 9, 0) 0%, rgb(10, 10, 9) 100%);
  opacity: 0.6;
  pointer-events: none;
}
.project-item .project-content {
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  padding: 30px 30px 23px 30px;
  width: calc(100% - 30px);
  margin: 15px;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-item .project-content {
    padding: 20px 15px;
    margin: 10px;
  }
}
.project-item .title {
  max-width: 185px;
  width: 100%;
  margin-bottom: 0;
}
.project-item .title a:hover {
  letter-spacing: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-item .title {
    max-width: 170px;
    font-size: 20px;
  }
}
.project-item .tj-icon-btn {
  margin-bottom: 6px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-item .tj-icon-btn {
    width: 50px;
    height: 50px;
  }
}
.project-item:hover .tj-icon-btn {
  background-color: var(--empe-color-theme-primary);
}
.project-item:hover .tj-icon-btn i {
  color: var(--empe-color-theme-dark);
}
.project-item:hover .project-img img {
  transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-item {
    min-height: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-item {
    min-height: 470px;
  }
}
@media (max-width: 575px) {
  .project-item {
    min-height: 400px;
  }
}

.project-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  transform-origin: center center;
  transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.categories a {
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  color: var(--empe-color-theme-primary);
  font-size: 16px;
  line-height: 1;
  font-weight: var(--empe-fw-medium);
  padding: 4px 10px;
  display: inline-flex;
  overflow: hidden;
  border-radius: 50px;
}
.categories a:hover {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
}

.tj-project-section-2 .sec-heading .desc {
  margin-top: 16px;
  margin-bottom: 26px;
  max-width: 360px;
}

.project-wrapper-2 {
  padding: 0;
}
.project-wrapper-2 .project-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 30px 15px 15px;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 12px;
  min-height: inherit;
  gap: 30px;
}
.project-wrapper-2 .project-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper-2 .project-item:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper-2 .project-item {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .project-wrapper-2 .project-item {
    padding: 15px;
    flex-direction: column;
  }
}
.project-wrapper-2 .project-item .categories {
  margin-bottom: 16px;
}
.project-wrapper-2 .project-item .categories a {
  background-color: var(--empe-color-theme-dark);
}
.project-wrapper-2 .project-item .categories a:hover {
  background-color: var(--empe-color-theme-primary);
}
.project-wrapper-2 .project-item .title {
  max-width: 100%;
  margin-bottom: 18px;
}
.project-wrapper-2 .project-item .desc {
  margin-bottom: 24px;
  color: var(--empe-color-text-body-2);
}
.project-wrapper-2 .project-item .tj-icon-btn {
  width: 52px;
  height: 52px;
}
.project-wrapper-2 .project-img {
  position: relative;
  max-width: 390px;
  height: 390px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .project-wrapper-2 .project-img {
    height: 327px;
  }
}
@media (max-width: 575px) {
  .project-wrapper-2 .project-img {
    max-width: 100%;
  }
}
.project-wrapper-2 .project-img::before {
  display: none;
}
.project-wrapper-2 .project-img a {
  display: block;
  height: 100%;
}
.project-wrapper-2 .project-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.project-wrapper-2 .project-content {
  position: static;
  padding: 15px 0;
  margin: 0;
  border: 0;
  background-color: transparent;
  border-radius: 0;
}
@media (max-width: 575px) {
  .project-wrapper-2 .project-content {
    width: 100%;
    padding: 10px 8px;
  }
}

/* !END: Project CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.tj-testimonial-section {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  padding-top: 432px;
  padding-bottom: 120px;
  overflow: hidden;
}
.tj-testimonial-section-3 .sec-heading-centered {
  max-width: 500px;
}
.tj-testimonial-section-4 {
  padding-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section {
    padding-top: 340px;
    padding-bottom: 100px;
  }
  .tj-testimonial-section-4 {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-testimonial-section {
    padding-top: 280px;
    padding-bottom: 70px;
    border-radius: 12px;
  }
  .tj-testimonial-section-4 {
    padding-top: 70px;
  }
}

.testimonial-slider {
  overflow: inherit;
}

.testimonial-wrapper {
  position: relative;
  z-index: 1;
}
.testimonial-wrapper .client-thumb {
  max-width: 270px;
  margin: 0 auto 18px;
}
@media (max-width: 575px) {
  .testimonial-wrapper .client-thumb {
    max-width: 220px;
  }
}
.testimonial-wrapper .client-thumb .thumb-img {
  width: 84px;
  height: 84px;
  background-color: var(--empe-color-theme-bg);
  border-radius: 50%;
  border: 3px solid transparent;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.testimonial-wrapper .client-thumb .thumb-img img {
  mix-blend-mode: luminosity;
}
@media (max-width: 575px) {
  .testimonial-wrapper .client-thumb .thumb-img {
    width: 70px;
    height: 70px;
  }
}
.testimonial-wrapper .client-thumb .author-header {
  width: 140px;
  text-align: center;
  margin-top: 10px;
  position: relative;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}
.testimonial-wrapper .client-thumb .author-header .title {
  font-size: 20px;
  margin-bottom: 8px;
}
.testimonial-wrapper .client-thumb .author-header .designation {
  font-size: 14px;
  line-height: 1;
}
.testimonial-wrapper .client-thumb .swiper-slide-active .thumb-img {
  border-color: var(--empe-color-theme-primary);
}
.testimonial-wrapper .client-thumb .swiper-slide-active .author-header {
  opacity: 1;
  visibility: visible;
}
.testimonial-wrapper .client-thumb .swiper-slide-active img {
  mix-blend-mode: unset;
}
.testimonial-wrapper .testimonial-slider .swiper-slide {
  opacity: 0.15;
}
.testimonial-wrapper .testimonial-slider .swiper-slide-active {
  opacity: 1;
}
.testimonial-wrapper .testimonial-item {
  background-color: var(--empe-color-theme-dark);
  border-radius: 12px;
  position: relative;
  margin: 17px 0 0 0;
  padding: 40px 50px 50px 50px;
}
.testimonial-wrapper .testimonial-item::before {
  content: "";
  position: absolute;
  top: -12px;
  inset-inline-start: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background-color: var(--empe-color-theme-dark);
}
.testimonial-wrapper .testimonial-item .rating-area {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}
.testimonial-wrapper .testimonial-item .desc {
  font-size: 22px;
  line-height: 1.636;
  text-align: center;
}
.testimonial-wrapper .testimonial-item .desc p {
  margin: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper .testimonial-item .desc {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper .testimonial-item .desc {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper .testimonial-item {
    padding: 35px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper .testimonial-item {
    padding: 30px 20px;
  }
}
.testimonial-wrapper .testimonial-navigation {
  position: absolute;
  max-width: 1090px;
  width: 100%;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  justify-content: space-between;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.testimonial-wrapper .slider-prev {
  margin-top: -50px;
}
.testimonial-wrapper .slider-next {
  margin-top: -50px;
}
.testimonial-wrapper:hover .testimonial-navigation {
  opacity: 1;
}

.h3_testimonial_slider .swiper-slide {
  width: auto;
}

.testimonial_item_2 {
  max-width: 983px;
  width: 100%;
  background-color: var(--empe-color-theme-bg);
  border-radius: 1px solid var(--empe-color-border-1);
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.testimonial_item_2 .testimonial_thumb {
  max-width: 365px;
  width: 100%;
  position: relative;
  z-index: 1;
  border-radius: 8px;
  overflow: hidden;
  align-self: stretch;
}
.testimonial_item_2 .testimonial_thumb img {
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.testimonial_item_2 .testimonial_thumb .video_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.testimonial_item_2:hover .testimonial_thumb img {
  transform: scale(1.1);
  transform-origin: top;
}
.testimonial_item_2 .testimonial_content {
  width: calc(100% - 365px);
  padding: 15px 30px;
}
.testimonial_item_2 .testimonial_content .star-ratings {
  letter-spacing: 3px;
  -webkit-text-stroke-color: var(--empe-color-golden-1);
  margin-bottom: 40px;
}
.testimonial_item_2 .testimonial_content .star-ratings .fill-ratings,
.testimonial_item_2 .testimonial_content .star-ratings .empty-ratings {
  color: var(--empe-color-golden-1);
}
.testimonial_item_2 .testimonial_content .desc {
  font-size: 22px;
}
.testimonial_item_2 .testimonial_content .desc p:last-child {
  margin: 0;
}
.testimonial_item_2 .testimonial_content .author_info {
  border-top: 1px solid var(--empe-color-border-1);
  padding-top: 30px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.testimonial_item_2 .testimonial_content .author_info .name {
  margin: 0;
}
.testimonial_item_2 .testimonial_content .author_info .designation {
  display: flex;
  font-size: 14px;
  color: var(--empe-color-text-body-2);
  margin-top: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial_item_2 {
    max-width: 940px;
  }
  .testimonial_item_2 .testimonial_content .desc {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial_item_2 {
    max-width: 850px;
  }
  .testimonial_item_2 .testimonial_thumb {
    max-width: 330px;
  }
  .testimonial_item_2 .testimonial_content {
    width: calc(100% - 330px);
  }
  .testimonial_item_2 .testimonial_content .star-ratings {
    margin-bottom: 30px;
  }
  .testimonial_item_2 .testimonial_content .desc {
    font-size: 20px;
  }
  .testimonial_item_2 .testimonial_content .author_info {
    margin-top: 25px;
    padding-top: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_item_2 {
    max-width: 650px;
  }
  .testimonial_item_2 .testimonial_thumb {
    max-width: 230px;
  }
  .testimonial_item_2 .testimonial_content {
    width: calc(100% - 230px);
    padding: 5px 5px 5px 20px;
  }
  .testimonial_item_2 .testimonial_content .star-ratings {
    margin-bottom: 20px;
  }
  .testimonial_item_2 .testimonial_content .desc {
    font-size: 16px;
  }
  .testimonial_item_2 .testimonial_content .author_info {
    margin-top: 20px;
    padding-top: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial_item_2 {
    max-width: 500px;
  }
  .testimonial_item_2 .testimonial_thumb {
    max-width: 230px;
  }
  .testimonial_item_2 .testimonial_content {
    width: calc(100% - 230px);
    padding: 5px 5px 5px 20px;
  }
  .testimonial_item_2 .testimonial_content .star-ratings {
    margin-bottom: 20px;
  }
  .testimonial_item_2 .testimonial_content .desc {
    font-size: 16px;
  }
  .testimonial_item_2 .testimonial_content .author_info {
    margin-top: 20px;
    padding-top: 20px;
  }
}
@media (max-width: 575px) {
  .testimonial_item_2 {
    max-width: 350px;
  }
  .testimonial_item_2 .testimonial_thumb {
    max-width: 100%;
  }
  .testimonial_item_2 .testimonial_content {
    width: 100%;
    padding: 20px 0 5px 0;
  }
  .testimonial_item_2 .testimonial_content .star-ratings {
    margin-bottom: 20px;
  }
  .testimonial_item_2 .testimonial_content .desc {
    font-size: 16px;
  }
  .testimonial_item_2 .testimonial_content .author_info {
    margin-top: 20px;
    padding-top: 20px;
  }
}

.author_avatar_wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.author_avatar_wrapper li {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.author_avatar_wrapper li:not(:first-child) {
  margin-inline-start: -19px;
}
.author_avatar_wrapper li:has(i) {
  box-sizing: content-box;
  background-color: var(--empe-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--empe-color-theme-dark);
  font-size: 45px;
  color: var(--empe-color-theme-dark);
  z-index: 2;
}
.author_avatar_wrapper li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-wrapper-2 .testimonial-navigation {
  max-width: 100%;
  top: calc((100% - 86px) / 2);
  opacity: 0;
  transition: all 0.3s;
}
.testimonial-wrapper-2 .slider-prev,
.testimonial-wrapper-2 .slider-next {
  background-color: var(--empe-color-theme-dark);
  margin-top: 0;
}
.testimonial-wrapper-2:hover .testimonial-navigation {
  opacity: 1;
}
.testimonial-wrapper-2:hover .slider-prev {
  transform: translateX(-50%);
}
.testimonial-wrapper-2:hover .slider-next {
  transform: translateX(50%);
}
.testimonial_item_3 {
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
  padding: 36px 30px 35px;
}
.testimonial_item_3:hover .author_avatar_wrapper li i {
  transform: rotateY(-360deg);
  transition: all 0.3s linear;
}
.testimonial_item_3 .testimonial_header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.testimonial_item_3 .testimonial_content {
  width: 100%;
}
.testimonial_item_3 .testimonial_content .desc {
  font-size: 18px;
}
.testimonial_item_3 .testimonial_content .desc p:last-child {
  margin: 0;
}
.testimonial_item_3 .testimonial_content .author_info {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.testimonial_item_3 .testimonial_content .author_info .name {
  margin: 0;
}
.testimonial_item_3 .testimonial_content .author_info .designation {
  display: flex;
  font-size: 14px;
  color: var(--empe-color-theme-dark-3);
  margin-top: 5px;
}
.testimonial_item_3 .star-ratings {
  letter-spacing: 3px;
  -webkit-text-stroke-color: var(--empe-color-golden-1);
  margin-top: 4px;
}
.testimonial_item_3 .star-ratings .fill-ratings,
.testimonial_item_3 .star-ratings .empty-ratings {
  color: var(--empe-color-golden-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial_item_3 .testimonial_content .author_info {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial_item_3 .testimonial_content .author_info {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial_item_3 .testimonial_content .author_info {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .testimonial_item_3 {
    padding: 36px 15px 35px;
  }
  .testimonial_item_3 .testimonial_content .author_info {
    margin-top: 20px;
  }
}

.slider-navigation {
  gap: 10px;
}

.slider-next,
.slider-prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: var(--empe-color-common-white);
  background-color: transparent;
  border: 1px solid var(--empe-color-border-1);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-next .anim-icon,
.slider-prev .anim-icon {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  transform: rotate(0deg);
}
.slider-next .anim-icon i,
.slider-prev .anim-icon i {
  position: relative;
  top: 0;
  color: var(--empe-color-common-white);
  transition: all 0.3s;
}
.slider-next .anim-icon i:last-child,
.slider-prev .anim-icon i:last-child {
  position: absolute;
  transform: translateX(150%);
  color: var(--empe-color-theme-dark);
}
.slider-next:hover,
.slider-prev:hover {
  color: var(--empe-color-theme-dark);
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
.slider-next:hover .anim-icon i:first-child,
.slider-prev:hover .anim-icon i:first-child {
  transform: translateX(-150%);
}
.slider-next:hover .anim-icon i:last-child,
.slider-prev:hover .anim-icon i:last-child {
  transform: translateX(0);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-next,
  .slider-prev {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.slider-next .anim-icon i:last-child {
  transform: translateX(-150%);
}
.slider-next:hover .anim-icon i:first-child {
  transform: translateX(150%);
}

.swiper-pagination-area {
  text-align: center;
  line-height: 0;
  margin-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .swiper-pagination-area {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .swiper-pagination-area {
    margin-top: 30px;
  }
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  opacity: 0.2;
  position: relative;
  margin: 8px !important;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--empe-color-theme-primary);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-pagination-bullet-active::before {
  opacity: 1;
}

/* !END: Testimonial CSS */

/**----------------------------------------
START: CTA CSS
----------------------------------------*/
.tj-cta-section {
  margin-bottom: -68px;
}

.cta-area {
  background-color: var(--empe-color-theme-primary);
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-area {
    padding: 50px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-area {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-area {
    padding: 30px 20px;
    border-radius: 12px;
  }
}
.cta-content {
  max-width: 500px;
  width: 100%;
}
.cta-content .title {
  font-size: 74px;
  line-height: 1.025;
  color: var(--empe-color-theme-bg);
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-content .title {
    font-size: 62px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-content .title {
    font-size: 56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-content .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-content .title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .cta-content .title {
    font-size: 43px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-content {
    max-width: 400px;
  }
}
.cta-right {
  max-width: 540px;
  width: 100%;
}
.cta-right .social-links {
  margin-top: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-right {
    max-width: 500px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-right {
    max-width: 450px;
  }
}

.subscribe-form {
  position: relative;
}
.subscribe-form input[type=email] {
  min-height: 64px;
  padding: 15px 60px 15px 25px;
  border: 0;
  border-radius: 8px;
  outline: 1px solid transparent;
}
.subscribe-form input[type=email]:focus {
  outline-color: var(--empe-color-theme-primary);
}
.subscribe-form input[type=checkbox] {
  position: relative;
  margin-inline-end: 8px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--empe-color-theme-dark-3);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
}
.subscribe-form input[type=checkbox]::before {
  content: "\e941";
  font-size: 19px;
  line-height: 1;
  font-family: var(--empe-fonticon) !important;
  color: var(--empe-color-common-white);
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 16px;
  transform: scale(0.5);
  margin-inline-start: -1px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.subscribe-form input[type=checkbox]:checked {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
.subscribe-form input[type=checkbox]:checked::before {
  color: var(--empe-color-theme-dark);
  transform: scale(1);
  opacity: 1;
}
.subscribe-form [type=submit],
.subscribe-form input[type=submit] {
  position: absolute;
  width: 64px;
  height: 64px;
  inset-inline-end: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  color: var(--empe-color-theme-primary);
}
.subscribe-form [type=submit] i,
.subscribe-form input[type=submit] i {
  line-height: 1;
  display: inline-flex;
  transition: all 0.3s linear;
}
.subscribe-form [type=submit]:hover i, .subscribe-form [type=submit]:focus i,
.subscribe-form input[type=submit]:hover i,
.subscribe-form input[type=submit]:focus i {
  transform: scale(0.8);
}
.subscribe-form [type=submit]::before,
.subscribe-form input[type=submit]::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 20px;
  height: 24px;
  border-inline-start: 1px solid var(--empe-color-border-1);
}
.subscribe-form label {
  font-size: 16px;
  color: var(--empe-color-text-body);
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
}
.subscribe-form label a {
  color: var(--empe-color-text-body);
  font-weight: var(--empe-fw-sbold);
  margin-inline-start: 4px;
}
.subscribe-form label a:hover {
  color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .subscribe-form {
    margin-top: 18px;
  }
}
.subscribe-form.cta-form input[type=email] {
  background-color: var(--empe-color-theme-dark);
  border-radius: 50px;
  color: var(--empe-color-heading-primary);
  padding: 6px 205px 6px 30px;
  min-height: 64px;
}
@media (max-width: 575px) {
  .subscribe-form.cta-form input[type=email] {
    padding: 5px 60px 5px 24px;
  }
}
.subscribe-form.cta-form input[type=email]::placeholder {
  color: var(--empe-color-text-body);
}
.subscribe-form.cta-form [type=submit],
.subscribe-form.cta-form input[type=submit] {
  width: auto;
  height: auto;
  top: 6px;
  inset-inline-end: 8px;
  font-size: 16px;
  font-weight: var(--empe-fw-sbold);
}
.subscribe-form.cta-form [type=submit] .btn-icon,
.subscribe-form.cta-form input[type=submit] .btn-icon {
  width: 42px;
  height: 42px;
  font-size: 20px;
}
.subscribe-form.cta-form [type=submit] .btn-icon i,
.subscribe-form.cta-form input[type=submit] .btn-icon i {
  transform: rotate(0);
}
.subscribe-form.cta-form [type=submit]:not(:hover) .btn-icon::before,
.subscribe-form.cta-form input[type=submit]:not(:hover) .btn-icon::before {
  width: 42px;
  height: 42px;
}
@media (max-width: 575px) {
  .subscribe-form.cta-form [type=submit],
  .subscribe-form.cta-form input[type=submit] {
    padding: 5px;
    inset-inline-end: 5px;
    top: 5px;
    background-color: transparent;
    border: 0;
  }
  .subscribe-form.cta-form [type=submit] .btn-text,
  .subscribe-form.cta-form input[type=submit] .btn-text {
    display: none;
  }
  .subscribe-form.cta-form [type=submit] .btn-icon::before,
  .subscribe-form.cta-form input[type=submit] .btn-icon::before {
    width: 42px;
    height: 42px;
  }
}
.subscribe-form.cta-form [type=submit]::before,
.subscribe-form.cta-form input[type=submit]::before {
  display: none;
}
.subscribe-form.cta-form [type=submit]:hover .btn-icon::before,
.subscribe-form.cta-form input[type=submit]:hover .btn-icon::before {
  height: 42px;
}
.subscribe-form.cta-form [type=submit]:hover .btn-icon i,
.subscribe-form.cta-form input[type=submit]:hover .btn-icon i {
  animation: bellShake 1s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .subscribe-form.cta-form {
    width: 100%;
    margin-top: 15px;
  }
}

.social-links.cta-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.social-links.cta-social .title {
  color: var(--empe-color-theme-dark);
}
.social-links.cta-social ul li a {
  background-color: var(--empe-color-theme-dark);
  color: var(--empe-color-theme-primary);
}
.social-links.cta-social ul li a::before {
  display: none;
}
.social-links.cta-social ul li a:hover {
  color: var(--empe-color-theme-primary);
  transform: translateY(-4px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .social-links.cta-social {
    margin-top: 20px;
  }
}

/* !END: CTA CSS */
/**----------------------------------------
START: Countup CSS
----------------------------------------*/
.tj-countup-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.countup-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.count-icon {
  color: var(--empe-color-theme-primary);
  font-size: 50px;
  display: inline-flex;
  line-height: 1;
}

.inline-content {
  color: var(--empe-color-common-white);
  font-size: 74px;
  line-height: 1;
  font-weight: var(--empe-fw-sbold);
  font-family: var(--empe-ff-heading), sans-serif;
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .inline-content {
    font-size: 64px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .inline-content {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .inline-content {
    font-size: 54px;
  }
}

.count-text {
  color: var(--empe-color-text-body);
  font-size: 18px;
  font-weight: var(--empe-fw-medium);
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-countup-section-2 {
    background-color: var(--empe-color-theme-bg);
    border-radius: 12px;
  }
}

.funfact-3 {
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 16px;
  gap: 0;
}
.funfact-3 .countup-item {
  max-width: 25%;
  padding: 40px 32px 35px;
}
.funfact-3 .countup-item:not(:last-child)::after {
  height: 100%;
  inset-inline-end: 0;
  transform: translateX(50%);
}
.funfact-3 .countup-item:not(:last-child)::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--empe-color-theme-primary);
  border-radius: 20px;
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
  animation: running-2 4s linear infinite;
}
@media (max-width: 575px) {
  .funfact-3 .countup-item:not(:last-child)::before {
    animation: movingHorizontal 4s linear infinite;
  }
}
.funfact-3 .countup-item:nth-child(2)::before {
  animation: running-2 4s linear infinite 2s;
}
@media (max-width: 575px) {
  .funfact-3 .countup-item:nth-child(2)::before {
    animation: movingHorizontal 4s linear infinite 2s;
  }
}
.funfact-3 .countup-item .inline-content {
  font-size: 74px;
  color: var(--empe-color-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .funfact-3 .countup-item .inline-content {
    font-size: 64px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .funfact-3 .countup-item .inline-content {
    font-size: 54px;
  }
}
.funfact-3 .countup-item .countup-icon {
  font-size: 50px;
  color: var(--empe-color-theme-primary);
  margin-bottom: 20px;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .funfact-3 .countup-item .countup-icon {
    font-size: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .funfact-3 .countup-item .countup-icon {
    font-size: 45px;
  }
}
.funfact-3 .countup-item .count-text {
  font-size: 18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .funfact-3 .countup-item .count-text {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .funfact-3 {
    flex-wrap: wrap;
  }
  .funfact-3 .countup-item {
    max-width: 50%;
  }
  .funfact-3 .countup-item:nth-child(2n)::after, .funfact-3 .countup-item:nth-child(2n)::before {
    display: none;
    inset-inline-end: auto;
    border-inline-end: 0;
  }
  .funfact-3 .countup-item:not(:last-child, :nth-last-child(2)) {
    border-bottom: 1px solid var(--empe-color-border-1);
  }
}
@media (max-width: 575px) {
  .funfact-3 {
    flex-wrap: wrap;
  }
  .funfact-3 .countup-item {
    max-width: 100%;
  }
  .funfact-3 .countup-item:not(:last-child)::after {
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 1px solid var(--empe-color-border-1);
    inset-inline-start: 0;
    top: auto;
    bottom: 0;
    transform: translateY(50%);
  }
  .funfact-3 .countup-item:not(:last-child)::before {
    inset-inline-end: 50%;
    top: auto;
    bottom: 0;
    transform: translate(50%, 50%);
  }
}

/* !END: Countup CSS */
/**----------------------------------------
START: Working process CSS
----------------------------------------*/
.process-area {
  position: relative;
  z-index: 1;
}

.process-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process-wrap {
    grid-template-columns: 100%;
  }
}
.process-item {
  border-radius: 10px;
  padding: 90px 35px 50px 35px;
  position: relative;
  z-index: 1;
}
.process-item::before {
  content: "";
  background-color: var(--empe-color-theme-bg);
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/process-item-bg.svg');
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: top center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 10px;
}
.process-item:hover .process-step {
  transform: translateX(-50%) rotate(90deg);
}
.process-item.style-2::before {
  background-color: var(--empe-color-theme-dark);
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/h3-process-item-bg.svg');
}
.process-item.style-2 .process-step {
  writing-mode: inherit;
  transform: translateX(-50%) rotate(0);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process-item {
    max-width: 420px;
    margin-top: 40px;
    margin-inline-start: auto;
    margin-inline-end: auto;
  }
  .process-item:first-child {
    margin-top: 0;
  }
}
@media (max-width: 400px) {
  .process-item {
    padding: 90px 20px 35px 20px;
  }
}
.process-step {
  width: 80px;
  height: 80px;
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  color: var(--empe-color-theme-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  writing-mode: sideways-lr;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.02em;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.process-content .title {
  max-width: 250px;
  width: 100%;
  margin-bottom: 18px;
}
.process-content .desc {
  margin-bottom: 0;
}

.process-border {
  position: absolute;
  top: 56%;
  left: 50%;
  width: 100%;
  height: 4px;
  z-index: 1;
  transform: translate(-50%, -50%);
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/process-line.svg');
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: center center;
  background: linear-gradient(90deg, rgba(211, 237, 49, 0) 0%, var(--empe-color-theme-primary) 50%, rgba(211, 237, 49, 0) 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process-border {
    width: 850px;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.h3-working-process-section-wrap {
  position: relative;
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}
.h3-working-process-section-wrap .bg-img {
  opacity: 0.12;
  mix-blend-mode: luminosity;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-working-process-section-wrap {
    border-radius: 12px;
  }
}

.working-process-section-2-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  z-index: 1;
}
.working-process-section-2-wrap .sec-heading {
  max-width: 550px;
}
.working-process-section-2-wrap .sec-heading .desc {
  margin-top: 18px;
  margin-bottom: 24px;
  max-width: 350px;
  color: var(--empe-color-text-body-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .working-process-section-2-wrap {
    border-radius: 12px;
  }
}

.process-wrap-2 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  max-width: 420px;
  margin-inline-start: auto;
  z-index: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .process-wrap-2 {
    max-width: calc(100% - 108px);
  }
}
@media (max-width: 575px) {
  .process-wrap-2 {
    max-width: 100%;
    gap: 120px;
    margin-top: 85px;
  }
}
.process-border-2 {
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  inset-inline-start: -75px;
  z-index: -1;
  transform: translateX(-50%);
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/process-line-2.svg');
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: top center;
  background: var(--empe-color-text-body-2);
  opacity: 0.15;
}
.process-item-2 {
  position: relative;
}
.process-item-2::before {
  content: "";
  position: absolute;
  top: -1px;
  width: 4px;
  height: 100%;
  inset-inline-start: -76px;
  z-index: -1;
  transform: translateX(-50%);
  mask-image: url('../../../typo3conf/ext/empe_template/Resources/Public/Images/theme/shapes/process-line-2.svg');
  mask-repeat: repeat;
  mask-size: auto;
  mask-position: top center;
  background: var(--empe-color-theme-primary);
  opacity: 0;
}
.process-item-2 .process-content {
  padding: 30px 34px 32px 35px;
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process-item-2 .process-content {
    padding: 30px 20px;
  }
}
.process-item-2 .process-step {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin-bottom: 0;
  background-color: var(--empe-color-heading-primary);
  position: absolute;
  top: 50%;
  left: auto;
  inset-inline-start: -75px;
  transform: translate(-50%, -50%);
  font-size: 24px;
  line-height: 1;
  z-index: 1;
  writing-mode: inherit;
}
.process-item-2 .process-step::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  z-index: -1;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.process-item-2.active::before {
  opacity: 1;
}
.process-item-2.active .process-content {
  margin-inline-start: -10px;
}
.process-item-2.active .process-step::before {
  transform: scale(1);
  opacity: 1;
}
@media (max-width: 575px) {
  .process-border-2 {
    inset-inline-start: 50%;
    top: -55px;
  }
  .process-item-2::before {
    inset-inline-start: 50%;
    top: -55px;
  }
  .process-item-2 .process-step {
    inset-inline-start: 50%;
    top: -50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-border-2 {
    inset-inline-start: -50px;
  }
  .process-item-2::before {
    inset-inline-start: -50px;
  }
  .process-item-2 .process-step {
    inset-inline-start: -50px;
  }
}

/* !END: Working process CSS */
.tj-contact-section {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
.tj-contact-section .sec-heading {
  max-width: 500px;
  margin-bottom: 0;
}
.tj-contact-section .bg-img {
  opacity: 0.12;
  mix-blend-mode: luminosity;
}
.tj-contact-section::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 30%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(75px);
  filter: blur(75px);
  opacity: 0.1;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-contact-section {
    border-radius: 12px;
  }
}

.contact-form {
  background-color: var(--empe-color-theme-bg);
  margin-inline-start: 0;
  margin-inline-end: 15px;
  padding: 60px 35px;
  border-radius: 12px;
}

.contact-form .title {
  margin-bottom: 35px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form .title {
    margin-bottom: 25px;
  }
}
.contact-form .form-input {
  margin-bottom: 20px;
  position: relative;
}
.contact-form .form-input textarea::-webkit-input-placeholder,
.contact-form .form-input select::-webkit-input-placeholder,
.contact-form .form-input .nice-select::-webkit-input-placeholder,
.contact-form .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form .form-input input[type=text]::-webkit-input-placeholder,
.contact-form .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--empe-color-text-body-2);
}
.contact-form .form-input textarea:-moz-placeholder,
.contact-form .form-input select:-moz-placeholder,
.contact-form .form-input .nice-select:-moz-placeholder,
.contact-form .form-input input[type=tel]:-moz-placeholder,
.contact-form .form-input input[type=text]:-moz-placeholder,
.contact-form .form-input input[type=email]:-moz-placeholder {
  color: var(--empe-color-text-body-2);
}
.contact-form .form-input textarea::-moz-placeholder,
.contact-form .form-input select::-moz-placeholder,
.contact-form .form-input .nice-select::-moz-placeholder,
.contact-form .form-input input[type=tel]::-moz-placeholder,
.contact-form .form-input input[type=text]::-moz-placeholder,
.contact-form .form-input input[type=email]::-moz-placeholder {
  color: var(--empe-color-text-body-2);
}
.contact-form .form-input textarea:-ms-input-placeholder,
.contact-form .form-input select:-ms-input-placeholder,
.contact-form .form-input .nice-select:-ms-input-placeholder,
.contact-form .form-input input[type=tel]:-ms-input-placeholder,
.contact-form .form-input input[type=text]:-ms-input-placeholder,
.contact-form .form-input input[type=email]:-ms-input-placeholder {
  color: var(--empe-color-text-body-2);
}
.contact-form .form-input textarea::placeholder,
.contact-form .form-input select::placeholder,
.contact-form .form-input .nice-select::placeholder,
.contact-form .form-input input[type=tel]::placeholder,
.contact-form .form-input input[type=text]::placeholder,
.contact-form .form-input input[type=email]::placeholder {
  color: var(--empe-color-text-body-2);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form .form-input textarea,
  .contact-form .form-input select,
  .contact-form .form-input .nice-select,
  .contact-form .form-input input[type=tel],
  .contact-form .form-input input[type=text],
  .contact-form .form-input input[type=email] {
    padding: 10px;
  }
}
.contact-form .form-input .cf-label {
  font-size: 16px;
  color: var(--empe-color-text-body-2);
  margin-bottom: 9px;
}
.contact-form .form-input .cf-label span,
.form-label span.required {
  color: var(--empe-color-theme-primary);
}
.contact-form .form-input .nice-select {
  color: var(--empe-color-text-body-2);
  line-height: 1.625;
  margin-bottom: 20px;
}
.contact-form .form-input .nice-select .list {
  width: 100%;
  border-radius: 8px;
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  padding: 10px 0;
}
.contact-form .form-input .nice-select .list .option {
  padding: 0 15px;
}
.contact-form .form-input .nice-select .list .option:hover, .contact-form .form-input .nice-select .list .option.focus {
  color: var(--empe-color-theme-primary);
  background-color: transparent;
}
.contact-form .form-input .nice-select .list .option.selected {
  background-color: transparent;
  font-weight: normal;
}
.contact-form .form-input .nice-select::after {
  border-color: var(--empe-color-theme-dark-3);
  width: 8px;
  height: 8px;
  top: 20px;
  right: 17px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form .form-input .nice-select {
    margin-bottom: 20px;
  }
}
.contact-form .form-input textarea {
  height: 130px;
  resize: none;
}
.contact-form .form-input.message-input {
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form .form-input {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form {
    max-width: 100%;
    margin-inline-end: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form {
    padding: 35px 20px 40px;
  }
}
{
  background-color: var(--empe-color-theme-dark);
  max-width: 610px;
  width: 100%;
  border: 1px solid var(--empe-color-border-1);
  margin-inline-start: auto;
  margin-inline-end: 0;
  padding: 60px 50px;
}
.title {
  margin-bottom: 35px;
}
.title span {
  color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .title {
    margin-bottom: 20px;
  }
}
.form-input {
  margin-bottom: 22px;
  position: relative;
}
.form-input.message-input {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .form-input.message-input {
    margin-bottom: 20px;
  }
}
.form-input textarea,
.form-input input[type=tel],
.form-input input[type=text],
.form-input input[type=email] {
  background-color: var(--empe-color-theme-bg);
  color: var(--empe-color-heading-primary);
  padding: 8px 20px;
}
.form-input textarea::-webkit-input-placeholder,
.form-input input[type=tel]::-webkit-input-placeholder,
.form-input input[type=text]::-webkit-input-placeholder,
.form-input input[type=email]::-webkit-input-placeholder {
  color: var(--empe-color-text-body-2);
}
.form-input textarea:-moz-placeholder,
.form-input input[type=tel]:-moz-placeholder,
.form-input input[type=text]:-moz-placeholder,
.form-input input[type=email]:-moz-placeholder {
  color: var(--empe-color-text-body-2);
}
.form-input textarea::-moz-placeholder,
.form-input input[type=tel]::-moz-placeholder,
.form-input input[type=text]::-moz-placeholder,
.form-input input[type=email]::-moz-placeholder {
  color: var(--empe-color-text-body-2);
}
.form-input textarea:-ms-input-placeholder,
.form-input input[type=tel]:-ms-input-placeholder,
.form-input input[type=text]:-ms-input-placeholder,
.form-input input[type=email]:-ms-input-placeholder {
  color: var(--empe-color-text-body-2);
}
.form-input textarea::placeholder,
.form-input input[type=tel]::placeholder,
.form-input input[type=text]::placeholder,
.form-input input[type=email]::placeholder {
  color: var(--empe-color-text-body-2);
}
.form-input .nice-select {
  background-color: var(--empe-color-theme-bg);
  padding: 8px 20px;
}
.form-input .nice-select .list {
  background-color: var(--empe-color-theme-bg);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  {
    padding: 35px 20px 40px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  {
    max-width: 100%;
    margin-inline-start: 0;
  }
}
.contact-form-3 .form-input select,
.contact-form-3 .form-input .nice-select,
.contact-form-3 .form-input input[type=search],
.contact-form-3 .form-input input[type=tel],
.contact-form-3 .form-input input[type=text],
.contact-form-3 .form-input input[type=email],
.contact-form-3 .form-input input[type=url],
.contact-form-3 .form-input textarea {
  padding: 12px 20px;
}
.contact-form-3 .form-input select::placeholder,
.contact-form-3 .form-input .nice-select::placeholder,
.contact-form-3 .form-input input[type=search]::placeholder,
.contact-form-3 .form-input input[type=tel]::placeholder,
.contact-form-3 .form-input input[type=text]::placeholder,
.contact-form-3 .form-input input[type=email]::placeholder,
.contact-form-3 .form-input input[type=url]::placeholder,
.contact-form-3 .form-input textarea::placeholder {
  color: var(--empe-color-text-body-2);
}
.contact-form-3 .form-input textarea {
  height: 205px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form-3 .form-input textarea {
    height: 170px;
  }
}
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/
.tj-hero-slider .slider_navigation {
  position: relative;
  display: flex;
  gap: 12px;
  z-index: 2;
  margin-top: -120px;
  pointer-events: none;
}
.tj-hero-slider .slider_navigation .slider-prev,
.tj-hero-slider .slider_navigation .slider-next {
  width: 60px;
  height: 60px;
  border-color: rgba(246, 247, 247, 0.12);
  font-size: 22px;
  pointer-events: all;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-slider .slider_navigation {
    margin-inline-start: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-slider .slider_navigation {
    margin-top: -100px;
  }
  .tj-hero-slider .slider_navigation .slider-prev,
  .tj-hero-slider .slider_navigation .slider-next {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-slider .slider_navigation {
    margin-top: -90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-slider .slider_navigation {
    margin-top: -80px;
  }
}

.slider_socials {
  display: inline-flex;
  align-items: center;
  writing-mode: sideways-lr;
  font-size: 16px;
  color: var(--empe-color-text-body);
  gap: 15px;
  position: absolute;
  left: 30px;
  top: calc(50% + 20px);
  transform: translateY(-50%);
  z-index: 5;
}
.slider_socials ul {
  list-style: none;
  display: flex;
  align-items: center;
  writing-mode: sideways-lr;
  gap: 10px;
}
.slider_socials ul li {
  display: inline-flex;
  line-height: 1;
}
.slider_socials ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(40px);
  border-radius: 50%;
  font-size: 15px;
  color: var(--empe-color-heading-primary);
  line-height: 1;
  transform: rotate(90deg);
  z-index: 1;
  overflow: hidden;
}
.slider_socials ul li a i,
.slider_socials ul li a svg {
  display: inline-flex;
  line-height: 1;
}
.slider_socials ul li a svg {
  max-width: 15px;
  height: auto;
}
.slider_socials ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 100%;
  background-color: var(--empe-color-theme-primary);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s linear;
}
.slider_socials ul li a:hover {
  color: var(--empe-color-theme-dark);
}
.slider_socials ul li a:hover::before {
  left: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .slider_socials {
    top: 50%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider_socials {
    top: 50%;
    left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider_socials {
    display: none;
  }
}

.tj_slider_item {
  position: relative;
  z-index: 1;
}
.tj_slider_item .slider-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.tj_slider_item .slider-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #0a0a09 0%, rgba(10, 10, 9, 0) 100%);
  pointer-events: none;
}
.tj_slider_item .slier_content_wrapper {
  position: relative;
  z-index: 1;
  min-height: 880px;
  padding-top: 155px;
  padding-bottom: 155px;
  display: flex;
  align-items: center;
  justify-content: start;
}
.tj_slider_item .slider_content {
  max-width: 678px;
  width: 100%;
}
.tj_slider_item .slider_content .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--empe-color-text-body);
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  letter-spacing: 0;
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(40px);
  padding: 6px 10px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.tj_slider_item .slider_content .sub-title i,
.tj_slider_item .slider_content .sub-title svg {
  display: inline-flex;
  color: var(--empe-color-theme-primary);
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
}
.tj_slider_item .slider_content .sub-title svg {
  max-width: 16px;
  height: auto;
}
.tj_slider_item .slider_content .title {
  margin-bottom: 0;
  font-size: 94px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.tj_slider_item .slider_content .desc {
  max-width: 475px;
  width: 100%;
  margin-top: 15px;
  font-size: 18px;
  line-height: 1.56;
}
.tj_slider_item .slider_content .slider_btn {
  margin-top: 22px;
}
.tj_slider_item.swiper-slide .slider_content .sub-title,
.tj_slider_item.swiper-slide .slider_content .title,
.tj_slider_item.swiper-slide .slider_content .desc,
.tj_slider_item.swiper-slide .slider_content .slider_btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition-duration: 0.8s;
}
.tj_slider_item.swiper-slide.swiper-slide-active .slider_content .sub-title,
.tj_slider_item.swiper-slide.swiper-slide-active .slider_content .title,
.tj_slider_item.swiper-slide.swiper-slide-active .slider_content .desc,
.tj_slider_item.swiper-slide.swiper-slide-active .slider_content .slider_btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tj_slider_item.swiper-slide.swiper-slide-active .slider_content .sub-title {
  transition-delay: 1.5s;
}
.tj_slider_item.swiper-slide.swiper-slide-active .slider_content .title {
  transition-delay: 1.75s;
}
.tj_slider_item.swiper-slide.swiper-slide-active .slider_content .desc {
  transition-delay: 2s;
}
.tj_slider_item.swiper-slide.swiper-slide-active .slider_content .slider_btn {
  transition-delay: 2.25s;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_slider_item .slier_content_wrapper {
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .tj_slider_item .slider_content {
    margin-inline-start: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_slider_item .slider_content {
    max-width: 575px;
  }
  .tj_slider_item .slider_content .title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_slider_item .slier_content_wrapper {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .tj_slider_item .slider_content {
    max-width: 500px;
    margin-inline-start: 70px;
  }
  .tj_slider_item .slider_content .title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_slider_item .slier_content_wrapper {
    min-height: 650px;
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .tj_slider_item .slider_content {
    max-width: 450px;
  }
  .tj_slider_item .slider_content .title {
    font-size: 60px;
  }
  .tj_slider_item .slider_content .desc {
    font-size: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_slider_item .slier_content_wrapper {
    min-height: 700px;
    padding-top: 130px;
    padding-bottom: 130px;
  }
  .tj_slider_item .slider_content {
    max-width: 425px;
    margin-inline-start: 0;
  }
  .tj_slider_item .slider_content .title {
    font-size: 56px;
  }
  .tj_slider_item .slider_content .desc {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .tj_slider_item .slider_content {
    max-width: 360px;
  }
  .tj_slider_item .slider_content .title {
    font-size: 46px;
  }
}

.tj-features-section .tj_features_wrap {
  margin-top: -152px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-features-section .tj_features_wrap {
    margin-top: 0;
  }
}

.tj_features_wrap {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 10px 0 10px;
  background-color: var(--empe-color-theme-dark);
  border-radius: 12px 12px 0 0;
}
.tj_features_wrap::after, .tj_features_wrap::before {
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 0;
  left: -12px;
  width: 12px;
  height: 25px;
  box-shadow: 0 12px 0 0 var(--empe-color-theme-dark);
  border-radius: 0 0 12px 0;
  z-index: -1;
}
.tj_features_wrap::after {
  left: auto;
  right: -12px;
  border-radius: 0 0 0 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_features_wrap {
    padding: 15px 0 0 0;
    gap: 15px;
  }
  .tj_features_wrap .feature_item {
    max-width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_features_wrap {
    padding: 15px 0 0 0;
    gap: 15px;
  }
  .tj_features_wrap .feature_item {
    max-width: 100%;
  }
}

.feature_item {
  max-width: 360px;
  width: 100%;
  display: inline-flex;
  align-items: start;
  border: 1px solid var(--empe-color-border-1);
  background-color: var(--empe-color-theme-bg);
  border-radius: 8px;
  padding: 20px;
  gap: 15px;
}
.feature_item .feature_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  font-size: 40px;
  line-height: 1;
  color: var(--empe-color-theme-dark);
  transition: all 0.4s ease-in-out;
}
.feature_item .feature_icon i,
.feature_item .feature_icon svg {
  display: inline-flex;
  line-height: 1;
}
.feature_item .feature_icon svg {
  max-width: 40px;
  height: auto;
}
.feature_item .feature_content {
  width: calc(100% - 85px);
  padding-top: 10px;
}
.feature_item .feature_content .title {
  margin: 0;
}
.feature_item .feature_content .desc {
  margin-top: 7px;
}
.feature_item:hover .feature_icon {
  transform: rotateY(360deg);
}
@media (max-width: 575px) {
  .feature_item .feature_icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  .feature_item .feature_icon svg {
    max-width: 30px;
  }
  .feature_item .feature_content {
    width: calc(100% - 75px);
  }
}

/* !END: Slider CSS */
/**----------------------------------------
START: Team CSS
----------------------------------------*/
.tj-team-section .sec-heading .desc {
  max-width: 262px;
  margin-bottom: 0;
}

.team-item {
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
  padding: 10px;
}
.team-item .team-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}
.team-item .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  transform-origin: center center;
  transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}
.team-item .social-links {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  background-color: var(--empe-color-theme-bg);
  border-top-left-radius: 10px;
  padding: 15px 5px 0 15px;
  z-index: 2;
}
.team-item .social-links::after, .team-item .social-links::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: -20px;
  right: 0;
  width: 10px;
  height: 20px;
  box-shadow: 0 10px 0 0 var(--empe-color-theme-bg);
  border-bottom-right-radius: 10px;
  z-index: -1;
}
.team-item .social-links::after {
  top: auto;
  right: auto;
  bottom: 0;
  left: -10px;
}
.team-item .social-links .share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--empe-color-theme-primary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--empe-color-theme-dark);
  line-height: 1;
  position: absolute;
  right: 5px;
  bottom: 0;
  z-index: 2;
}
.team-item .social-links ul {
  flex-direction: column;
  justify-content: center;
  gap: 0;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.team-item .social-links ul li {
  margin-bottom: -32px;
}
.team-item .social-links ul li:last-child {
  margin: 0;
}
.team-item .social-links ul li a {
  background-color: var(--empe-color-theme-dark-3);
}
.team-item .social-links ul li a:hover {
  opacity: 1;
}
.team-item .team-content {
  padding: 22px 20px 12px 20px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-item .team-content {
    padding: 20px;
  }
}
.team-item .title {
  display: block;
  margin-bottom: 0;
}
.team-item .title a:hover {
  color: var(--empe-color-theme-primary);
}
.team-item .designation {
  font-size: 14px;
  color: var(--empe-color-text-body-2);
  line-height: 1;
  display: inline-flex;
}
.team-item:hover .team-img img {
  transform: perspective(600px) rotateX(0deg) rotateY(0.05deg) scaleX(1.1) scaleY(1.1) !important;
}
.team-item:hover .share-icon {
  opacity: 0;
  visibility: hidden;
}
.team-item:hover ul {
  gap: 10px;
  opacity: 1;
}
.team-item:hover ul li {
  margin: 0;
}

.social-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-links ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--empe-color-theme-dark-2);
  color: var(--empe-color-common-white);
  font-size: 18px;
  line-height: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.social-links ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 100%;
  left: 0;
  background-color: var(--empe-color-theme-primary);
  z-index: -1;
  pointer-events: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.social-links ul li a:hover {
  color: var(--empe-color-theme-dark);
}
.social-links ul li a:hover::before {
  top: 0;
}

/* !END: Team CSS */
/**----------------------------------------
START: Team Details CSS
----------------------------------------*/
.team-details {
  padding: 120px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details {
    padding: 60px 0;
  }
}
.team-details__img {
  background-color: var(--empe-color-theme-dark);
}
.team-details__img img {
  border-radius: 12px;
  width: 100%;
}
.team-details__content {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__content {
    margin-top: 30px;
    padding-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__content {
    margin-top: 20px;
  }
}
.team-details .team-details__subtitle {
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details .team-details__subtitle {
    margin-bottom: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__name {
    font-size: 36px;
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__name {
    font-size: 30px;
    margin-bottom: 8px;
  }
}
.team-details__desig {
  margin-bottom: 20px;
  color: var(--empe-color-text-body-2);
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__desig {
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__desig {
    margin-bottom: 8px;
  }
}
.team-details .social-links ul li a {
  background-color: var(--empe-color-theme-bg);
}
.team-details__contact-info ul {
  display: flex;
  background-color: var(--empe-color-theme-bg);
  margin: 30px 0;
  border-radius: 12px;
  list-style: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__contact-info ul {
    margin: 20px 0;
  }
}
@media (max-width: 575px) {
  .team-details__contact-info ul {
    flex-wrap: wrap;
  }
}
.team-details__contact-info ul li {
  flex: 1 1 50%;
  padding: 25px 28px;
  border-right: 1px solid var(--empe-color-border-1);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.team-details__contact-info ul li:last-child {
  border: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details__contact-info ul li {
    padding: 16px 18px;
    align-items: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__contact-info ul li {
    padding: 12px 14px;
    align-items: center;
  }
}
@media (max-width: 575px) {
  .team-details__contact-info ul li {
    flex: 1 1 100%;
    border-right: 0;
    border-bottom: 1px solid var(--empe-color-border-1);
  }
}
.team-details__contact-info ul span {
  color: var(--empe-color-text-body-2);
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__contact-info ul span {
    font-size: 14px;
  }
}
.team-details__contact-info ul a {
  font-size: 20px;
  color: var(--empe-color-heading-primary);
  font-weight: var(--empe-fw-medium);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__contact-info ul a {
    font-size: 16px;
  }
}
.team-details__contact-info ul a:hover {
  color: var(--empe-color-theme-primary);
}
.team-details__experience {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details__experience {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__experience {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.team-details__experience__list ul {
  display: flex;
  background-color: var(--empe-color-theme-bg);
  flex-wrap: wrap;
  margin: 25px 0;
  border-radius: 12px;
  list-style: none;
  border-radius: 10px;
}
.team-details__experience__list ul li {
  flex: 1 1 50%;
  padding: 25px;
  display: flex;
  gap: 8px;
  border: 1px solid var(--empe-color-border-1);
  border-top: 0;
  border-left: 0;
}
.team-details__experience__list ul li:nth-last-child(2), .team-details__experience__list ul li:last-child {
  border-bottom: 0;
}
.team-details__experience__list ul li p {
  margin-bottom: 0;
}
.team-details__experience__list ul li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 22px;
  width: 100%;
  height: 22px;
  font-size: 14px;
  color: var(--empe-color-theme-dark);
  background: var(--empe-color-theme-primary);
  border-radius: 50%;
  margin-top: 4px;
}
.team-details__experience__list ul li:last-child {
  border-right: 0;
}
.team-details__experience__list ul li:nth-child(2n) {
  border-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__experience__list ul li {
    padding: 16px;
  }
}
@media (max-width: 575px) {
  .team-details__experience__list ul li {
    flex: 1 1 100%;
    border-right: 0;
  }
  .team-details__experience__list ul li:nth-last-child(2) {
    border-bottom: 1px solid var(--empe-color-border-1);
  }
}

.contact-team-details-inner {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  padding: 80px 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-team-details-inner .sec-heading {
    padding-inline-end: 30px;
  }
}
.contact-team-details-inner .desc {
  margin-top: 20px;
}
.contact-team-details-inner .contact-form {
  background-color: var(--empe-color-theme-dark);
  margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-team-details-inner .contact-form {
    padding: 40px 30px;
  }
}
.contact-team-details-inner .contact-form .nice-select {
  background-color: var(--empe-color-theme-dark);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-team-details-inner {
    padding: 80px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-team-details-inner {
    padding: 60px 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-team-details-inner {
    padding: 40px 20px;
  }
}
.contact-team-details-message {
  font-size: 16px;
}
.contact-team-details-message a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.contact-team-details-message a i {
  color: var(--empe-color-theme-primary);
}
.contact-team-details-message a:hover {
  color: var(--empe-color-theme-primary);
}

/* !END: Team Details CSS */
/**----------------------------------------
START: Pricing CSS
----------------------------------------*/
.toggle_switcher {
  cursor: pointer;
  display: inline-block;
}
.toggle_switcher .toggle-checkbox {
  position: absolute;
  visibility: hidden;
}
.toggle_switcher .toggle-checkbox:checked + .toggle-switch {
  background-color: var(--empe-color-theme-bg);
}
.toggle_switcher .toggle-checkbox:checked + .toggle-switch::before {
  left: 37px;
}
.toggle_switcher .toggle-switch {
  display: inline-block;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 43px;
  width: 70px;
  height: 36px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle_switcher .toggle-switch::before, .toggle_switcher .toggle-switch::after {
  content: "";
}
.toggle_switcher .toggle-switch::before {
  display: block;
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  position: absolute;
  top: 4px;
  left: 5px;
  transition: left 0.25s;
}

.price_switcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--empe-fw-sbold);
  font-size: 16px;
  line-height: 1.5;
  color: var(--empe-color-text-body);
}
.price_switcher p {
  margin: 0;
}
.price_switcher span {
  color: var(--empe-color-theme-primary);
}

.tj-pricing-section .price_switcher {
  margin-top: 30px;
}

.pricing_items_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.pricing_items_wrap .pricing_item {
  width: calc(33.333% - 20px);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .pricing_items_wrap .pricing_item {
    width: calc(50% - 15px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing_items_wrap .pricing_item {
    width: 100%;
  }
}

.pricing_item {
  border: 1px solid var(--empe-color-border-1);
  background-color: var(--empe-color-theme-bg);
  border-radius: 10px;
  padding: 40px 30px;
}
.pricing_item .package_name {
  letter-spacing: -0.02em;
  margin: 0;
}
.pricing_item .package_desc {
  margin-top: 10px;
}
.pricing_item .package_price {
  display: flex;
  font-size: 64px;
  color: var(--empe-color-heading-primary);
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  line-height: 0.8;
  margin: 30px 0 40px;
}
.pricing_item .package_price .currency {
  font-size: 24px;
}
.pricing_item .package_price .period {
  font-size: 16px;
  font-weight: var(--empe-fw-regular);
  color: var(--empe-color-text-body);
  margin-top: auto;
}
.pricing_item .pricing_btn {
  width: 100%;
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 60px;
  padding: 17px 20px;
}
.pricing_item .pricing_btn .btn-text {
  color: var(--empe-color-heading-primary);
}
.pricing_item .pricing_btn .btn-text > span {
  line-height: 1.2;
  align-items: center;
  gap: 3px;
}
.pricing_item .pricing_btn .btn-text i,
.pricing_item .pricing_btn .btn-text svg {
  display: inline-flex;
  line-height: 1;
  font-size: 10px;
}
.pricing_item .pricing_btn .btn-text svg {
  max-width: 10px;
  height: auto;
}
.pricing_item .pricing_btn:hover {
  border-color: var(--empe-color-theme-primary);
}
.pricing_item .pricing_btn:hover .btn-text {
  color: var(--empe-color-theme-primary);
}
.pricing_item .pricing_btn:hover .btn-text > span {
  text-shadow: 0 30px 0 currentColor;
}
.pricing_item .pricing_features {
  margin-top: 40px;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.pricing_item .pricing_features > li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.sec-heading ul {
  margin: 20px 0 30px 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}

.sec-heading ul > li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.sec-heading ul > li::before {
  content: "\e919";
  font-family: var(--empe-fonticon);
  font-size: 16px;
  color: var(--empe-color-theme-primary);
  line-height: 26px;
}

.pricing_item .pricing_features > li i,
.pricing_item .pricing_features > li svg {
  display: inline-flex;
  line-height: 1;
  font-size: 18px;
  color: var(--empe-color-theme-primary);
  margin-top: 4px;
}
.pricing_item .pricing_features > li svg {
  max-width: 18px;
  height: auto;
}
.pricing_item.recommend {
  border-color: var(--empe-color-theme-primary);
  border-width: 2px;
  background-color: var(--empe-color-theme-dark);
}
.pricing_item.recommend .pricing_btn {
  border-color: var(--empe-color-theme-primary);
  background-color: var(--empe-color-theme-primary);
}
.pricing_item.recommend .pricing_btn .btn-text {
  color: var(--empe-color-theme-dark);
}
.pricing_item.recommend .pricing_btn:hover {
  background-color: var(--empe-color-theme-dark);
}
.pricing_item.recommend .pricing_btn:hover .btn-text {
  color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .pricing_item {
    padding: 30px 20px;
  }
}

.pricing_items_wrap_2 .pricing_item .pricing_btn {
  border-color: var(--empe-color-theme-primary);
}
.pricing_items_wrap_2 .pricing_item.recommend {
  background-color: var(--empe-color-theme-primary);
}
.pricing_items_wrap_2 .pricing_item.recommend .package_name {
  color: var(--empe-color-theme-dark);
}
.pricing_items_wrap_2 .pricing_item.recommend .package_desc {
  color: var(--empe-color-theme-dark);
}
.pricing_items_wrap_2 .pricing_item.recommend .package_price {
  color: var(--empe-color-theme-dark);
}
.pricing_items_wrap_2 .pricing_item.recommend .package_price .period {
  color: var(--empe-color-theme-dark);
}
.pricing_items_wrap_2 .pricing_item.recommend .pricing_btn {
  background-color: var(--empe-color-theme-dark);
}
.pricing_items_wrap_2 .pricing_item.recommend .pricing_btn .btn-text {
  color: var(--empe-color-heading-primary);
}
.pricing_items_wrap_2 .pricing_item.recommend .pricing_features > li {
  color: var(--empe-color-theme-dark);
}
.pricing_items_wrap_2 .pricing_item.recommend .pricing_features > li i,
.pricing_items_wrap_2 .pricing_item.recommend .pricing_features > li svg {
  color: var(--empe-color-theme-dark);
}

/* !END: Pricing CSS */
/**----------------------------------------
START: Progress bar CSS
----------------------------------------*/
.tj-progress {
  width: 100%;
  padding: 0;
  margin: 0;
  height: 4px;
  background: var(--empe-color-theme-bg);
  position: relative;
  z-index: 0;
}
.tj-progress-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-progress-list {
    gap: 20px;
  }
}
.tj-progress-title {
  font-size: 16px;
  color: var(--empe-color-text-body);
  font-weight: var(--empe-fw-sbold);
  letter-spacing: 0;
  margin-bottom: 3px;
}
.tj-progress-bar {
  width: 0;
  height: 100%;
  background: var(--empe-color-theme-primary);
  position: relative;
  z-index: 1;
}
.tj-progress-percent {
  font-size: 16px;
  line-height: 1;
  font-weight: var(--empe-fw-sbold);
  height: auto;
  position: absolute;
  inset-inline-end: 0;
  bottom: 11px;
  z-index: 2;
}

/* !END: Progress bar CSS */
/**----------------------------------------
START: Breadcrumb CSS
----------------------------------------*/
.tj-page-header {
  position: relative;
  margin: 0 30px;
  background-color: var(--empe-color-theme-bg);
  padding-top: 272px;
  padding-bottom: 151px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-page-header {
    margin: 0 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-page-header {
    padding-top: 242px;
    padding-bottom: 131px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-page-header {
    padding-top: 232px;
    padding-bottom: 121px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-page-header {
    padding-top: 150px;
    padding-bottom: 82px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-page-header {
    padding-top: 140px;
    padding-bottom: 72px;
    border-radius: 12px;
  }
}
.tj-page-header::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -30px;
  left: 57%;
  filter: blur(173px);
  backdrop-filter: inherit;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  opacity: 1;
  z-index: -1;
}
.tj-page-header .hero-bg {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  mix-blend-mode: luminosity;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}
.tj-page-title {
  color: var(--empe-color-heading-primary);
  line-height: 1;
  margin-bottom: 0;
}
.tj-page-link {
  margin-top: 22px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  border-radius: 40px;
  background: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(20px);
  padding: 5px 12px;
  z-index: 2;
}
.tj-page-link span {
  color: var(--empe-color-heading-primary);
  font-size: 16px;
  font-weight: var(--empe-fw-medium);
  position: relative;
  display: inline-block;
  line-height: 1;
}
.tj-page-link span i {
  display: inline-flex;
  line-height: 1;
  font-size: 20px;
  color: var(--empe-color-theme-primary);
}
.tj-page-link span:not(:first-child) i {
  font-size: 12px;
  font-weight: var(--empe-fw-regular);
  color: var(--empe-color-text-body);
  justify-content: center;
  width: 7px;
  margin-top: 2px;
}
.tj-page-link span a {
  color: var(--empe-color-text-body);
}
.tj-page-link span a:hover {
  color: var(--empe-color-heading-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-page-link {
    margin-top: 25px;
  }
}

/* !END: Breadcrumb CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.post-details-wrapper .blog-images {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
  display: inline-flex;
  position: relative;
}
.post-details-wrapper .blog-images iframe {
  max-width: 100%;
}
.post-details-wrapper .blog-images .video-btn {
  position: absolute;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.post-details-wrapper .blog-images .video-btn .video-icon {
  font-size: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .post-details-wrapper .blog-images .video-btn .video-icon {
    width: 70px;
    height: 70px;
  }
}
.post-details-wrapper .blog-images .video-btn::before {
  position: absolute;
  content: "";
  inset-inline-start: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: rgba(211, 237, 49, 0.1);
  animation: pulse2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
}
.post-details-wrapper .tj-post-slider {
  margin-bottom: 25px;
}
.post-details-wrapper .title {
  line-height: 1.1667;
  margin-bottom: 14px;
}
.post-details-wrapper p {
  margin-bottom: 16px;
}
.post-details-wrapper p:last-child {
  margin-bottom: 0;
}
.post-details-wrapper .images-wrap {
  margin-top: 28px;
}
.post-details-wrapper .image-box {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
}
.post-details-wrapper .image-box img {
  width: 100%;
}
.post-details-wrapper .blog-text h3 {
  margin-top: 44px;
  margin-bottom: 15px;
}
.post-details-wrapper .blog-text ul.tj_list {
  margin-top: 30px;
  margin-bottom: 37px;
  list-style: none;
  display: block;
  columns: 2;
}
.post-details-wrapper .blog-text ul.tj_list li {
  display: flex;
  align-items: start;
  column-gap: 10px;
  color: var(--empe-color-heading-primary);
  font-weight: var(--empe-fw-medium);
  margin-bottom: 16px;
}
.post-details-wrapper .blog-text ul.tj_list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .post-details-wrapper .blog-text ul.tj_list {
    margin-bottom: 30px;
    columns: 1;
  }
}
.post-details-wrapper .blog-text .blog-video {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 50px;
}
.post-details-wrapper .blog-text .blog-video .video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 1;
  color: var(--empe-color-theme-dark);
  background: var(--empe-color-theme-primary);
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.post-details-wrapper .blog-text .blog-video .video-btn span {
  font-size: 20px;
}
.post-details-wrapper .blog-text .blog-video .video-btn::before {
  position: absolute;
  content: "";
  inset-inline-start: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  background-color: rgba(211, 237, 49, 0.1);
  animation: pulse2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
}
@media (max-width: 575px) {
  .post-details-wrapper .blog-text .blog-video .video-btn::before {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .post-details-wrapper .blog-text .blog-video .video-btn {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .post-details-wrapper .blog-text .blog-video {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.blog-category-two {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  padding: 25px 0;
  border-radius: 10px;
  margin-top: 20px;
  margin-bottom: 22px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-category-two {
    padding: 25px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-category-two {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-category-two {
    padding: 20px;
    gap: 20px;
  }
}
.blog-category-two .category-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-inline-end: 1px solid var(--empe-color-border-1);
  padding: 0 30px;
  gap: 10px;
  width: 33.33%;
}
.blog-category-two .category-item:last-child {
  border-inline-end: none;
}
.blog-category-two .category-item .cate-images {
  width: 52px;
  height: 52px;
}
.blog-category-two .category-item .cate-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-category-two .category-item .cate-images {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .cate-images {
    width: 35px;
    height: 35px;
  }
}
.blog-category-two .category-item .cate-text .degination {
  display: block;
  color: var(--empe-color-text-body-2);
  font-size: 14px;
  line-height: 1;
  margin-bottom: 8px;
}
.blog-category-two .category-item .cate-text .title {
  font-weight: var(--empe-fw-sbold);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-category-two .category-item .cate-text .title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .cate-text .title {
    font-size: 14px;
  }
}
.blog-category-two .category-item .cate-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 52px;
  height: 52px;
  line-height: 1;
  color: var(--empe-color-theme-dark);
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-category-two .category-item .cate-icons {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .cate-icons {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
.blog-category-two .category-item .text {
  font-weight: var(--empe-fw-sbold);
  line-height: 1;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-category-two .category-item .text {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .text {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-category-two .category-item {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-category-two .category-item {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-category-two .category-item {
    width: 100%;
    padding: 0;
    border: 0;
  }
}

.wp-block-quote,
blockquote {
  position: relative;
  padding: 40px 30px 30px;
  background: var(--empe-color-theme-bg);
  border: 2px solid var(--empe-color-theme-primary);
  border-radius: 12px;
  margin-top: 55px;
  margin-bottom: 50px;
  z-index: 2;
}
.wp-block-quote::before,
blockquote::before {
  content: "\e92e";
  font-size: 40px;
  color: var(--empe-color-theme-primary);
  font-family: var(--empe-fonticon);
  display: inline-block;
  margin-bottom: 16px;
  line-height: 1;
}
.wp-block-quote p,
blockquote p {
  color: var(--empe-color-text-body);
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  font-size: 24px;
  margin-bottom: 20px !important;
  letter-spacing: -0.6px;
  line-height: 1.417;
  border-radius: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .wp-block-quote p,
  blockquote p {
    font-size: 20px;
    margin-bottom: 15px !important;
  }
}
.wp-block-quote cite,
blockquote cite {
  color: var(--empe-color-heading-primary);
  display: block;
  text-align: end;
  font-style: normal;
  position: relative;
  z-index: 1;
}
.wp-block-quote cite::before,
blockquote cite::before {
  content: "";
  display: inline-block;
  background: var(--empe-color-border-1);
  height: 1px;
  width: 89px;
  top: -4px;
  margin-inline-end: 10px;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .wp-block-quote,
  blockquote {
    padding: 25px 15px;
    margin-bottom: 40px;
  }
}

.tj-tags-post {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 30px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--empe-color-border-1);
  border-bottom: 1px dashed var(--empe-color-border-1);
  padding: 22px 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.tj-tags-post .tagcloud {
  width: calc(100% - 200px);
}
.tj-tags-post .tagcloud span {
  color: var(--empe-color-text-body-2);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-tags-post .tagcloud {
    width: 100%;
  }
}
.tj-tags-post .post-share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}
.tj-tags-post .post-share ul li {
  font-size: 16px;
  color: var(--empe-color-text-body-2);
  margin-bottom: 0;
}
.tj-tags-post .post-share ul li a {
  display: flex;
  font-size: 18px;
  line-height: 1;
  color: var(--empe-color-heading-primary);
}
.tj-tags-post .post-share ul li a i {
  display: inline-flex;
  line-height: 1;
}
.tj-tags-post .post-share ul li a:hover i {
  color: var(--empe-color-theme-primary);
}
.tj-tags-post.no_socials .tagcloud {
  width: 100%;
}

.tj-post__navigation {
  background-color: var(--empe-color-theme-bg);
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 50px;
}
.tj-post__navigation .tj-nav-post__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--empe-color-heading-primary);
  font-weight: var(--empe-fw-sbold);
}
.tj-post__navigation .tj-nav-post__nav a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: var(--empe-color-theme-dark);
  border-radius: 50%;
  border: 1px solid var(--empe-color-border-1);
  font-size: 24px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj-post__navigation .tj-nav-post__nav a span i {
  color: var(--empe-color-heading-primary);
}
@media (max-width: 575px) {
  .tj-post__navigation .tj-nav-post__nav a span {
    width: 48px;
    height: 48px;
  }
}
.tj-post__navigation .tj-nav-post__nav a:hover {
  color: var(--empe-color-heading-primary);
}
.tj-post__navigation .tj-nav-post__nav a:hover span {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
.tj-post__navigation .tj-nav-post__nav a:hover span i {
  color: var(--empe-color-theme-dark);
}
.tj-post__navigation .tj-nav__post.previous {
  width: calc(50% - 25px);
}
.tj-post__navigation .tj-nav__post.next {
  width: calc(50% - 25px);
  text-align: end;
}
.tj-post__navigation .tj-nav-post__grid {
  width: 50px;
  text-align: center;
  font-size: 30px;
  line-height: 1;
  color: var(--empe-color-heading-primary);
}
.tj-post__navigation .tj-nav-post__grid a {
  display: inline-flex;
  color: currentColor;
}
.tj-post__navigation .tj-nav-post__grid a:hover {
  color: var(--empe-color-theme-primary);
}
@media (max-width: 575px) {
  .tj-post__navigation {
    padding: 20px;
    gap: 20px;
  }
}

.tj-comments-wrap .comments-title .title {
  margin-bottom: 22px;
}
@media (max-width: 575px) {
  .tj-comments-wrap .comments-title .title {
    margin-bottom: 15px;
  }
}

.tj-latest-comments ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-latest-comments ul .tj-comment {
  margin-bottom: 20px;
}
.tj-latest-comments ul .tj-comment:last-child {
  margin-bottom: 0;
}
.tj-latest-comments ul .tj-comment .comment-content {
  display: flex;
  gap: 12px;
  padding: 30px;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 12px;
  position: relative;
}
.tj-latest-comments ul .tj-comment .comment-content .comment-avatar {
  max-width: 64px;
  height: 64px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.tj-latest-comments ul .tj-comment .comment-content .comment-avatar img {
  width: 100%;
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header {
  margin-top: 10px;
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .name,
.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title {
  font-size: 18px;
  font-weight: var(--empe-fw-sbold);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .name a,
.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .name a:hover,
.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title a:hover {
  color: var(--empe-color-theme-primary);
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text .comment-reply-link {
  position: absolute;
  top: 35px;
  inset-inline-end: 30px;
  font-size: 16px;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-medium);
  color: var(--empe-color-text-body-2);
  text-decoration: none;
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text .comment-reply-link:hover {
  color: var(--empe-color-theme-primary);
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text span {
  font-size: 14px;
  color: var(--empe-color-text-body-2);
  font-weight: var(--empe-fw-regular);
}
@media (max-width: 575px) {
  .tj-latest-comments ul .tj-comment .comment-content {
    flex-direction: column;
  }
  .tj-latest-comments ul .tj-comment .comment-content .comment-avatar {
    margin-inline-end: auto;
  }
}
.tj-latest-comments ul .tj-comment .desc {
  margin-top: 14px;
}
.tj-latest-comments ul .tj-comment .desc p:last-child {
  margin-bottom: 0;
}
.tj-latest-comments ul .tj-comment > .children {
  padding-inline-start: 75px;
}
@media (max-width: 575px) {
  .tj-latest-comments ul .tj-comment > .children {
    padding-inline-start: 35px;
  }
}
.tj-latest-comments ul .tj-comment:last-child .comment-content .comments-header {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.comment-respond {
  margin-top: 50px;
}
.comment-respond .comment-reply-title {
  margin-bottom: 25px;
}
.comment-respond .form-input {
  margin-bottom: 30px;
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.comment-respond .form-input textarea,
.comment-respond .form-input input[type=email],
.comment-respond .form-input input[type=text] {
  background: var(--empe-color-theme-bg);
  height: 60px;
  padding: 18px 20px;
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.comment-respond .form-input textarea::placeholder,
.comment-respond .form-input input[type=email]::placeholder,
.comment-respond .form-input input[type=text]::placeholder {
  transition: all 0.3s;
  color: var(--empe-color-text-body-2);
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.comment-respond .form-input textarea:focus,
.comment-respond .form-input input[type=email]:focus,
.comment-respond .form-input input[type=text]:focus {
  border-color: var(--empe-color-theme-primary);
}
.comment-respond .form-input textarea {
  min-height: 180px;
  resize: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .comment-respond .form-input {
    margin-bottom: 20px;
  }
}
.comment-respond .comment-form-cookies-consent {
  display: inline-flex;
  align-items: center;
}
.comment-respond .comment-form-cookies-consent input[type=checkbox] {
  position: relative;
  margin-inline-end: 8px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--empe-color-theme-dark-3);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
}
.comment-respond .comment-form-cookies-consent input[type=checkbox]::before {
  content: "\e941";
  font-size: 19px;
  line-height: 1;
  font-family: "empe-icon" !important;
  color: var(--empe-color-common-white);
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 16px;
  transform: scale(0.5);
  margin-inline-start: -1px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.comment-respond .comment-form-cookies-consent input[type=checkbox]:checked {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
.comment-respond .comment-form-cookies-consent input[type=checkbox]:checked::before {
  color: var(--empe-color-theme-dark);
  transform: scale(1);
  opacity: 1;
}
.comment-respond .form-submit {
  margin-bottom: 0;
}

.tj-main-sidebar {
  padding-inline-start: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-main-sidebar {
    padding-inline-start: 0;
  }
}

.tj-sidebar-widget {
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  z-index: 3;
  border-radius: 10px;
  overflow: hidden;
}
.tj-sidebar-widget:last-child {
  margin-bottom: 0;
}
.tj-sidebar-widget .wp-block-heading,
.tj-sidebar-widget .wp-block-search__label,
.tj-sidebar-widget .wp-block-categories__label,
.tj-sidebar-widget .wp-block-archives__label,
.tj-sidebar-widget .widget-title {
  color: var(--empe-color-heading-primary);
  font-size: 24px;
  font-weight: var(--empe-fw-sbold);
  font-family: var(--empe-ff-heading), sans-serif;
  position: relative;
  margin-bottom: 25px;
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 1;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-sidebar-widget .wp-block-heading,
  .tj-sidebar-widget .wp-block-search__label,
  .tj-sidebar-widget .wp-block-categories__label,
  .tj-sidebar-widget .wp-block-archives__label,
  .tj-sidebar-widget .widget-title {
    font-size: 22px;
  }
}
.tj-sidebar-widget.widget-search .search-box form {
  position: relative;
  width: 100%;
  z-index: 1;
}
.tj-sidebar-widget.widget-search .search-box form input[type=search] {
  font-size: 16px;
  background: var(--empe-color-theme-dark);
  width: 100%;
  min-height: 60px;
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
  padding: 18px 55px 18px 20px;
  line-height: 1;
}
.tj-sidebar-widget.widget-search .search-box form input[type=search]::placeholder {
  transition: all 0.3s;
  color: var(--empe-color-text-body-2);
}
.tj-sidebar-widget.widget-search .search-box form input[type=search]:focus {
  outline: none;
  box-shadow: 0 0 0;
  border-color: var(--empe-color-theme-primary);
}
.tj-sidebar-widget.widget-search .search-box form button {
  font-size: 22px;
  color: var(--empe-color-heading-primary);
  width: 58px;
  height: 60px;
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.tj-sidebar-widget.widget-search .search-box form button i {
  display: inline-flex;
  line-height: 1;
}
.tj-sidebar-widget.tj-recent-posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-sidebar-widget.tj-recent-posts ul li {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 15px;
}
.tj-sidebar-widget.tj-recent-posts ul li:last-child {
  margin-bottom: 0;
}
.tj-sidebar-widget.tj-recent-posts ul li:hover .post-thumb img {
  transform: scale(1.15);
}
.tj-sidebar-widget.tj-recent-posts .post-thumb {
  position: relative;
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  border-radius: 6px;
  overflow: hidden;
}
.tj-sidebar-widget.tj-recent-posts .post-thumb a {
  display: inline-block;
  width: 100%;
}
.tj-sidebar-widget.tj-recent-posts .post-thumb a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.tj-sidebar-widget.tj-recent-posts .post-content .post-title {
  font-size: 18px;
  line-height: 1.444;
  font-weight: var(--empe-fw-sbold);
  margin-bottom: 10px;
}
.tj-sidebar-widget.tj-recent-posts .post-content .post-title a:hover {
  color: var(--empe-color-theme-primary);
}
.tj-sidebar-widget.tj-recent-posts .post-content .blog-meta {
  margin-bottom: 0;
}
.tj-sidebar-widget.tj-recent-posts .post-content .blog-meta ul li {
  font-size: 14px;
  color: var(--empe-color-text-body-2);
}
.tj-sidebar-widget.widget-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-sidebar-widget.widget-categories ul li {
  margin-bottom: 10px;
}
.tj-sidebar-widget.widget-categories ul li:last-child {
  margin-bottom: 0;
}
.tj-sidebar-widget.widget-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: var(--empe-fw-sbold);
  color: var(--empe-color-heading-primary);
  background: var(--empe-color-theme-dark);
  padding: 20px 24px 17px 25px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tj-sidebar-widget.widget-categories ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background-color: var(--empe-color-theme-primary);
  border-radius: 8px;
  width: 0;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tj-sidebar-widget.widget-categories ul li a span {
  color: var(--empe-color-heading-primary);
}
.tj-sidebar-widget.widget-categories ul li a .icon {
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
}
.tj-sidebar-widget.widget-categories ul li a:hover {
  color: var(--empe-color-theme-dark);
}
.tj-sidebar-widget.widget-categories ul li a:hover::before {
  width: 100%;
}
.tj-sidebar-widget.widget-categories ul li a:hover span {
  color: var(--empe-color-theme-dark);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .tj-sidebar-widget {
    padding: 25px 15px;
  }
}

.tagcloud {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 12px;
}
.tagcloud a {
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  font-size: 14px;
  line-height: 1;
  color: var(--empe-color-text-body);
  font-weight: var(--empe-fw-medium);
  padding: 5px 10px;
  border-radius: 14px;
  display: inline-flex;
  overflow: hidden;
}
.tagcloud a:hover {
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  border-color: var(--empe-color-theme-primary);
}

.infos-wrapper {
  position: relative;
  padding-top: 30px;
}
.infos-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 120%;
  height: 0;
  border-top: 1px solid var(--empe-color-border-1);
}

.infos-item {
  display: flex;
  align-items: center;
  column-gap: 8px;
  padding-bottom: 30px;
  border: 0;
}
.infos-item:last-child {
  padding-bottom: 0;
}
.infos-item .project-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  font-size: 20px;
  color: var(--empe-color-theme-dark);
  background: var(--empe-color-theme-primary);
  border-radius: 50%;
  position: relative;
  top: 2px;
}
.infos-item .project-text {
  line-height: 1;
}
.infos-item .project-text span {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: var(--empe-color-text-body-2);
  margin: 0;
}
.infos-item .project-text .title {
  line-height: 1;
  font-weight: var(--empe-fw-sbold);
  margin-bottom: 0;
  margin-top: 6px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .infos-item .project-text .title {
    font-size: 16px;
  }
}

.service-categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-categories ul li {
  margin-bottom: 10px;
}
.service-categories ul li:last-child {
  margin-bottom: 0;
}
.service-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: var(--empe-fw-sbold);
  color: var(--empe-color-heading-primary);
  background: var(--empe-color-theme-dark);
  padding: 20px 15px 17px 25px;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.service-categories ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background-color: var(--empe-color-theme-primary);
  border-radius: 8px;
  width: 0;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-categories ul li a span {
  color: var(--empe-color-heading-primary);
}
.service-categories ul li a .icon {
  font-size: 23px;
  line-height: 1;
  display: inline-flex;
  font-weight: var(--empe-fw-sbold);
  margin-top: -4px;
}
.service-categories ul li a:hover, .service-categories ul li a.active {
  color: var(--empe-color-theme-dark);
}
.service-categories ul li a:hover::before, .service-categories ul li a.active::before {
  width: 100%;
}
.service-categories ul li a:hover span, .service-categories ul li a.active span {
  color: var(--empe-color-theme-dark);
}

.widget-feature-item {
  padding: 20px;
}
.widget-feature-item .feature-box {
  position: relative;
  background: var(--empe-color-theme-dark);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.widget-feature-item .feature-box .feature-content {
  padding: 30px 28px 30px;
}
.widget-feature-item .feature-box .feature-content .title {
  font-size: 64px;
  color: var(--empe-color-common-white);
  margin-bottom: 15px;
  font-weight: var(--empe-fw-sbold);
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 54px;
  }
}
.widget-feature-item .feature-box .feature-content > span {
  display: block;
  font-size: 20px;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-regular);
  color: var(--empe-color-text-body-2);
  line-height: 1;
  margin-bottom: 26px;
}
@media (max-width: 575px) {
  .widget-feature-item .feature-box .feature-content > span {
    margin-bottom: 20px;
  }
}
.widget-feature-item .feature-box .feature-content .feature-contact {
  background-color: transparent;
  padding: 7px 12px;
  border: 3px solid var(--empe-color-theme-primary);
  border-radius: 50px;
  line-height: 1;
  overflow: hidden;
  display: inline-flex;
  transform: rotate(-5deg);
  margin: 0;
}
.widget-feature-item .feature-box .feature-content .feature-contact span {
  color: var(--empe-color-heading-primary);
  font-size: 18px;
  font-weight: var(--empe-fw-sbold);
  font-family: var(--empe-ff-heading), sans-serif;
  margin: 0;
  text-shadow: 0 30px 0;
  display: inline-flex;
  line-height: 1;
}
.widget-feature-item .feature-box .feature-content .feature-contact i {
  color: var(--empe-color-heading-primary);
  font-size: 20px;
  margin-inline-end: 6px;
  margin-inline-start: 0;
}
.widget-feature-item .feature-box .feature-content .feature-contact:hover span {
  transform: translateY(-30px);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .widget-feature-item .feature-box .feature-content {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .widget-feature-item .feature-box {
    max-width: 360px;
    margin: 0 auto;
  }
}
@media (max-width: 400px) {
  .widget-feature-item .feature-box {
    max-width: 320px;
    margin: 0 auto;
  }
}
.widget-feature-item .feature-box::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -30px;
  left: 0;
  filter: blur(173px);
  backdrop-filter: inherit;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  opacity: 1;
  z-index: -1;
}
.widget-feature-item .feature-images {
  width: 399px;
  height: 399px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline-start: 30px;
  margin-bottom: -42px;
}
.widget-feature-item .feature-images img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-top: -2px;
  margin-left: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-feature-item .feature-images {
    width: 320px;
    height: 320px;
    margin-inline-start: 32px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-feature-item .feature-images {
    width: 300px;
    height: 300px;
    margin-inline-start: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-feature-item .feature-images {
    width: 500px;
    height: 500px;
    margin-inline-start: 278px;
    margin-bottom: -62px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .widget-feature-item .feature-images {
    margin-inline-start: 177px;
  }
}
@media (max-width: 400px) {
  .widget-feature-item .feature-images {
    width: 320px;
    height: 320px;
    margin-inline-start: 41px;
  }
}
@media (max-width: 575px) {
  .widget-feature-item {
    padding: 20px 15px;
  }
}

.details-content-box {
  display: flex;
  flex-wrap: wrap;
  column-gap: 15px;
  row-gap: 15px;
  align-items: center;
  margin-top: 22px;
  margin-bottom: 52px;
}

.service-details-item {
  background-color: var(--empe-color-theme-bg);
  border-radius: 10px;
  padding: 30px 17px 25px 18px;
  max-width: 280px;
  width: 100%;
}
.service-details-item .number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  font-size: 16px;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  color: var(--empe-color-theme-dark);
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  margin-bottom: 20px;
}
.service-details-item .title {
  line-height: 1.444;
  font-weight: var(--empe-fw-sbold);
  margin-bottom: 18px;
}
.service-details-item .desc {
  margin-bottom: 0;
}
.service-details-item .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-details-item {
    max-width: 240px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-item {
    max-width: 220px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-details-item {
    max-width: 250px;
    padding: 30px 15px 15px 15px;
  }
}
@media (max-width: 575px) {
  .service-details-item {
    max-width: 100%;
  }
}

.blog-text .tj_accordion {
  margin-top: 22px;
  margin-bottom: 30px;
}

.tj-gallery {
  position: relative;
  display: block;
}
.tj-gallery::before {
  content: "\e939";
  font-family: "empe-icon" !important;
  color: var(--empe-color-common-white);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(5, 5, 5, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
}
.tj-gallery:hover::before {
  opacity: 1;
  visibility: visible;
}

.tj-socials-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-top: 30px;
  margin-top: 30px;
  position: relative;
}
.tj-socials-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 120%;
  height: 0;
  border-top: 1px solid var(--empe-color-border-1);
}
.tj-socials-wrapper .title {
  margin-bottom: 0;
  line-height: 1;
}
.tj-socials-wrapper ul.tj-socials {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tj-socials-wrapper ul.tj-socials li {
  margin-bottom: 0;
}
.tj-socials-wrapper ul.tj-socials li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  background-color: var(--empe-color-heading-primary);
  color: var(--empe-color-theme-bg);
  font-size: 18px;
  line-height: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
  opacity: 0.2;
}
.tj-socials-wrapper ul.tj-socials li a:hover {
  opacity: 1;
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  transform: translateY(-4px);
}

/* !END: Blog Details CSS */
/**----------------------------------------
START: Animate CSS
----------------------------------------*/
@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(0.8);
  }
}
@keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 rgb(211, 237, 49);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes pulse3 {
  0% {
    box-shadow: 0 0 0 0 rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
}
@keyframes pulsePrimary {
  0% {
    box-shadow: 0 0 0 0 rgba(211, 237, 49, 0.5);
  }
  100% {
    box-shadow: 0 0 0 16px rgba(211, 237, 49, 0);
  }
}
@keyframes jumping {
  0% {
    transform: translateY(2px);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-6px);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(2px);
  }
}
@keyframes lineHover {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
    right: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@keyframes textRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotateClock {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateAntiClock {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes gelatine {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.7, 1.1);
  }
  50% {
    transform: scale(1.1, 0.7);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
@-webkit-keyframes borderanimate {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes borderanimate {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@keyframes borderanimate {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@keyframes bellShake {
  0% {
    transform: rotate(0);
  }
  10% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  30% {
    transform: rotate(4deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(2deg);
  }
  60% {
    transform: rotate(-2deg);
  }
  70% {
    transform: rotate(1deg);
  }
  80%, 90%, 100% {
    transform: rotate(0);
  }
}
@keyframes shine {
  0% {
    transform: skewX(-25deg) translateX(0);
  }
  100% {
    transform: skewX(-25deg) translateX(250%);
  }
}
.tj-bounce {
  animation: bounceAnim 4s linear infinite;
}

@keyframes bounceAnim {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.tj-bounce-x {
  animation: bouncexAnim 4s linear infinite;
}

@keyframes bouncexAnim {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-15px);
  }
  50% {
    transform: translateX(0);
  }
  75% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounce-twice {
  animation: bounceTwice 5s linear infinite;
}

@keyframes bounceTwice {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.zoomInOut {
  animation: zoomEffect 3s linear infinite;
}

@-webkit-keyframes zoomEffect {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.9);
  }
}
@-moz-keyframes zoomEffect {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.9);
  }
}
@keyframes zoomEffect {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(0.9);
  }
}
.zoomInOut-2 {
  animation: zoomEffect2 3s linear infinite;
}

@-webkit-keyframes zoomEffect2 {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
@-moz-keyframes zoomEffect2 {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
@keyframes zoomEffect2 {
  0% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.9);
  }
}
.zoomInOut-3 {
  animation: zoomEffect3 2s alternate ease-in-out infinite;
}

@-webkit-keyframes zoomEffect3 {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@-moz-keyframes zoomEffect3 {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes zoomEffect3 {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes running {
  0% {
    top: 100%;
  }
  50% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}
@keyframes running-2 {
  0% {
    top: 0%;
  }
  50% {
    top: 100%;
  }
  100% {
    top: 0%;
  }
}
@keyframes movingHorizontal {
  0% {
    left: 0;
  }
  50% {
    left: 95%;
  }
  100% {
    left: 0;
  }
}
@keyframes flip {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.circle-ripple::before, .circle-ripple::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.circle-ripple::before {
  animation: ripple 2s linear infinite;
}
.circle-ripple::after {
  animation: ripple 2s linear 1s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
/* !END: Animate CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area.header-4.header-absolute {
  top: 30px;
  padding: 0 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-4.header-absolute {
    top: 15px;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-4.header-absolute .header-bottom {
    padding: 0;
  }
}
.header-area.header-4 .site_logo {
  padding: 20px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-4 .site_logo {
    padding: 15px 0;
  }
}
.header-area.header-4 .mainmenu {
  background-color: var(--empe-color-theme-dark);
  border-radius: 50px;
  padding: 0 30px;
  border: 1px solid var(--empe-color-border-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-4 .mainmenu {
    padding: 0 20px;
  }
}
.header-area.header-4 .mainmenu ul > li > a {
  padding-top: 16px;
  padding-bottom: 16px;
}
.header-area.header-4 .mainmenu ul > li.menu-item-has-children > a::after, .header-area.header-4 .mainmenu ul > li.has-dropdown > a::after {
  top: 20px;
}
.header-area.header-4 .mainmenu ul > li .sub-menu > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-section.footer-4 {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}
.tj-footer-section.footer-4::after, .tj-footer-section.footer-4::before {
  display: none;
}

.footer-4 .footer-main-area {
  padding: 120px 0 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-4 .footer-main-area {
    padding: 90px 0 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-4 .footer-main-area {
    padding: 70px 0 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-4 .footer_widget_wrapper .footer-widget {
    max-width: calc(50% - 15px);
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-4 .footer_widget_wrapper .footer-widget {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}
.footer-4 .footer_socials li a:not(:hover) {
  opacity: 0.18;
}
.footer-4 .widget-nav-menu ul li a {
  color: var(--empe-color-text-body);
}
.footer-4 .widget-nav-menu ul li a:hover {
  color: var(--empe-color-theme-primary);
}
.footer-4 .tj-copyright-area::before {
  width: 600px;
  height: 400px;
  margin: 0 auto;
  bottom: -200px;
  left: 0;
  right: 0px;
  opacity: 0.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-4 .tj-copyright-area::before {
    width: 400px;
    height: 300px;
    bottom: -170px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-4 .tj-copyright-area::before {
    display: block;
    width: 300px;
    height: 200px;
    bottom: -80px;
  }
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.tj-banner-section-3 {
  min-height: 1000px;
  padding-top: 173px;
  border-radius: 16px;
  background-color: var(--empe-color-theme-bg);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-3 {
    min-height: 728px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-3 {
    min-height: 628px;
    padding-top: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-3 {
    min-height: 700px;
    padding-top: 120px;
    border-radius: 12px;
  }
}
@media (max-width: 575px) {
  .tj-banner-section-3 {
    min-height: 550px;
  }
}
.tj-banner-section-3 .hero-bg {
  opacity: 1;
  border-radius: 16px;
  background-position: center top;
  mix-blend-mode: normal;
}
.tj-banner-section-3 .banner-content {
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding-top: 0;
  position: relative;
  z-index: 2;
}
.tj-banner-section-3 .banner-content .sub-title {
  color: var(--empe-color-heading-primary);
  text-transform: capitalize;
  letter-spacing: 0;
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(20px);
  padding: 5px 10px;
  border-radius: 40px;
}
.tj-banner-section-3 .banner-content .sub-title i {
  font-size: 18px;
  color: var(--empe-color-theme-primary);
}
@media (max-width: 575px) {
  .tj-banner-section-3 .banner-content .banner-title {
    font-size: 36px;
    line-height: 1.167;
  }
}
.tj-banner-section-3 .banner-content .banner-desc {
  max-width: 595px;
  width: 100%;
  font-size: 18px;
  margin-top: 18px;
}
@media (max-width: 575px) {
  .tj-banner-section-3 .banner-content .banner-desc {
    font-size: 16px;
  }
}
.tj-banner-section-3 .banner-content .btn-area {
  gap: 15px;
}
.tj-banner-section-3 .banner-content .list-area {
  margin-top: 33px;
  margin-bottom: 0;
}
.tj-banner-section-3 .banner-content .list-area .list-style-1 {
  gap: 30px;
}
.tj-banner-section-3 .banner-content .list-area .list-style-1 li {
  color: var(--empe-color-common-white);
}
.tj-banner-section-3 .banner-content .list-area .list-style-1 li span {
  color: var(--empe-color-theme-primary);
  background: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-3 .banner-content .list-area .list-style-1 {
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-banner-section-3 .banner-content {
    max-width: 650px;
  }
}
.tj-banner-section-3 .banner-img {
  max-width: 1320px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section-3 .banner-img {
    margin-top: 60px;
    border-radius: 12px;
  }
}

.video-btn-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--empe-color-heading-primary);
  background-color: var(--empe-color-theme-dark);
  font-size: 16px;
  font-weight: var(--empe-fw-sbold);
  padding: 17px 30px;
  text-align: center;
  border-radius: 50px;
  line-height: 1;
  position: relative;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid var(--empe-color-border-1);
}
.video-btn-2 .btn-icon {
  color: var(--empe-color-heading-primary);
  font-size: 12px;
  line-height: 1;
}
.video-btn-2 .btn-text {
  color: var(--empe-color-heading-primary);
  line-height: 1.25;
  overflow: hidden;
}
.video-btn-2 .btn-text span {
  display: flex;
  line-height: 1.25;
  text-shadow: 0 30px 0;
  backface-visibility: hidden;
  transform: translateY(0);
  transition: 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .video-btn-2 .btn-text {
    display: none;
  }
}
.video-btn-2:hover .btn-text span {
  transform: translateY(-30px);
}
@media (max-width: 575px) {
  .video-btn-2 {
    padding: 20px;
  }
}

/* !END: Hero CSS */
/**----------------------------------------
START: Choose CSS
----------------------------------------*/
.choose-box.h4-choose .choose-inner {
  padding: 15px;
  border: 1px solid var(--empe-color-border-1);
}
.choose-box.h4-choose .choose-content {
  padding: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .choose-box.h4-choose .choose-content {
    padding: 15px 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .choose-box.h4-choose .choose-content {
    padding: 10px 0;
  }
}
.choose-box.h4-choose .choose-img {
  border-radius: 8px;
  overflow: hidden;
}
.choose-box.h4-choose .choose-img img {
  transform: scale(1.1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.choose-box.h4-choose .title {
  margin-top: 8px;
  margin-bottom: 16px;
}
.choose-box.h4-choose:hover .choose-img img {
  transform: scale(1);
}

/* !END: Choose CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.h4-about-section .sec-heading {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h4-about-section .sec-heading .sec-title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h4-about-section .sec-heading .sec-title {
    font-size: 40px;
  }
}
.h4-about-section .about-left {
  max-width: 100%;
  height: 100%;
  position: relative;
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h4-about-section .about-left {
    border-radius: 12px;
  }
}
.h4-about-section .about-img {
  mask-image: none;
  overflow: hidden;
  max-width: 915px;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.h4-about-section .about-content-area {
  padding: 120px 20px 120px 95px;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
}
.h4-about-section .about-content-area .about-content {
  max-width: 555px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h4-about-section .about-content-area .about-content {
    max-width: 700px;
  }
}
.h4-about-section .about-content-area .desc {
  max-width: 530px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h4-about-section .about-content-area .desc {
    max-width: 570px;
  }
}
.h4-about-section .about-content-area::before {
  display: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h4-about-section .about-content-area {
    padding: 120px 20px 120px 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h4-about-section .about-content-area {
    padding: 100px 20px 100px 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h4-about-section .about-content-area {
    max-width: 100%;
    padding: 60px 15px;
    border-radius: 12px;
    background-color: var(--empe-color-theme-bg);
  }
}

.clients-review-area {
  display: inline-flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 350px;
  width: 100%;
  margin-top: 52px;
  padding-top: 22px;
  border-top: 1px solid var(--empe-color-border-1);
  position: relative;
}
.clients-review-area .separator-line {
  width: 1px;
  height: 68px;
  border-left: 1px solid var(--empe-color-border-1);
  margin-top: 6px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .clients-review-area {
    margin-top: 40px;
  }
}
.clients-review-point .total-point {
  color: var(--empe-color-heading-primary);
  font-size: 52px;
  line-height: 0.85;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  letter-spacing: -0.03em;
  margin-bottom: 11px;
}
@media (max-width: 575px) {
  .clients-review-point .total-point {
    font-size: 48px;
  }
}
.clients-review-point span {
  display: inline-flex;
  line-height: 1.3;
}
.clients-review-rating .title {
  color: var(--empe-color-heading-primary);
  margin-bottom: 18px;
}
.clients-review-rating .review-stars {
  display: inline-flex;
  gap: 2px;
}
.clients-review-rating .review-stars span {
  font-size: 15px;
  line-height: 1;
  color: var(--empe-color-theme-primary);
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 4px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .clients-review-rating .review-stars span {
    font-size: 13px;
    width: 25px;
    height: 25px;
  }
}

/* !END: About CSS */
/**----------------------------------------
START: Services CSS
----------------------------------------*/
.service-item-3.service-item {
  padding-bottom: 0;
}
.service-item-3.service-item:not(:last-child) {
  margin-bottom: 30px;
}
.service-item-3.service-item .service-inner {
  padding: 52px 30px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  min-height: 183px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .service-item-3.service-item .service-inner {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item-3.service-item .service-inner {
    gap: 20px;
  }
}
.service-item-3.service-item .item-count {
  position: static;
  width: auto;
  height: auto;
  font-size: 18px;
  line-height: 1;
  color: var(--empe-color-text-body-2);
  background-color: transparent;
  border-radius: 0;
  border: 0;
}
.service-item-3.service-item .item-count::before, .service-item-3.service-item .item-count::after {
  display: none;
}
.service-item-3.service-item .service-content {
  max-width: 235px;
  width: 100%;
  display: flex;
  align-items: start;
  gap: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item-3.service-item .service-content {
    max-width: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item-3.service-item .service-content {
    max-width: 100%;
  }
}
.service-item-3.service-item .title {
  margin-top: -7px;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item-3.service-item .title {
    margin-top: -5px;
  }
}
.service-item-3.service-item .desc {
  max-width: 380px;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item-3.service-item .desc {
    max-width: 360px;
  }
}
@media (max-width: 575px) {
  .service-item-3.service-item .desc {
    max-width: 100%;
  }
}
.service-item-3.service-item .tj-icon-btn {
  background-color: var(--empe-color-theme-dark);
}
.service-item-3.service-item .service-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 10px;
  pointer-events: none;
  transform: scale(1.1);
}
.service-item-3.service-item .service-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--empe-color-theme-dark);
  opacity: 0.6;
}
.service-item-3.service-item .service-img::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 300px;
  bottom: -50%;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(75px);
  filter: blur(75px);
  opacity: 0.25;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item-3.service-item .service-img::after {
    width: 400px;
    height: 250px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item-3.service-item .service-img::after {
    width: 250px;
    height: 200px;
  }
}
.service-item-3.service-item.active .service-inner {
  border-color: var(--empe-color-theme-primary);
  min-height: 366px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item-3.service-item.active .service-inner {
    min-height: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item-3.service-item.active .service-inner {
    min-height: 250px;
  }
}
.service-item-3.service-item.active .service-img {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.service-item-3.service-item.active .item-count {
  color: var(--empe-color-theme-primary);
}
.service-item-3.service-item.active .tj-icon-btn {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
.service-item-3.service-item.active .tj-icon-btn i {
  color: var(--empe-color-theme-dark);
}

/* !END: Services CSS */
/**----------------------------------------
START: Technologies CSS
----------------------------------------*/
.h4-technologies-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
}
.h4-technologies-section .technologies-right,
.h4-technologies-section .technologies-left {
  width: 50%;
  flex: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h4-technologies-section .technologies-right,
  .h4-technologies-section .technologies-left {
    width: 100%;
    flex: 0 0 auto;
  }
}
.h4-technologies-section .sec-heading {
  margin-bottom: 0;
}

.tech-left-area {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  padding: 120px 130px 120px 30px;
  border: 1px solid var(--empe-color-border-1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tech-left-area {
    padding: 100px 30px;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tech-left-area {
    padding: 60px 15px;
    justify-content: flex-start;
  }
}

.tech-left-content {
  max-width: 530px;
  width: 100%;
}
.tech-left-content .desc {
  margin-top: 16px;
  margin-bottom: 26px;
}

.technologies-item-wrap-2 {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .technologies-item-wrap-2 {
    margin-top: 30px;
  }
}
.technologies-item-wrap-2 .tech-icon {
  max-width: 64px;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .technologies-item-wrap-2 .tech-icon {
    max-width: 50px;
  }
}
.technologies-item-wrap-2 .scroll-slider {
  --gap: 130px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .technologies-item-wrap-2 .scroll-slider {
    --gap: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .technologies-item-wrap-2 .scroll-slider {
    --gap: 30px;
  }
}
.technologies-item-wrap-2 .scroll-slider .scroll-wrapper {
  --gap: 60px;
  animation-duration: 20s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .technologies-item-wrap-2 .scroll-slider .scroll-wrapper {
    --gap: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .technologies-item-wrap-2 .scroll-slider .scroll-wrapper {
    --gap: 30px;
  }
}

.technologies-right {
  background-color: var(--empe-color-theme-bg);
  position: relative;
  z-index: 1;
  border: 1px solid var(--empe-color-border-1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.technologies-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(75px);
  filter: blur(75px);
  transform: translate(-50%, -50%);
  opacity: 0.25;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .technologies-right::before {
    width: 400px;
    height: 400px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .technologies-right::before {
    width: 330px;
    height: 330px;
  }
}
@media (max-width: 575px) {
  .technologies-right::before {
    width: 60%;
    height: 60%;
  }
}
.technologies-right .bg-img {
  opacity: 0.1;
  mix-blend-mode: luminosity;
}

.tech-circle-img {
  max-width: 545px;
  width: 100%;
}
.tech-circle-img img {
  width: 100%;
}

/* !END: Technologies CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.h4-testimonial-section .sec-heading {
  max-width: 570px;
  margin-bottom: 62px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .h4-testimonial-section .sec-heading {
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .h4-testimonial-section .sec-heading {
    margin-bottom: 40px;
  }
}

.testimonial-wrapper-3 {
  margin-bottom: 30px;
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  padding: 105px 60px 60px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper-3 {
    padding: 80px 40px 50px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-3 {
    padding: 65px 20px 40px;
  }
}
.testimonial-wrapper-3 .quote-icon {
  font-size: 70px;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--empe-color-theme-dark);
  color: var(--empe-color-theme-primary);
  border-radius: 100%;
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonial-wrapper-3 .quote-icon i {
  transform: scale(-1);
  margin-top: 20px;
}
.testimonial-wrapper-3 .quote-icon::after, .testimonial-wrapper-3 .quote-icon::before {
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 32px;
  left: -15px;
  width: 16px;
  height: 32px;
  box-shadow: 0 16px 0 0 var(--empe-color-theme-dark);
  border-radius: 0 0 16px 0;
  z-index: -1;
  transform: scaleY(-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper-3 .quote-icon::after, .testimonial-wrapper-3 .quote-icon::before {
    bottom: 17px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-3 .quote-icon::after, .testimonial-wrapper-3 .quote-icon::before {
    bottom: 8px;
  }
}
.testimonial-wrapper-3 .quote-icon::after {
  left: auto;
  right: -15px;
  border-radius: 0 0 0 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper-3 .quote-icon {
    font-size: 50px;
    width: 100px;
    height: 100px;
    top: -50px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-3 .quote-icon {
    font-size: 40px;
    width: 80px;
    height: 80px;
    top: -40px;
  }
}
.testimonial-wrapper-3 .testimonial-item {
  background-color: transparent;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
.testimonial-wrapper-3 .testimonial-item::before {
  display: none;
}
.testimonial-wrapper-3 .testimonial-item .desc {
  font-size: 26px;
  line-height: 1.54;
  max-width: 905px;
  margin: 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper-3 .testimonial-item .desc {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-3 .testimonial-item .desc {
    font-size: 18px;
  }
}
.testimonial-wrapper-3 .client-thumb {
  margin: 40px auto 0;
}
.testimonial-wrapper-3 .client-thumb .thumb-img {
  opacity: 0.2;
}
.testimonial-wrapper-3 .client-thumb .swiper-slide-active .thumb-img {
  opacity: 1;
}
@media (max-width: 575px) {
  .testimonial-wrapper-3 .client-thumb {
    margin: 30px auto 0;
  }
}
.testimonial-wrapper-3 .testimonial-navigation {
  max-width: 100%;
  opacity: 1;
}
.testimonial-wrapper-3 .slider-next:not(:hover),
.testimonial-wrapper-3 .slider-prev:not(:hover) {
  background-color: var(--empe-color-theme-dark);
}
.testimonial-wrapper-3 .slider-prev {
  margin-left: -25px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-3 .slider-prev {
    margin-left: 10px;
  }
}
.testimonial-wrapper-3 .slider-next {
  margin-right: -25px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-3 .slider-next {
    margin-right: 10px;
  }
}
.testimonial-wrapper-3 .swiper-pagination-area {
  margin-top: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-3 .swiper-pagination-area {
    margin-top: 30px;
  }
}

/* !END: Testimonial CSS */
/**----------------------------------------
START: Countup CSS
----------------------------------------*/
.countup-item.h4-countup {
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
  padding: 30px 28px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.countup-item.h4-countup .subtitle {
  font-size: 16px;
  line-height: 1;
  font-weight: var(--empe-fw-sbold);
  color: var(--empe-color-theme-primary);
  display: inline-flex;
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 30px;
  position: relative;
  padding: 4px 10px 4px 20px;
  margin-bottom: 70px;
}
.countup-item.h4-countup .subtitle::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--empe-color-theme-primary);
  border-radius: 100%;
  position: absolute;
  left: 10px;
  top: 10px;
}
.countup-item.h4-countup .inline-content {
  align-items: flex-end;
}
.countup-item.h4-countup .inline-content .count-plus {
  font-size: 48px;
}
.countup-item.h4-countup .count-text {
  font-size: 16px;
  font-weight: var(--empe-fw-regular);
}
.countup-item.h4-countup:hover {
  border-color: var(--empe-color-theme-primary);
}

/* !END: Countup CSS */
/**----------------------------------------
START: CTA CSS
----------------------------------------*/
.h4-cta-section {
  background-color: var(--empe-color-theme-bg);
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}
.h4-cta-section .sec-heading-centered {
  max-width: 640px;
  margin-bottom: 0;
}
.h4-cta-section .sec-title span {
  color: var(--empe-color-theme-primary);
}
.h4-cta-section .desc {
  max-width: 430px;
  margin: 15px auto 25px;
}
.h4-cta-section .cta-area {
  background: transparent;
  border-radius: 0;
  padding: 100px 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h4-cta-section .cta-area {
    padding: 60px 20px;
  }
}
@media (max-width: 575px) {
  .h4-cta-section .subscribe-form.cta-form [type=submit] .btn-icon i {
    color: var(--empe-color-theme-dark);
  }
  .h4-cta-section .subscribe-form.cta-form [type=submit] .btn-icon::before {
    background-color: var(--empe-color-theme-primary);
  }
}

/* !END: CTA CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area.header-5.header-absolute {
  top: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-5.header-absolute {
    top: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-5.header-absolute .header-bottom {
    padding: 0;
  }
}
.header-area.header-5.header-absolute .header-wrapper {
  background-color: var(--empe-color-theme-dark);
  border-radius: 45px;
  border: 1px solid var(--empe-color-border-1);
  padding: 0 15px;
}
.header-area.header-5.header-duplicate {
  background-color: transparent;
  box-shadow: none;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-5.header-duplicate .header-bottom {
    padding: 0;
  }
}
.header-area.header-5.header-duplicate .header-wrapper {
  background-color: var(--empe-color-theme-dark);
  border-radius: 45px;
  border: 1px solid var(--empe-color-border-1);
  padding: 0 15px;
}
.header-area.header-5 .site_logo {
  padding: 14px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-5 .site_logo {
    padding: 15px 0;
  }
}
.header-area.header-5 .mainmenu ul > li > a {
  padding-top: 28px;
  padding-bottom: 28px;
}
.header-area.header-5 .mainmenu ul > li.menu-item-has-children > a::after, .header-area.header-5 .mainmenu ul > li.has-dropdown > a::after {
  top: 30px;
}
.header-area.header-5 .mainmenu ul > li .sub-menu > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
}
.header-area.header-5 .header-button {
  gap: 14px;
}
.header-area.header-5 .header-button .tj-primary-btn .btn-icon i {
  transform: rotate(0);
}

.tj-primary-btn.signup-btn {
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-theme-primary);
  padding: 10px 28px;
}
.tj-primary-btn.signup-btn .btn-text {
  color: var(--empe-color-heading-primary);
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-section.footer-5 {
  padding-top: 100px;
}
.tj-footer-section.footer-5 .bg-img {
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%, rgb(0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
}
.tj-footer-section.footer-5::before {
  top: -250px;
  left: 50%;
  right: auto;
  max-width: 1550px;
  width: 100%;
  height: 500px;
  transform: translateX(-50%);
}
.tj-footer-section.footer-5::after {
  display: none;
}

.footer-5 .footer-cta-content {
  max-width: 610px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.footer-5 .footer-cta-content .footer-award {
  max-width: 163px;
  width: 100%;
  margin: 0 auto 17px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-5 .footer-cta-content .footer-award {
    max-width: 130px;
  }
}
.footer-5 .footer-cta-content .title {
  margin-bottom: 26px;
}
.footer-5 .footer-main-area {
  padding: 100px 0 0 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-5 .footer-main-area {
    padding: 90px 0 0 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-5 .footer-main-area {
    padding: 70px 0 0 0;
  }
}
.footer-5 .footer_widget_wrapper {
  background-color: var(--empe-color-theme-dark);
  padding: 100px 30px 88px;
  border-radius: 20px;
}
.footer-5 .footer_widget_wrapper .subscription_widget {
  max-width: 416px;
  width: 100%;
}
.footer-5 .footer_widget_wrapper .subscription_widget .subscribe_form input[type=email] {
  background-color: var(--empe-color-theme-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-5 .footer_widget_wrapper .footer-widget {
    max-width: calc(50% - 15px);
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-5 .footer_widget_wrapper .footer-widget {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-5 .footer_widget_wrapper {
    padding: 80px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-5 .footer_widget_wrapper {
    padding: 70px 15px;
  }
}
.footer-5 .widget-nav-menu ul li a {
  color: var(--empe-color-text-body);
}
.footer-5 .widget-nav-menu ul li a:hover {
  color: var(--empe-color-theme-primary);
}
.footer-5 .footer-contact-info .contact-item span {
  color: var(--empe-color-text-body);
}
.footer-5 .footer-contact-info .contact-item a {
  color: var(--empe-color-text-body);
}
.footer-5 .footer-contact-info .contact-item a:hover {
  color: var(--empe-color-theme-primary);
}
.footer-5 .footer_bottom_area {
  padding: 23px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-5 .copyright-text {
    order: 1;
  }
  .footer-5 .copyright-menu {
    order: 3;
  }
  .footer-5 .footer_socials {
    order: 2;
  }
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.tj-banner-section.h5-banner-section {
  margin: 0;
  border-radius: 0 0 20px 20px;
  padding-top: 260px;
  padding-bottom: 60px;
  min-height: 880px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section {
    padding-top: 210px;
    min-height: 800px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section {
    min-height: 740px;
    padding-top: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section.h5-banner-section {
    padding-top: 160px;
  }
}
.tj-banner-section.h5-banner-section .banner-content {
  max-width: 590px;
  padding-top: 0;
  margin-inline-start: 0;
  display: block;
}
.tj-banner-section.h5-banner-section .banner-content .sub-title {
  color: var(--empe-color-text-body);
  text-transform: capitalize;
  letter-spacing: 0;
  background-color: var(--empe-color-theme-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--empe-color-border-1);
  padding: 5px 10px;
  border-radius: 40px;
}
.tj-banner-section.h5-banner-section .banner-content .sub-title i {
  color: var(--empe-color-theme-primary);
  font-size: 16px;
}
.tj-banner-section.h5-banner-section .banner-content .banner-title {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 13px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-banner-section.h5-banner-section .banner-content .banner-title {
    font-size: 76px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section .banner-content .banner-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-banner-section.h5-banner-section .banner-content .banner-title {
    font-size: 53px;
  }
}
@media (max-width: 575px) {
  .tj-banner-section.h5-banner-section .banner-content .banner-title {
    font-size: 45px;
  }
}
.tj-banner-section.h5-banner-section .banner-content .banner-desc {
  font-size: 18px;
  max-width: 480px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section .banner-content .banner-desc {
    max-width: 410px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section .banner-content .banner-desc {
    font-size: 16px;
    max-width: 320px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section.h5-banner-section .banner-content .banner-desc {
    font-size: 16px;
    max-width: 380px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section .banner-content {
    max-width: 560px;
  }
}
.tj-banner-section.h5-banner-section .banner-img-area {
  max-width: 390px;
  width: 100%;
  margin-inline-start: 120px;
  position: relative;
}
.tj-banner-section.h5-banner-section .banner-img-area::before {
  display: none;
}
.tj-banner-section.h5-banner-section .banner-img-area .banner-img {
  max-width: 390px;
  border-radius: 10px;
  mask-image: none;
}
.tj-banner-section.h5-banner-section .banner-img-area .banner-img-2 {
  max-width: 198px;
  width: 100%;
  margin-top: 42px;
  margin-inline-start: auto;
  margin-inline-end: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section .banner-img-area .banner-img-2 {
    max-width: 160px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section.h5-banner-section .banner-img-area .banner-img-2 {
    max-width: 160px;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item-wrap {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    margin-top: 20px;
  }
}
.tj-banner-section.h5-banner-section .banner-img-area .box-item {
  max-width: 170px;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: -200px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item {
    bottom: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item {
    bottom: 0;
    left: -185px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item {
    max-width: 165px;
    bottom: -10px;
    left: -180px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item {
    position: static;
  }
}
.tj-banner-section.h5-banner-section .banner-img-area .box-item > img {
  position: absolute;
  top: -133px;
  left: 82px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item > img {
    left: 68px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item > img {
    max-width: 110px;
    top: -118px;
    left: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item > img {
    display: none;
  }
}
.tj-banner-section.h5-banner-section .banner-img-area .box-item-inner {
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 8px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.tj-banner-section.h5-banner-section .banner-img-area .box-item-inner img {
  width: 34px;
  margin-bottom: 18px;
}
.tj-banner-section.h5-banner-section .banner-img-area .box-item-inner .title {
  display: inline-flex;
  font-size: 44px;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item-inner .title {
    font-size: 38px;
  }
}
.tj-banner-section.h5-banner-section .banner-img-area .box-item-inner .text {
  font-size: 15px;
  display: inline-flex;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item-inner .text {
    font-size: 14px;
  }
}
.tj-banner-section.h5-banner-section .banner-img-area .box-item-2 {
  bottom: auto;
  left: auto;
  top: -82px;
  right: -200px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item-2 {
    top: -95px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item-2 {
    top: -95px;
    right: -185px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item-2 {
    top: -95px;
    right: -180px;
  }
}
.tj-banner-section.h5-banner-section .banner-img-area .box-item-2 > img {
  position: absolute;
  top: auto;
  left: auto;
  bottom: -126px;
  right: 82px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item-2 > img {
    right: 68px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section .banner-img-area .box-item-2 > img {
    bottom: -113px;
    right: 80px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section .banner-img-area {
    max-width: 360px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section.h5-banner-section .banner-img-area {
    margin-inline-start: 135px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section.h5-banner-section .banner-img-area {
    max-width: 300px;
    margin-top: 30px;
    margin-inline-start: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section.h5-banner-section .banner-img-area {
    max-width: 340px;
    margin-inline-start: auto;
    margin-inline-end: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-banner-section.h5-banner-section .banner-img-area {
    margin-top: 83px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section.h5-banner-section .banner-img-area {
    max-width: 355px;
    margin-top: 60px;
  }
}
.tj-banner-section.h5-banner-section .blur-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.tj-banner-section.h5-banner-section .blur-shape-2 {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}

/* !END: Hero CSS */
/**----------------------------------------
START: Client CSS
----------------------------------------*/
.tj-client-section .sec-heading-centered {
  max-width: 600px;
}

.client-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
  mask-image: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgb(166, 166, 166) 20%, rgb(140, 140, 140) 80%, rgba(115, 115, 115, 0) 100%);
}
.client-slider-wrap .scroll-slider {
  --gap: 25px;
}
.client-slider-wrap .scroll-slider .scroll-wrapper {
  --gap: 25px;
  animation: scroll 40s linear infinite;
}
.client-slider-wrap [dir=rtl] .scroll-wrapper {
  animation: scroll-rtl 40s linear infinite;
}
.client-slider-wrap .client-logo {
  width: 255px;
  height: 107px;
  padding: 20px;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .client-slider-wrap .client-logo {
    width: 230px;
    height: 100px;
    padding: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .client-slider-wrap .client-logo {
    width: 180px;
    height: 85px;
    padding: 15px;
  }
}

/* !END: Client CSS */
/**----------------------------------------
START: Services CSS
----------------------------------------*/
.h5-service-section .sec-heading .desc {
  max-width: 325px;
  margin-bottom: 0;
}

.service-item.service-item-4 {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-item.service-item-4 .title {
    font-size: 20px;
  }
}
.service-item.service-item-4 .desc {
  color: var(--empe-color-text-body-2);
  margin-bottom: 0;
}
.service-item.service-item-4 .service-content {
  padding-bottom: 94px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item.service-item-4 .service-content {
    padding-bottom: 70px;
  }
}
.service-item.service-item-4 .service-inner {
  padding: 40px 30px 50px 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-item.service-item-4 .service-inner {
    padding: 40px 25px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .service-item.service-item-4 .service-inner {
    padding: 30px 20px 50px 20px;
  }
}
.service-item.service-item-4 .service-icon {
  width: 95px;
  height: 95px;
  font-size: 44px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item.service-item-4 .service-icon {
    width: 80px;
    height: 80px;
    font-size: 38px;
  }
}
.service-item.service-item-4 .service-btn {
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  border-bottom: 0;
  border-right: 0;
  border-radius: 12px 0 0 0;
  padding: 0 0 0 20px;
}
.service-item.service-item-4 .service-btn .tj-text-btn {
  padding: 16px 0;
}
.service-item.service-item-4 .service-btn::before, .service-item.service-item-4 .service-btn::after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: -25px;
  right: 0;
  left: auto;
  width: 12px;
  height: 25px;
  box-shadow: 0 12px 0 0 var(--empe-color-theme-dark);
  border-top: 0;
  border-radius: 0 0 12px 0;
  border-bottom: 1px solid var(--empe-color-border-1);
  border-right: 1px solid var(--empe-color-border-1);
  pointer-events: none;
}
.service-item.service-item-4 .service-btn::after {
  top: auto;
  right: auto;
  bottom: 0;
  left: -12px;
}
.service-item.service-item-4 .item-count {
  font-size: 142px;
  line-height: 0.8;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px var(--empe-color-border-1);
  background-color: transparent;
  border: 0;
  width: auto;
  height: auto;
  top: auto;
  right: auto;
  left: 28px;
  bottom: -45px;
}
.service-item.service-item-4 .item-count::after, .service-item.service-item-4 .item-count::before {
  display: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item.service-item-4 .item-count {
    font-size: 110px;
    bottom: -30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .service-item.service-item-4 .item-count {
    font-size: 100px;
    left: 20px;
    bottom: -25px;
  }
}
.service-item.service-item-4:hover .desc {
  color: var(--empe-color-text-body);
}
.service-item.service-item-4:hover .item-count {
  color: transparent;
  opacity: 0;
  bottom: -20%;
}

.service-slider {
  overflow: visible;
}
.service-slider .nav-pagiation-wrap {
  margin-top: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-slider .nav-pagiation-wrap {
    margin-top: 40px;
  }
}
.service-slider .slider-next:not(:hover),
.service-slider .slider-prev:not(:hover) {
  background-color: var(--empe-color-theme-bg);
}

.style-2 .swiper-pagination-bullet::before {
  display: none;
}

.nav-pagiation-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

/* !END: Services CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.tj-secure-section {
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-secure-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.secure-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 140px;
}
.secure-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .secure-item:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.secure-item:not(:last-child) {
  margin-bottom: 140px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .secure-item:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .secure-item:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .secure-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .secure-item {
    gap: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .secure-item {
    gap: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .secure-item {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.secure-img {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
.secure-img-wrap {
  max-width: calc(50% - 15px);
  width: 100%;
  min-height: 724px;
  display: flex;
  flex: 1;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 30px 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .secure-img-wrap {
    min-height: 495px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .secure-img-wrap {
    min-height: auto;
    max-width: 100%;
    flex: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .secure-img {
    max-width: 540px;
  }
}
.secure-img .img-reveal-2 {
  overflow: visible;
}

.secure-content {
  max-width: 525px;
  width: 100%;
  flex: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .secure-content {
    max-width: 100%;
    flex: auto;
  }
}
.secure-content .sec-heading {
  margin-bottom: 18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .secure-content .sec-heading .sec-title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .secure-content .sec-heading .sec-title {
    font-size: 40px;
  }
}
.secure-content .desc {
  max-width: 500px;
  margin-bottom: 22px;
}
.secure-content .about-funfact {
  gap: 60px;
}
.secure-content .about-funfact .countup-item {
  max-width: 175px;
  width: 100%;
}
.secure-content .about-funfact .countup-item:not(:last-child)::after {
  border-right: 1px dashed var(--empe-color-border-1);
  inset-inline-end: -30px;
  top: 5px;
  height: calc(100% - 8px);
}
.secure-content .about-funfact .inline-content {
  font-size: 48px;
  margin-bottom: 10px;
}
.secure-content .about-funfact .count-text {
  font-size: 18px;
  line-height: 1.3;
  color: var(--empe-color-text-body);
}

/* !END: About CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.h5-testimonial-section {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
}
.h5-testimonial-section .testimonial-btn {
  text-align: center;
  margin-top: -30px;
}

.testimonial-wrapper-4 {
  height: 810px;
  display: flex;
  gap: 30px;
  mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 80%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-4 {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.testimonial-wrapper-4 .testimonial_item_3 {
  background-color: var(--empe-color-theme-dark);
  position: relative;
  width: 100%;
  padding: 40px 30px 45px;
}
.testimonial-wrapper-4 .testimonial_item_3 .author_avatar_wrapper {
  display: block;
}
.testimonial-wrapper-4 .testimonial_item_3 .author_avatar_wrapper .author_info {
  margin-top: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-4 .testimonial_item_3 {
    padding-bottom: 86px;
  }
}
.testimonial-wrapper-4 .scroll-slider {
  width: 33.33%;
  flex-direction: column;
  flex: 1;
  --gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-wrapper-4 .scroll-slider {
    width: 50%;
    --gap: 20px;
  }
  .testimonial-wrapper-4 .scroll-slider:last-child {
    display: none;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-4 .scroll-slider {
    width: 100%;
    --gap: 20px;
  }
  .testimonial-wrapper-4 .scroll-slider:not(:first-child) {
    display: none;
  }
}
.testimonial-wrapper-4 .scroll-slider:nth-child(2) .scroll-wrapper {
  animation-delay: 2s;
  animation-duration: 20s;
}
.testimonial-wrapper-4 .scroll-wrapper {
  animation: vrt-scroll 30s linear infinite;
  flex-direction: column;
}
.testimonial-wrapper-4 [dir=rtl] .scroll-wrapper {
  animation-delay: 2s;
  animation-duration: 20s;
}
.testimonial-wrapper-4 [dir=rtl] .scroll-wrapper .testimonial_item_3 {
  direction: ltr;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-4 .star-ratings {
    position: absolute;
    bottom: 45px;
    left: 32px;
  }
}

.author_avatar_wrapper .author_avatar {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.author_avatar_wrapper .author_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author_avatar_wrapper .author_info {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.author_avatar_wrapper .author_info .name {
  margin: 0;
}
.author_avatar_wrapper .author_info .designation {
  color: var(--empe-color-theme-dark-3);
  font-size: 14px;
  line-height: 1.3;
  display: flex;
  margin-top: 5px;
}

@keyframes vrt-scroll {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(-100% - var(--gap)));
  }
}
@keyframes vrt-scroll-rtl {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc(100% + var(--gap)));
  }
}
/* !END: Testimonial CSS */
/**----------------------------------------
START: Pricing CSS
----------------------------------------*/
.price_switcher.style-2 .toggle_switcher {
  width: 203px;
  height: 52px;
  border-radius: 43px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.price_switcher.style-2 .toggle_switcher .toggle-switch {
  width: 100%;
  height: 100%;
  background-color: var(--empe-color-theme-primary);
  position: absolute;
  z-index: -1;
}
.price_switcher.style-2 .toggle_switcher .toggle-switch::before {
  background-color: var(--empe-color-theme-dark);
  width: 104px;
  height: 42px;
  border-radius: 50px;
  left: 4px;
}
.price_switcher.style-2 .toggle_switcher .toggle-m {
  color: var(--empe-color-heading-primary);
  transform: translateX(2px);
}
.price_switcher.style-2 .toggle_switcher .toggle-y {
  color: var(--empe-color-theme-dark);
  transform: translateX(-9px);
}
.price_switcher.style-2 .toggle_switcher .toggle-checkbox:checked + .toggle-switch::before {
  left: 94px;
}
.price_switcher.style-2 .toggle_switcher .toggle-checkbox:checked ~ .toggle-m {
  color: var(--empe-color-theme-dark);
}
.price_switcher.style-2 .toggle_switcher .toggle-checkbox:checked ~ .toggle-y {
  color: var(--empe-color-heading-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-table-wrap {
    overflow: hidden;
    overflow-x: auto;
    padding: 0;
  }
}

.pricing-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-wrapper {
    flex-direction: column;
    gap: 30px;
  }
}

.pricing-box {
  background: var(--empe-color-theme-bg);
  flex: 1;
  border: 1px solid var(--empe-color-border-1);
  position: relative;
  transition: 0.3s;
}
.pricing-box:first-child {
  border-radius: 10px 0 0 10px;
}
.pricing-box:last-child {
  border-radius: 0 10px 10px 0;
}
.pricing-box:not(:last-child) {
  border-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box {
    width: 100%;
    overflow: hidden;
    padding-bottom: 4px;
  }
  .pricing-box, .pricing-box:first-child, .pricing-box:last-child, .pricing-box:not(:last-child) {
    border-radius: 10px;
  }
}
.pricing-box .pricing-header {
  padding: 35px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: var(--empe-color-theme-bg);
}
.pricing-box .pricing-header .title {
  font-size: 20px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing-box .pricing-header {
    min-height: 300px;
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing-box .pricing-header {
    min-height: auto;
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .pricing-box .pricing-header {
    min-height: auto;
    padding: 30px 15px;
  }
}
.pricing-box .pricing-package {
  display: flex;
  gap: 4px;
  font-size: 64px;
  line-height: 0.8;
  color: var(--empe-color-heading-primary);
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  margin: 30px 0 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box .pricing-package {
    font-size: 54px;
    margin: 25px 0 30px;
  }
}
.pricing-box .pricing-package .currency {
  font-size: 20px;
  color: var(--empe-color-text-body);
}
.pricing-box .pricing-package .price {
  letter-spacing: -0.03em;
}
.pricing-box .pricing-package .period {
  font-size: 16px;
  font-weight: var(--empe-fw-regular);
  color: var(--empe-color-text-body);
  margin-top: auto;
}
.pricing-box .desc {
  line-height: 1.5;
  margin-bottom: 0;
}
.pricing-box .pricing-btn {
  background-color: var(--empe-color-theme-dark);
  color: var(--empe-color-heading-primary);
  padding: 15px 47px;
  border: 1px solid var(--empe-color-border-1);
}
.pricing-box .pricing-btn .btn-text span {
  color: var(--empe-color-heading-primary);
}
.pricing-box .pricing-btn .btn-icon {
  font-size: 16px;
  width: 24px;
  height: 24px;
  background-color: var(--empe-color-theme-primary);
}
.pricing-box .pricing-btn .btn-icon i {
  color: var(--empe-color-theme-dark);
}
.pricing-box .pricing-btn .btn-icon::before {
  display: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .pricing-box .pricing-btn {
    padding: 15px 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box .pricing-btn {
    padding: 12px 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box .pricing-btn {
    width: 100%;
  }
}
.pricing-box .features div {
  min-height: 76px;
  padding: 12px 35px;
  border-top: 1px solid var(--empe-color-border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--empe-color-heading-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing-box .features div {
    padding: 12px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box .features div {
    justify-content: space-between;
    min-height: auto;
  }
  .pricing-box .features div span:first-child {
    display: block;
  }
}
@media (max-width: 575px) {
  .pricing-box .features div {
    padding: 12px 15px;
  }
}
.pricing-box .features-wrapper .title {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box .features-wrapper .title {
    font-size: 18px;
    padding-inline-start: 20px;
    padding-bottom: 20px;
    padding-top: 4px;
    display: block;
  }
}
@media (max-width: 575px) {
  .pricing-box .features-wrapper .title {
    padding-inline-start: 15px;
  }
}
.pricing-box .features-wrapper .features div span:first-child {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box .features-wrapper .features div span:first-child {
    display: block;
  }
}
.pricing-box .icon {
  font-size: 20px;
  color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box.package-name {
    display: none;
  }
}
.pricing-box.package-name .pricing-header {
  justify-content: flex-end;
  align-items: flex-start;
  text-align: start;
}
.pricing-box.package-name .pricing-header .title {
  font-size: 24px;
  max-width: 160px;
  margin-bottom: 0;
}
.pricing-box.package-name .features div {
  justify-content: flex-start;
}
.pricing-box.popular {
  background: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-theme-primary);
  border-top-width: 0;
  border-radius: 0 0 10px 10px;
  padding-bottom: 30px;
  margin-bottom: -30px;
}
.pricing-box.popular .pricing-header {
  background-color: var(--empe-color-theme-dark);
}
.pricing-box.popular .pricing-btn {
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  border-color: var(--empe-color-theme-primary);
}
.pricing-box.popular .pricing-btn .btn-text span {
  color: var(--empe-color-theme-dark);
  text-shadow: 0 30px 0;
}
.pricing-box.popular .pricing-btn .btn-icon {
  background-color: var(--empe-color-theme-dark);
}
.pricing-box.popular .pricing-btn .btn-icon i {
  color: var(--empe-color-heading-primary);
}
.pricing-box.popular .features div {
  border-color: transparent;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box.popular {
    padding-top: 42px;
    padding-bottom: 10px;
    flex-direction: column;
    margin-bottom: 0;
    border-top-width: 1px;
    border-radius: 10px;
  }
  .pricing-box.popular .pricing-header {
    padding-top: 24px;
  }
  .pricing-box.popular .features div {
    border-color: var(--empe-color-border-1);
  }
}
.pricing-box .popular-tag {
  width: calc(100% + 2px);
  background: linear-gradient(rgba(5, 5, 5, 0.25) 10%, rgba(211, 237, 49, 0.25) 100%);
  color: var(--empe-color-theme-primary);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: var(--empe-fw-sbold);
  padding: 18px;
  position: absolute;
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--empe-color-theme-primary);
  border-bottom: 0;
  top: -51px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box .popular-tag {
    font-size: 13px;
    padding: 14px;
    top: -42px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-box .popular-tag {
    top: 0;
    border-radius: 0;
    border: 0;
  }
}

/* !END: Pricing CSS */
/**----------------------------------------
START: Technologies CSS
----------------------------------------*/
.h5-technologies-section {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}
.h5-technologies-section .bg-img {
  opacity: 0.15;
  mix-blend-mode: luminosity;
}
.h5-technologies-section .blur-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.h5-technologies-section .blur-shape-2 {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}
.h5-technologies-section .sec-heading-centered {
  max-width: 655px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-technologies-section .sec-heading-centered {
    margin-bottom: 40px;
  }
}
.h5-technologies-section .desc {
  font-size: 18px;
  max-width: 480px;
  margin: 14px auto 0;
}
.h5-technologies-wrap .tech-item {
  background-color: var(--empe-color-theme-dark);
  border-radius: 135px;
  max-width: 284px;
  padding: 22px;
  align-items: center;
  flex: 0 0 auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-technologies-wrap .tech-item {
    max-width: 270px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-technologies-wrap .tech-item {
    max-width: 210px;
    padding: 15px;
  }
}
.h5-technologies-wrap .tech-icon {
  max-width: 74px;
  height: 74px;
  border-radius: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-technologies-wrap .tech-icon {
    max-width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-technologies-wrap .tech-icon {
    max-width: 50px;
    height: 50px;
  }
}
.h5-technologies-wrap .tech-content .title {
  font-size: 28px;
  margin: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-technologies-wrap .tech-content .title {
    font-size: 22px;
  }
}
.h5-technologies-wrap .scroll-slider {
  --gap: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-technologies-wrap .scroll-slider {
    --gap: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-technologies-wrap .scroll-slider {
    --gap: 25px;
  }
}

/* !END: Technologies CSS */
/**----------------------------------------
START: Faq CSS
----------------------------------------*/
.h5-faq-section {
  position: relative;
  z-index: 1;
}
.h5-faq-section .sec-heading {
  max-width: 966px;
  width: 100%;
  margin-inline-start: auto;
  margin-inline-end: auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h5-faq-section .sec-heading {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h5-faq-section .sec-heading {
    max-width: 800px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-faq-section .sec-heading {
    max-width: 650px;
  }
}
.h5-faq-section .tj_accordion {
  max-width: 966px;
  width: 100%;
  margin: auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h5-faq-section .tj_accordion {
    max-width: 860px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h5-faq-section .tj_accordion {
    max-width: 800px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-faq-section .tj_accordion {
    max-width: 650px;
  }
}
.h5-faq-section .shape {
  position: absolute;
  left: 0;
  bottom: 120px;
  max-width: 232px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h5-faq-section .shape {
    max-width: 180px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-faq-section .shape {
    max-width: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-faq-section .shape {
    display: none;
  }
}
.h5-faq-section .shape-2 {
  left: auto;
  bottom: auto;
  right: 0;
  top: 250px;
}

/* !END: Faq CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area.header-6.header-absolute {
  top: 30px;
  padding: 0 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-6.header-absolute {
    top: 15px;
    padding: 0 15px;
  }
}
.header-area.header-6.header-absolute .header-bottom {
  border-bottom: 1px solid var(--empe-color-border-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-6.header-absolute .header-bottom {
    padding: 0;
  }
}
.header-area.header-6.header-absolute .site_logo {
  padding: 20px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-6.header-absolute .site_logo {
    padding: 15px 0;
  }
}
.header-area.header-6.header-absolute .mainmenu > ul {
  column-gap: 0;
}
.header-area.header-6.header-absolute .mainmenu > ul > li > a {
  padding: 9px;
  padding-inline-start: 16px;
  padding-inline-end: 31px;
  background-color: var(--empe-color-theme-dark);
  border-radius: 21px;
  border: 1px solid var(--empe-color-border-1);
}
.header-area.header-6.header-absolute .mainmenu > ul > li > a:hover {
  border-color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-6.header-absolute .mainmenu > ul > li > a {
    padding: 6px;
    padding-inline-start: 11px;
    padding-inline-end: 26px;
  }
}
.header-area.header-6.header-absolute .mainmenu > ul > li.current-menu-ancestor > a {
  border-color: var(--empe-color-theme-primary);
}
.header-area.header-6.header-absolute .mainmenu > ul > li.menu-item-has-children > a::after, .header-area.header-6.header-absolute .mainmenu > ul > li.has-dropdown > a::after {
  top: 40%;
  right: 13px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-6.header-absolute .mainmenu > ul > li.menu-item-has-children > a::after, .header-area.header-6.header-absolute .mainmenu > ul > li.has-dropdown > a::after {
    top: 36%;
    right: 10px;
  }
}
.header-area.header-6.header-absolute .mainmenu > ul > li .sub-menu > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-6 .tj-copyright-area::before {
  display: none;
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.h6-hero {
  min-height: 1000px;
  padding-top: 187px;
  padding-bottom: 0;
  border-radius: 16px;
  background-color: var(--empe-color-theme-bg);
  z-index: 0;
}
.h6-hero .hero-bg {
  opacity: 1;
  border-radius: 16px;
  background-position: center bottom;
  mix-blend-mode: normal;
}
.h6-hero .banner-content {
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding-top: 0;
  position: relative;
  z-index: 2;
}
.h6-hero .banner-content .sub-title {
  color: var(--empe-color-heading-primary);
  text-transform: capitalize;
  letter-spacing: 0;
  background-color: rgba(250, 251, 251, 0.08);
  backdrop-filter: blur(20px);
  padding: 5px 10px;
  border-radius: 40px;
}
.h6-hero .banner-content .sub-title i {
  font-size: 18px;
  color: var(--empe-color-theme-primary);
}
.h6-hero .banner-content .btn-area {
  gap: 15px;
}
.h6-hero .banner-content .list-area {
  margin-top: 33px;
  margin-bottom: 0;
}
.h6-hero .banner-content .list-area .list-style-1 {
  gap: 30px;
}
.h6-hero .banner-content .list-area .list-style-1 li {
  color: var(--empe-color-common-white);
}
.h6-hero .banner-content .list-area .list-style-1 li span {
  color: var(--empe-color-theme-primary);
  background: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-hero .banner-content .list-area .list-style-1 {
    gap: 20px;
  }
}
.h6-hero .banner-title {
  font-size: 78px;
  line-height: 1.179;
}
.h6-hero .banner-title span > span {
  display: inline-flex;
  align-items: center;
  transform: translateY(2px);
  transition: none;
}
.h6-hero .banner-title span > span > span:has(img) {
  display: inline-flex;
  align-items: center;
}
.h6-hero .banner-title span > span > span:has(img) img {
  width: 65px;
  height: 65px;
  background-color: var(--empe-color-border-1);
  padding: 2px;
  border-radius: 50%;
  line-height: 1;
  margin-inline-start: -22px;
}
.h6-hero .banner-title span > span > span:has(img) img:first-child {
  margin-inline-start: 0;
}
.h6-hero .banner-desc {
  max-width: 595px;
  width: 100%;
  font-size: 18px;
  margin-top: 18px;
}
@media (max-width: 575px) {
  .h6-hero .banner-desc {
    font-size: 16px;
  }
}
.h6-hero .hero-orbit {
  position: absolute;
  inset-inline-start: 50%;
  top: 85px;
  transform: translateX(-50%);
  max-width: 1410px;
  width: 100%;
  z-index: -1;
}
.h6-hero .hero-orbit-icon {
  position: absolute;
  background-color: var(--empe-color-border-1);
  border-radius: 100%;
  animation: zoomEffect2 1.5s infinite linear;
  z-index: 0;
}
.h6-hero .hero-orbit-icon-wrapper {
  height: 354px;
  position: absolute;
  inset-inline-start: -20px;
  inset-inline-end: -24px;
  top: 150px;
  z-index: 0;
}
.h6-hero .hero-orbit-icon:nth-child(1) {
  top: 44px;
  inset-inline-start: 0;
}
.h6-hero .hero-orbit-icon:nth-child(2) {
  bottom: 0;
  inset-inline-start: 20%;
}
.h6-hero .hero-orbit-icon:nth-child(3) {
  bottom: 60px;
  inset-inline-end: 17%;
}
.h6-hero .hero-orbit-icon:nth-child(4) {
  top: 0;
  inset-inline-end: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-hero .hero-orbit {
    display: none;
  }
}
.h6-hero .hero-chart-wrapper {
  max-width: 1362px;
  padding-inline-start: 15px;
  padding-inline-end: 15px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  mask-image: linear-gradient(180deg, #d9d9d9 50%, rgba(115, 115, 115, 0) 112.77%);
  gap: 30px;
  margin-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-hero .hero-chart-wrapper {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-hero .hero-chart-wrapper {
    margin-top: 70px;
    mask-image: linear-gradient(180deg, #d9d9d9 55%, rgba(115, 115, 115, 0) 127.77%);
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h6-hero .hero-orbit {
    max-width: 1265px;
  }
  .h6-hero .hero-orbit-icon:nth-child(2) {
    inset-inline-start: 24%;
  }
  .h6-hero .hero-orbit-icon:nth-child(3) {
    inset-inline-end: 19%;
  }
  .h6-hero .hero-chart-wrapper {
    max-width: 1235px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-hero .hero-orbit {
    max-width: 1064px;
  }
  .h6-hero .hero-orbit-icon-wrapper {
    height: 446px;
    inset-inline-start: -25px;
    inset-inline-end: -27px;
    top: 48px;
  }
  .h6-hero .hero-orbit-icon:nth-child(2) {
    inset-inline-start: 34%;
  }
  .h6-hero .hero-orbit-icon:nth-child(3) {
    inset-inline-end: 25%;
  }
  .h6-hero .hero-chart-wrapper {
    max-width: 1100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-hero .banner-title {
    font-size: 58px;
  }
  .h6-hero .banner-title span > span > span:has(img) img {
    margin-inline-start: -19px;
    width: 53px;
    height: 53px;
  }
  .h6-hero .hero-orbit {
    max-width: 870px;
  }
  .h6-hero .hero-orbit-icon-wrapper {
    height: 400px;
    inset-inline-start: -25px;
    inset-inline-end: -27px;
    top: 48px;
  }
  .h6-hero .hero-orbit-icon:nth-child(2) {
    inset-inline-start: 19%;
  }
  .h6-hero .hero-orbit-icon:nth-child(3) {
    inset-inline-end: 12%;
  }
  .h6-hero .hero-chart-wrapper {
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-hero {
    min-height: 870px;
    padding-top: 158px;
  }
  .h6-hero .banner-title {
    font-size: 48px;
  }
  .h6-hero .banner-title span > span > span:has(img) img {
    margin-inline-start: -15px;
    width: 45px;
    height: 45px;
  }
  .h6-hero .hero-orbit {
    max-width: 657px;
  }
  .h6-hero .hero-orbit-icon-wrapper {
    height: 348px;
    inset-inline-start: -25px;
    inset-inline-end: -27px;
    top: 10px;
  }
  .h6-hero .hero-orbit-icon:nth-child(2) {
    inset-inline-start: 12%;
    bottom: 16%;
  }
  .h6-hero .hero-orbit-icon:nth-child(3) {
    inset-inline-end: 12%;
  }
  .h6-hero .hero-chart-wrapper {
    gap: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h6-hero {
    min-height: 870px;
    padding-top: 158px;
  }
  .h6-hero .banner-title {
    font-size: 45px;
  }
  .h6-hero .banner-title span > span > span:has(img) img {
    margin-inline-start: -10px;
    width: 45px;
    height: 45px;
  }
  .h6-hero .hero-orbit {
    max-width: 657px;
  }
  .h6-hero .hero-orbit-icon {
    width: 40px;
  }
  .h6-hero .hero-orbit-icon-wrapper {
    height: 284px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: 10px;
  }
  .h6-hero .hero-orbit-icon:nth-child(1) {
    top: 9px;
    inset-inline-start: 7%;
  }
  .h6-hero .hero-orbit-icon:nth-child(2) {
    inset-inline-start: 5%;
    bottom: 0;
  }
  .h6-hero .hero-orbit-icon:nth-child(3) {
    inset-inline-end: 6%;
    bottom: 0;
  }
  .h6-hero .hero-orbit-icon:nth-child(4) {
    inset-inline-end: 7%;
  }
  .h6-hero .hero-chart-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }
  .h6-hero .hero-chart-img {
    width: 100%;
  }
  .h6-hero .hero-chart-img img {
    width: 100%;
  }
  .h6-hero .hero-chart-img:nth-child(2) {
    order: 3;
  }
  .h6-hero .hero-chart-img:nth-child(3) {
    order: 2;
  }
}
@media (max-width: 575px) {
  .h6-hero {
    min-height: 870px;
    padding-top: 158px;
  }
  .h6-hero .banner-title {
    font-size: 36px;
  }
  .h6-hero .banner-title span > span > span:has(img) img {
    margin-inline-start: -10px;
    width: 38px;
    height: 38px;
  }
  .h6-hero .hero-orbit {
    max-width: 657px;
  }
  .h6-hero .hero-orbit-icon {
    width: 40px;
  }
  .h6-hero .hero-orbit-icon-wrapper {
    height: 410px;
    inset-inline-start: 0;
    inset-inline-end: 0;
    top: 10px;
  }
  .h6-hero .hero-orbit-icon:nth-child(1) {
    top: 9px;
    inset-inline-start: 5%;
  }
  .h6-hero .hero-orbit-icon:nth-child(2) {
    inset-inline-start: 5%;
    bottom: 0;
  }
  .h6-hero .hero-orbit-icon:nth-child(3) {
    inset-inline-end: 6%;
    bottom: 0;
  }
  .h6-hero .hero-orbit-icon:nth-child(4) {
    inset-inline-end: 6%;
  }
  .h6-hero .hero-chart-wrapper {
    flex-wrap: wrap;
    gap: 15px;
  }
  .h6-hero .hero-chart-img {
    width: 100%;
  }
  .h6-hero .hero-chart-img img {
    width: 100%;
  }
  .h6-hero .hero-chart-img:nth-child(2) {
    order: 3;
  }
  .h6-hero .hero-chart-img:nth-child(3) {
    order: 2;
  }
}

/* !END: Hero CSS */
/**----------------------------------------
START: Choose CSS
----------------------------------------*/
.h6-choose-box .choose-inner {
  border-radius: 10px;
}
.h6-choose-box:hover .choose-inner {
  border-color: var(--empe-color-theme-primary);
  background-color: var(--empe-color-theme-primary);
}
.h6-choose-box:hover .choose-icon {
  background-color: var(--empe-color-theme-dark);
  border-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-primary);
  transform: rotateY(360deg);
}
.h6-choose-box:hover .title {
  color: var(--empe-color-theme-dark);
}
.h6-choose-box:hover .desc {
  color: var(--empe-color-theme-dark);
}

/* !END: Choose CSS */
/**----------------------------------------
START: insights CSS
----------------------------------------*/
.insights-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.insights-box {
  padding: 40px 30px 0;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.insights-box .title {
  margin-bottom: 16px;
}
.insights-box .desc {
  margin-bottom: 54px;
}
.insights-box:nth-child(1), .insights-box:nth-child(4) {
  width: calc(67% - 15px);
}
.insights-box:nth-child(2), .insights-box:nth-child(3) {
  width: calc(33% - 15px);
}
.insights-img {
  mask-image: linear-gradient(0deg, rgba(25, 26, 24, 0) 0%, #191a18 25%);
}
.insights-img img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .insights-wrapper {
    gap: 20px;
  }
  .insights-box {
    padding: 30px 30px 0;
  }
  .insights-box .desc {
    margin-bottom: 40px;
  }
  .insights-box:nth-child(1), .insights-box:nth-child(4) {
    width: calc(55% - 10px);
  }
  .insights-box:nth-child(2), .insights-box:nth-child(3) {
    width: calc(45% - 10px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .insights-box {
    padding: 35px 24px 0;
  }
  .insights-box .desc {
    margin-bottom: 40px;
  }
  .insights-box:nth-child(1), .insights-box:nth-child(4) {
    width: 100%;
  }
  .insights-box:nth-child(2), .insights-box:nth-child(3) {
    width: 100%;
  }
}

/* !END: insights CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.h6-testimonial-section .sec-heading {
  max-width: 500px;
}
.h6-testimonial-section .sec-heading .testimonial-quote {
  width: 80px;
  height: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 51px;
  color: var(--empe-color-theme-dark);
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  margin-bottom: 25px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-testimonial-section .sec-heading .testimonial-quote {
    width: 70px;
    height: 70px;
    font-size: 45px;
    margin-bottom: 20px;
  }
}
.h6-testimonial-section .sec-heading .sec-title {
  margin-bottom: 18px;
  font-size: var(--empe-fs-h1);
  line-height: 1.027;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-testimonial-section .sec-heading .sec-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-testimonial-section .sec-heading .sec-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-testimonial-section .sec-heading .sec-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-testimonial-section .sec-heading .sec-title {
    margin-bottom: 14px;
  }
}
.h6-testimonial-section .sec-heading .desc {
  margin-bottom: 28px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-testimonial-section .sec-heading .desc {
    margin-bottom: 24px;
  }
}

.testimonial-wrapper-5 {
  max-width: 645px;
  margin-inline-start: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper-5 {
    max-width: 100%;
    gap: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-5 {
    max-width: 100%;
    gap: 20px;
  }
}
.testimonial-wrapper-5 .testimonial_header {
  justify-content: inherit;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.testimonial-wrapper-5 .star-ratings {
  margin-top: 0;
}
.testimonial-wrapper-5 .testimonial_item_3 {
  width: 100%;
  padding: 46px 30px 30px;
}
.testimonial-wrapper-5 .testimonial_item_3 .author_avatar_wrapper {
  margin-top: 22px;
  margin-bottom: 0;
  padding-top: 30px;
  border-top: 1px solid var(--empe-color-border-1);
  gap: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-5 .testimonial_item_3 {
    padding: 36px 20px 30px;
  }
}

/* !END: Testimonial CSS */
/**----------------------------------------
START: Technologies CSS
----------------------------------------*/
.h6-technologies-section {
  background-color: var(--empe-color-theme-bg);
  min-height: 756px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.h6-technologies-section .sec-heading-centered {
  max-width: 555px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.h6-technologies-section .desc {
  font-size: 18px;
  max-width: 480px;
  margin: 14px auto 0;
  margin-bottom: 24px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-technologies-section {
    min-height: 718px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-technologies-section {
    min-height: 664px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-technologies-section {
    min-height: 580px;
  }
  .h6-technologies-section .sec-heading-centered {
    max-width: 440px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-technologies-section {
    min-height: auto;
    padding-bottom: 0;
  }
  .h6-technologies-section .desc {
    font-size: 16px;
  }
}

.technologies-rotator {
  transform: translateY(-54%);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  background: linear-gradient(0deg, rgba(211, 237, 49, 0.25) 0%, rgba(5, 5, 5, 0.25) 50%);
  box-shadow: inset 0 0 58px var(--empe-color-border-2);
  border-radius: 50%;
}
.technologies-rotator-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(211, 237, 49, 0.12) -21.23%, rgba(5, 5, 5, 0.12) 100%);
  mask-image: linear-gradient(0deg, #d9d9d9 19%, rgba(115, 115, 115, 0) 91.61%);
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .technologies-rotator-wrapper {
    margin-inline-start: -50px;
    margin-inline-end: -50px;
    width: auto;
    position: static;
    margin-top: -42%;
    padding-bottom: 80px;
    mask-image: linear-gradient(0deg, #d9d9d9 47%, rgba(115, 115, 115, 0) 101.61%);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .technologies-rotator {
    transform: translateY(-45%);
    margin-inline-start: 40px;
    margin-inline-end: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .technologies-rotator {
    transform: translateY(-38%);
    margin-inline-start: 40px;
    margin-inline-end: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .technologies-rotator {
    transform: translateY(-23%);
    margin-inline-start: 40px;
    margin-inline-end: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .technologies-rotator {
    transform: translateY(0);
    margin-top: -54%;
  }
}
.technologies-circle {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 3px solid var(--empe-color-border-2);
  border-radius: 50%;
  transform: rotate(0deg);
  transition: transform 0.7s linear;
  animation: tj-rotate 50s infinite linear;
}
.technologies-circle .tech-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  max-width: inherit;
  transform-origin: center center;
}
.technologies-circle .tech-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  animation: tj-rotate-reverse 50s infinite linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .technologies-circle .tech-icon {
    width: 64px;
    height: 64px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .technologies-circle .tech-icon {
    width: 44px;
    height: 44px;
  }
}
.technologies-circle:hover {
  animation-play-state: paused;
}
.technologies-circle:hover img {
  animation-play-state: paused;
}

@keyframes tj-rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
  }
}
@keyframes tj-rotate-reverse {
  from {
    -webkit-transform: rotate(359deg);
  }
  to {
    -webkit-transform: rotate(0deg);
  }
}
/* !END: Technologies CSS */

/**----------------------------------------
START: CTA CSS
----------------------------------------*/
.h6-cta-section {
  background-color: var(--empe-color-theme-bg);
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
}
.h6-cta-section .sec-heading {
  max-width: 640px;
  margin-bottom: 0;
}
.h6-cta-section .sec-heading .sec-title {
  margin-bottom: 26px;
  font-size: var(--empe-fs-h1);
  line-height: 1.027;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h6-cta-section .sec-heading .sec-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h6-cta-section .sec-heading .sec-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-cta-section .sec-heading .sec-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-cta-section .sec-heading .sec-title {
    font-size: 39px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-cta-section .sec-heading {
    padding-bottom: 30px;
  }
}
.h6-cta-section .cta-area {
  background: transparent;
  padding: 0;
  border-radius: 0;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
  overflow: visible;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h6-cta-section .cta-area {
    padding-inline-start: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-cta-section .cta-area {
    flex-wrap: wrap;
  }
}
.h6-cta-section .cta-app-store {
  display: flex;
  gap: 15px;
}
.h6-cta-section .cta-app-store a:hover {
  transform: translateY(-3px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h6-cta-section .cta-app-store {
    flex-wrap: wrap;
  }
}

/* !END: CTA CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area.header-7 .header-wrapper {
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  backdrop-filter: none;
}
.header-area.header-7.header-absolute {
  top: 24px;
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-7.header-absolute .header-bottom {
    padding: 0;
  }
}
.header-area.header-7.header-absolute .header-wrapper {
  padding: 0 15px;
  border-radius: 8px;
}
.header-area.header-7.header-absolute .site_logo {
  padding: 13px 0;
}
.header-area.header-7.header-absolute .mainmenu > ul > li > a {
  padding: 28px 0;
}
.header-area.header-7.header-absolute .mainmenu > ul > li.has-dropdown > a {
  padding-inline-end: 18px;
}
.header-area.header-7.header-absolute .mainmenu > ul > li.has-dropdown > a::after {
  top: 31px;
}
.header-area.header-7.header-absolute .header-right-item {
  gap: 20px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-7.header-absolute {
    top: 15px;
  }
}

.number-wrapper {
  line-height: 1;
}
.number-wrapper .number {
  color: var(--empe-color-common-white);
  font-size: 18px;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  display: inline-flex;
  align-items: center;
  line-height: 1;
  gap: 6px;
}
.number-wrapper .number i {
  color: var(--empe-color-theme-primary);
  font-size: 24px;
  display: inline-flex;
}
.number-wrapper .number span {
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 100%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  display: inline;
}
.number-wrapper .number:hover span {
  background-size: 100% 1px;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-section.footer-7 {
    padding-top: 73px;
  }
}
.tj-footer-section.footer-7::before {
  max-width: 396px;
  height: 396px;
  filter: blur(150px);
  opacity: 1;
}
.tj-footer-section.footer-7 .footer-cta-content {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  text-align: start;
}
.tj-footer-section.footer-7 .footer-cta-content .title {
  width: 555px;
  max-width: 100%;
  font-size: 57px;
  letter-spacing: -0.03em;
  line-height: 1.027;
  margin-bottom: 0;
  transition: none;
}
.tj-footer-section.footer-7 .footer-cta-content .title span {
  color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-section.footer-7 .footer-cta-content .title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-section.footer-7 .footer-cta-content {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-section.footer-7 .footer-cta-content .title {
    font-size: 33px;
  }
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form {
  width: 532px;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-section.footer-7 .footer-cta .subscribe_form {
    width: 555px;
    max-width: 100%;
  }
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form form {
  position: relative;
  z-index: 1;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form form input[type=email] {
  min-height: 72px;
  padding: 22px 70px 22px 20px;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form form button[type=submit],
.tj-footer-section.footer-7 .footer-cta .subscribe_form form input[type=submit] {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 62px;
  height: calc(100% - 10px);
  background-color: var(--empe-color-theme-primary);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: var(--empe-color-theme-dark);
  transition: all 0.3s ease-in-out 0s;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form form button[type=submit] i,
.tj-footer-section.footer-7 .footer-cta .subscribe_form form button[type=submit] svg,
.tj-footer-section.footer-7 .footer-cta .subscribe_form form input[type=submit] i,
.tj-footer-section.footer-7 .footer-cta .subscribe_form form input[type=submit] svg {
  display: inline-flex;
  line-height: 1;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form form button[type=submit] svg,
.tj-footer-section.footer-7 .footer-cta .subscribe_form form input[type=submit] svg {
  max-width: 24px;
  height: auto;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form form button[type=submit]:hover i,
.tj-footer-section.footer-7 .footer-cta .subscribe_form form button[type=submit]:hover svg,
.tj-footer-section.footer-7 .footer-cta .subscribe_form form input[type=submit]:hover i,
.tj-footer-section.footer-7 .footer-cta .subscribe_form form input[type=submit]:hover svg {
  animation: bellShake 1s linear infinite;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form input[type=checkbox] {
  position: relative;
  margin-inline-end: 8px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--empe-color-theme-dark-3);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form input[type=checkbox]::before {
  content: "\e941";
  font-size: 19px;
  line-height: 1;
  font-family: "empe-icon" !important;
  color: var(--empe-color-common-white);
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 16px;
  transform: scale(0.5);
  margin-inline-start: -1px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form input[type=checkbox]:checked {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form input[type=checkbox]:checked::before {
  color: var(--empe-color-theme-dark);
  transform: scale(1);
  opacity: 1;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form label {
  font-size: 16px;
  color: var(--empe-color-text-body);
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form label a {
  color: var(--empe-color-text-body);
  font-weight: var(--empe-fw-sbold);
  margin-inline-start: 4px;
}
.tj-footer-section.footer-7 .footer-cta .subscribe_form label a:hover {
  color: var(--empe-color-theme-primary);
}
.tj-footer-section.footer-7 .footer_widget_wrapper {
  padding: 100px 40px 88px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-section.footer-7 .footer_widget_wrapper {
    padding: 80px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-section.footer-7 .footer_widget_wrapper {
    padding: 70px 15px;
  }
}
.tj-footer-section.footer-7 .footer-widget .title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tj-footer-section.footer-7 .footer-widget .title::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--empe-color-theme-primary);
  border-radius: 100%;
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.h7-hero {
  background-color: transparent;
  padding-top: 174px;
  padding-bottom: 0;
  margin: 0;
  border-radius: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-hero {
    padding-top: 154px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero {
    padding-top: 144px;
  }
}
.h7-hero-shape {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: -1;
}
.h7-hero .banner-content {
  max-width: 100%;
}
.h7-hero .banner-content .btn-area {
  margin-top: 0;
}
.h7-hero .banner-content .list-area {
  margin-top: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .banner-content .list-area {
    margin-bottom: 0;
  }
}
.h7-hero .banner-content .list-style-1 {
  gap: 10px 30px;
}
.h7-hero .banner-content .list-style-1 li {
  color: var(--empe-color-text-body);
  letter-spacing: -0.02em;
}
.h7-hero .banner-content .list-style-1 li span {
  background-color: var(--empe-color-theme-dark);
  border: 1px solid var(--empe-color-border-1);
  color: var(--empe-color-theme-primary);
  font-weight: var(--empe-fw-regular);
}
.h7-hero .banner-action {
  margin-top: 20px;
}
.h7-hero .banner-title {
  max-width: 1100px;
  font-size: 90px;
  line-height: 1.122;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h7-hero .banner-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-hero .banner-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h7-hero .banner-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .banner-title {
    font-size: 45px;
  }
}
.h7-hero .banner-action {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 25px 30px;
}
.h7-hero .banner-img-area {
  margin-inline-start: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  margin-top: 120px;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
}
.h7-hero .banner-img-area::before {
  display: none;
}
.h7-hero .banner-img-area .banner-img {
  mask-image: none;
  max-width: calc(61.9% - 15px);
  border-radius: 12px;
}
.h7-hero .banner-img-area .banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .banner-img-area {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-hero .banner-img-area {
    max-width: 100%;
    gap: 15px;
  }
  .h7-hero .banner-img-area .banner-img {
    max-width: calc(61.9% - 7.5px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-hero .banner-img-area {
    margin-top: 100px;
  }
  .h7-hero .banner-img-area .banner-img {
    max-width: calc(55% - 7.5px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .banner-img-area {
    margin-top: 70px;
  }
  .h7-hero .banner-img-area .banner-img {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h7-hero .banner-img-area {
    max-width: 100%;
  }
}
.h7-hero .title-img {
  display: inline-block;
  line-height: 1;
}
.h7-hero .title-img-1 {
  height: 100px;
}
.h7-hero .title-img-1 img {
  margin-inline-start: 5px;
}
.h7-hero .title-img-2 img {
  margin-top: -18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-hero .title-img-1 {
    height: 90px;
    width: 110px;
  }
  .h7-hero .title-img-2 {
    width: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h7-hero .title-img-1 {
    height: 67px;
    width: 80px;
  }
  .h7-hero .title-img-1 img {
    margin-inline-start: 1px;
  }
  .h7-hero .title-img-2 {
    width: 55px;
  }
  .h7-hero .title-img-2 img {
    margin-top: -12px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .title-img-1 {
    height: 50px;
    width: 50px;
  }
  .h7-hero .title-img-2 {
    width: 40px;
  }
  .h7-hero .title-img-2 img {
    margin-top: -6px;
  }
}
.h7-hero .customers {
  max-width: 189px;
  text-align: end;
  margin-top: 15px;
}
.h7-hero .customers-box {
  inset-inline-end: 0;
  bottom: 0;
  padding: 45px 60px 54px;
  max-width: calc(38.1% - 15px);
  position: relative;
  border-radius: 12px;
  z-index: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h7-hero .customers-box {
    max-width: calc(38.1% - 7.5px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-hero .customers-box {
    padding: 25px 40px 34px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-hero .customers-box {
    max-width: calc(45% - 7.5px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .customers-box {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .customers-box {
    margin-top: 0;
    padding: 30px 20px 34px;
  }
}
.h7-hero .customers-box-bg {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
.h7-hero .customers-box-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.h7-hero .customers-box .inline-content {
  color: var(--empe-color-theme-dark);
  font-size: 120px;
  margin-inline-start: -10px;
  line-height: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h7-hero .customers-box .inline-content {
    font-size: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-hero .customers-box .inline-content {
    font-size: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .customers-box .inline-content {
    font-size: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .customers-box .inline-content {
    margin-inline-start: -5px;
  }
}
.h7-hero .customers-box .swiper-pagination-area {
  position: absolute;
  left: auto;
  width: auto;
  inset-inline-end: 0;
  bottom: -2px;
  margin-top: 0;
  z-index: 2;
}
.h7-hero .customers-box .swiper-pagination-bullet {
  background-color: var(--empe-color-theme-dark);
}
.h7-hero .customers-box .blog-content .categories {
  margin-bottom: 0;
}
.h7-hero .customers-box .blog-content .blog-meta span a {
  color: var(--empe-color-common-white);
  margin-bottom: 0;
  font-weight: var(--empe-fw-regular);
}
.h7-hero .customers-box .blog-content .blog-meta span a:hover {
  background-color: var(--empe-color-common-white);
  color: var(--empe-color-theme-dark);
}
.h7-hero .customers-box .blog-content .title {
  color: var(--empe-color-theme-dark);
  margin-bottom: 16px;
}
.h7-hero .customers-box .blog-content .title a {
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 100%);
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: 0 90%;
  display: inline;
}
.h7-hero .customers-box .blog-content .title a:hover {
  background-size: 100% 1px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h7-hero .customers-box .blog-content .title {
    font-size: 40px;
  }
}
.h7-hero .customers-box .blog-content .excerpt {
  color: var(--empe-color-theme-dark);
  margin-bottom: 18px;
}
.h7-hero .customers-box .blog-content .tj-text-btn {
  color: var(--empe-color-theme-dark);
}
.h7-hero .customers-box .blog-content .tj-text-btn.style-2::before {
  background-color: var(--empe-color-theme-dark);
}
.h7-hero .customers-text {
  color: var(--empe-color-theme-dark);
  letter-spacing: -0.02em;
  font-weight: var(--empe-fw-sbold);
  margin-top: 6px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero .customers {
    margin-top: 6px;
  }
}

/* !END: Hero CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.h7-about-item {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 30px;
}
.h7-about-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-item:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.h7-about-item:not(:last-child) {
  margin-bottom: 140px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h7-about-item:not(:last-child) {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-about-item:not(:last-child) {
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-item {
    flex-direction: column;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-item {
    gap: 40px 30px;
  }
}
.h7-about-content {
  max-width: 643px;
  width: 100%;
  flex: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-content {
    max-width: 100%;
    flex: auto;
  }
}
.h7-about-content .sec-heading {
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h7-about-content .sec-heading .sec-title {
    font-size: 44px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-about-content .sec-heading .sec-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-content .sec-heading {
    margin-bottom: 12px;
  }
}
.h7-about-content .desc {
  margin-bottom: 0;
}
.h7-about-content .about-funfact {
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 35px;
}
.h7-about-content .about-funfact .countup-item {
  max-width: calc(50% - 15px);
  width: 100%;
  padding: 32px 20px 38px;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 10px;
}
.h7-about-content .about-funfact .countup-item:not(:last-child)::after {
  display: none;
}
.h7-about-content .about-funfact .inline-content {
  font-size: 74px;
  margin-bottom: 18px;
  align-items: flex-end;
}
.h7-about-content .about-funfact .inline-content .count-plus {
  font-size: 48px;
  margin-bottom: 2px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h7-about-content .about-funfact .inline-content {
    font-size: 64px;
  }
  .h7-about-content .about-funfact .inline-content .count-plus {
    font-size: 42px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-content .about-funfact .inline-content {
    font-size: 54px;
  }
  .h7-about-content .about-funfact .inline-content .count-plus {
    font-size: 38px;
  }
}
.h7-about-content .about-funfact .count-text {
  font-family: var(--empe-ff-body), sans-serif;
  font-size: 16px;
  font-weight: var(--empe-fw-regular);
  line-height: 1.625;
  color: var(--empe-color-text-body);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-content .about-funfact {
    margin-top: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-content .about-funfact {
    gap: 20px;
  }
  .h7-about-content .about-funfact .countup-item {
    max-width: 100%;
  }
}
.h7-about-content .btn-area {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.h7-about-content .btn-area .video-btn-2 {
  padding: 0;
  border: 0;
  border-radius: 0;
  gap: 7px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-content .btn-area .video-btn-2 .btn-text {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-content .btn-area {
    margin-top: 32px;
  }
}
.h7-about-img {
  width: 100%;
  height: 100%;
}
.h7-about-img-wrap {
  max-width: 615px;
  width: 100%;
  margin-inline-start: auto;
  display: flex;
  flex: 1;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h7-about-img-wrap {
    min-height: 495px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-about-img-wrap {
    min-height: auto;
    max-width: 100%;
    flex: auto;
  }
}
.h7-about-img .img-reveal-2 {
  width: 100%;
  height: 100%;
}
.h7-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.h7-about-img .img-reveal-2 {
  overflow: visible;
}
.h7-about .about-badge {
  max-width: 259px;
  width: 100%;
  padding: 20px;
  background-color: var(--empe-color-theme-primary);
  border-radius: 8px;
  position: absolute;
  inset-inline-start: 30px;
  bottom: 30px;
}
.h7-about .about-badge-icon {
  margin-bottom: 64px;
  line-height: 1;
}
.h7-about .about-badge-icon i {
  font-size: 60px;
  color: var(--empe-color-theme-dark);
}
.h7-about .about-badge-title {
  color: var(--empe-color-theme-dark);
  margin-bottom: 2px;
}
@media (max-width: 575px) {
  .h7-about .about-badge {
    max-width: 240px;
    padding: 20px 15px;
    inset-inline-start: 15px;
    bottom: 15px;
  }
  .h7-about .about-badge-icon {
    margin-bottom: 14px;
  }
  .h7-about .about-badge-icon i {
    font-size: 50px;
    color: var(--empe-color-theme-dark);
  }
}

/* !END: About CSS */
/**----------------------------------------
START: Services CSS
----------------------------------------*/
.tj-service-section-2 {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
}
.tj-service-section-2 .service-slider {
  overflow: hidden;
}
.tj-service-section-2 .service-slider-wrapper {
  margin: 0 -15px;
}
.tj-service-section-2 .swiper-pagination-bullet {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.service-item.service-item-5 {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}
.service-item.service-item-5 .title {
  margin-bottom: 16px;
}
.service-item.service-item-5 .title a {
  color: var(--empe-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .service-item.service-item-5 .title {
    margin-bottom: 11px;
  }
}
.service-item.service-item-5 .desc {
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .service-item.service-item-5 .desc {
    margin-bottom: 11px;
  }
}
.service-item.service-item-5 .service-inner {
  padding: 30px 30px 35px;
  background-color: var(--empe-color-theme-dark);
  border: 0;
}
.service-item.service-item-5 .service-inner::before {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .service-item.service-item-5 .service-inner {
    padding: 20px 20px 30px;
  }
}
.service-item.service-item-5 .service_image {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 22px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .service-item.service-item-5 .service_image {
    margin-bottom: 17px;
  }
}
.service-item.service-item-5 .service_image img {
  transition: all 0.4s;
}
.service-item.service-item-5 .service-icon {
  width: 63px;
  height: 63px;
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  border: 0;
  border-radius: 7px;
  margin-bottom: 0;
}
.service-item.service-item-5 .service-icon-wrapper {
  padding-inline-start: 15px;
  padding-top: 15px;
  background-color: var(--empe-color-theme-dark);
  border-start-start-radius: 8px;
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
}
.service-item.service-item-5 .service-icon-wrapper::before, .service-item.service-item-5 .service-icon-wrapper::after {
  content: "";
  position: absolute;
  background-color: transparent;
  width: 25px;
  height: 8px;
  box-shadow: 8px 0 0 0 var(--empe-color-theme-dark);
  border-top-right-radius: 8px;
  transform: scaleY(-1);
}
.service-item.service-item-5 .service-icon-wrapper::before {
  top: -8px;
  inset-inline-end: 0;
}
.service-item.service-item-5 .service-icon-wrapper::after {
  bottom: 0px;
  inset-inline-start: -25px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item.service-item-5 .service-icon {
    width: 55px;
    height: 55px;
  }
}
.service-item.service-item-5:hover .service_image img {
  transform: scale(1.1) !important;
}
.service-item.service-item-5:hover .desc {
  color: var(--empe-color-text-body);
}
.service-item.service-item-5:hover .tj-text-btn {
  color: var(--empe-color-text-body);
}
.service-item.service-item-5:hover .tj-text-btn:hover {
  color: var(--empe-color-theme-primary);
}

/* !END: Services CSS */
/**----------------------------------------
START: Pricing CSS
----------------------------------------*/
.tj-pricing-section-2 {
  position: relative;
  z-index: 0;
}
.tj-pricing-section-2::after {
  content: "";
  position: absolute;
  bottom: 10%;
  inset-inline-start: -25%;
  width: 740px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(90px);
  filter: blur(90px);
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}
.tj-pricing-section-2 .sec-heading .desc {
  margin-top: 18px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-pricing-section-2 .sec-heading .desc {
    margin-top: 12px;
  }
}
.tj-pricing-section-2 .price_switcher.style-2 {
  position: relative;
  margin-top: 27px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-pricing-section-2 .price_switcher.style-2 {
    margin-top: 20px;
  }
}

.pricing_items_wrap_3 {
  max-width: 800px;
  margin-inline-start: auto;
  flex-direction: column;
}
.pricing_items_wrap_3 .pricing_item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px 30px;
  overflow: hidden;
  padding: 43px 40px 50px;
}
.pricing_items_wrap_3 .pricing_item .pricing_btn {
  width: 100%;
  max-width: 272px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing_items_wrap_3 .pricing_item .pricing_btn {
    max-width: 100%;
  }
}
.pricing_items_wrap_3 .pricing_item .pricing_btn .btn-text > span {
  gap: 5px;
}
.pricing_items_wrap_3 .pricing_item .pricing_btn .btn-text i {
  margin-bottom: -2px;
}
.pricing_items_wrap_3 .pricing_item.recommend {
  background-color: var(--empe-color-theme-bg);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing_items_wrap_3 .pricing_item {
    padding: 35px 15px 42px;
    gap: 0 24px;
  }
}
@media (max-width: 575px) {
  .pricing_items_wrap_3 .pricing_item {
    flex-wrap: wrap;
    padding: 35px 20px 42px;
  }
}
.pricing_items_wrap_3 .pricing_header {
  width: calc(50% - 30px);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing_items_wrap_3 .pricing_header {
    width: calc(50% - 24px);
  }
}
@media (max-width: 575px) {
  .pricing_items_wrap_3 .pricing_header {
    width: 100%;
  }
}
.pricing_items_wrap_3 .pricing_features {
  margin-top: 0;
  width: 50%;
  padding-inline-start: 50px;
  position: relative;
  z-index: 0;
  gap: 14px;
}
.pricing_items_wrap_3 .pricing_features::before {
  content: "";
  width: 1px;
  height: 500%;
  position: absolute;
  top: -200%;
  inset-inline-start: 0;
  background-color: var(--empe-color-border-1);
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing_items_wrap_3 .pricing_features {
    padding-inline-start: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pricing_items_wrap_3 .pricing_features {
    padding-inline-start: 24px;
  }
}
@media (max-width: 575px) {
  .pricing_items_wrap_3 .pricing_features {
    padding-inline-start: 0;
    width: 100%;
  }
  .pricing_items_wrap_3 .pricing_features::before {
    display: none;
  }
}

/* !END: Pricing CSS */
/**----------------------------------------
START: Project CSS
----------------------------------------*/
.project-wrapper-3 {
  display: flex;
  gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper-3 {
    gap: 20px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper-3 {
    flex-wrap: wrap;
  }
}
.project-wrapper-3 .project-item {
  width: 380px;
  height: 600px;
  transition: all 0.4s;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-wrapper-3 .project-item {
    width: 280px;
    height: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper-3 .project-item {
    width: 100%;
    height: 450px;
  }
}
.project-wrapper-3 .project-item .project-img img {
  transform: none !important;
}
.project-wrapper-3 .project-item .project-img:hover img {
  transform: none;
}
.project-wrapper-3 .project-item .project-img::before {
  display: none;
}
.project-wrapper-3 .project-item .project-content {
  max-width: 490px;
  margin: 0;
  inset-inline-start: 30px;
  bottom: -100px;
  opacity: 0;
  transition-delay: 0.2s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper-3 .project-item .project-content {
    inset-inline-start: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper-3 .project-item .project-content {
    opacity: 1;
    bottom: 15px;
  }
}
.project-wrapper-3 .project-item.active {
  width: 1040px;
}
.project-wrapper-3 .project-item.active .project-content {
  opacity: 1;
  bottom: 30px;
  transition-delay: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper-3 .project-item.active .project-content {
    bottom: 15px;
  }
}
.project-wrapper-3 .project-item:hover .project-img img {
  transform: none;
}

.project-more {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-more {
    margin-top: 30px;
  }
}

/* !END: Project CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.testimonial-wrapper-6 {
  max-width: 100%;
  margin-inline-start: 0;
  flex-direction: row;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrapper-6 {
    gap: 15px;
  }
}
.testimonial-wrapper-6 .testimonial_header {
  margin-bottom: 22px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-6 .testimonial_header {
    margin-bottom: 18px;
  }
}
.testimonial-wrapper-6 .testimonial_item_3 {
  width: calc(50% - 15px);
  padding-top: 36px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-wrapper-6 .testimonial_item_3 {
    width: calc(50% - 7.5px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-6 .testimonial_item_3 {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-wrapper-6 .testimonial_item_3 {
    padding-top: 32px;
    padding-bottom: 35px;
  }
}

/* !END: Testimonial CSS */
/**----------------------------------------
START: Team CSS
----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-team-section-2 .rg-30 {
    --bs-gutter-x: 16px;
  }
}

.team-item-2 {
  padding: 48px 30px 32px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-item-2 {
    padding: 34px 20px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-item-2 {
    padding: 34px 20px 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-item-2 {
    padding: 38px 20px 26px;
  }
}
@media (max-width: 575px) {
  .team-item-2 {
    padding-bottom: 16px;
  }
}
.team-item-2 .team-img {
  max-width: 284px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border: 2px solid transparent;
  border-radius: 100%;
}
.team-item-2 .social-links {
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.team-item-2 .social-links::before {
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--empe-color-theme-dark);
  opacity: 0;
  z-index: 1;
}
.team-item-2 .social-links ul {
  width: 100%;
  height: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.team-item-2 .social-links ul li {
  margin-bottom: 0;
}
.team-item-2 .social-links ul li a {
  background-color: var(--empe-color-theme-dark);
}
.team-item-2 .social-links ul li:not(:first-child) {
  margin-inline-start: -42px;
}
.team-item-2 .share-icon {
  display: none !important;
}
.team-item-2 .team-content {
  text-align: center;
  padding-inline-start: 0;
  padding-inline-end: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-item-2 .team-content .title {
    font-size: 21px;
  }
}
.team-item-2:hover .team-img {
  border-color: var(--empe-color-theme-primary);
}
.team-item-2:hover .social-links::before {
  opacity: 0.5;
}
.team-item-2:hover .social-links ul li:not(:first-child) {
  margin-inline-start: 0;
}
.team-item-2:hover .share-icon {
  opacity: 0;
  visibility: hidden;
}

/* !END: Team CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.blog-item-2 {
  padding-inline-end: 0;
  padding-inline-start: 24%;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 0 20px;
  align-items: center;
  border-top: 1px solid var(--empe-color-border-1);
  background-color: transparent;
  border-radius: 0;
}
.blog-item-2:last-child {
  border-bottom: 1px solid var(--empe-color-border-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-item-2 {
    padding-inline-start: 21%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-item-2 {
    padding-inline-start: 15%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item-2 {
    padding-inline-start: 17%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-item-2 {
    border-radius: 10px;
    padding: 15px 15px 24px;
    flex-direction: column;
    border: 1px solid var(--empe-color-border-1);
  }
  .blog-item-2:not(:last-child) {
    margin-bottom: 20px;
  }
}
.blog-item-2 .categories a {
  background-color: var(--empe-color-theme-bg);
}
.blog-item-2 .categories a:hover {
  background-color: var(--empe-color-theme-primary);
}
.blog-item-2 .blog-thumb {
  position: static;
  width: 320px;
  height: 253px;
  border-radius: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-item-2 .blog-thumb {
    width: 100%;
    border-radius: 8px;
  }
}
.blog-item-2 .blog-date {
  background-color: var(--empe-color-theme-primary);
  padding: 14px 16px 19px;
  top: 30px;
  inset-inline-start: 0;
}
.blog-item-2 .blog-date .date {
  font-size: 48px;
  letter-spacing: -0.03em;
  color: var(--empe-color-theme-dark);
}
.blog-item-2 .blog-date .month {
  color: var(--empe-color-theme-dark);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-item-2 .blog-date {
    top: 25px;
    inset-inline-start: 10px;
  }
  .blog-item-2 .blog-date .date {
    font-size: 36px;
  }
}
.blog-item-2 .blog-content {
  width: 467px;
  padding: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-item-2 .blog-content {
    width: 100%;
    padding: 20px 5px 0;
  }
}
.blog-item-2 .blog-content .title {
  font-size: var(--empe-fs-h3);
  line-height: 1.25;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item-2 .blog-content .title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-item-2 .blog-content .title {
    font-size: 25px;
  }
}
.blog-item-2 .blog-content .tj-text-btn {
  position: relative;
  color: var(--empe-color-common-white);
}
.blog-item-2 .blog-content .tj-text-btn:hover {
  color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-item-2 .blog-content .tj-text-btn {
    margin-top: 16px;
  }
}

/* !END: Blog CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area.header-8 .header-button {
  gap: 14px;
}
.header-area.header-8 .header-button .tj-primary-btn .btn-icon i {
  transform: rotate(-45deg);
}
.header-area.header-8 .header-button .tj-primary-btn:hover .btn-icon i {
  transform: rotate(0);
}
.header-area.header-8 .cubes {
  background-color: var(--empe-color-grey-4);
}
.header-area.header-8 .cubes span:nth-child(2) {
  border-radius: 50%;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-8.tj-footer-section {
  padding-top: 0;
}
.footer-8::after, .footer-8::before {
  content: "";
  position: absolute;
  top: -280px;
  left: 22%;
  right: auto;
  width: 395px;
  height: 395px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(200px);
  filter: blur(200px);
  opacity: 1;
  z-index: -1;
  pointer-events: none;
}
.footer-8::after {
  top: auto;
  right: auto;
  left: -100px;
  bottom: -100px;
  opacity: 0.5;
}
.footer-8 .footer-main-area {
  position: relative;
  z-index: 2;
  padding: 120px 0 0;
  margin-bottom: 30px;
  border-radius: 16px;
  background-color: var(--empe-color-theme-dark);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-8 .footer-main-area {
    padding: 100px 0 0;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-8 .footer-main-area {
    padding: 70px 0 0;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-8 .footer_widget_wrapper .footer-widget {
    max-width: calc(50% - 15px);
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-8 .footer_widget_wrapper .footer-widget {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
  }
}
.footer-8 .footer_bottom_area {
  border-top: 1px solid var(--empe-color-border-1);
  padding: 30px 0;
  margin-top: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-8 .footer_bottom_area {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-8 .footer_bottom_area {
    margin-top: 60px;
  }
}
.footer-8 .subscription_widget .subscribe_form form {
  position: relative;
  z-index: 1;
}
.footer-8 .subscription_widget .subscribe_form form input[type=email] {
  min-height: 72px;
  padding: 22px 70px 22px 20px;
  background-color: var(--empe-color-theme-bg);
}
.footer-8 .subscription_widget .subscribe_form form button[type=submit],
.footer-8 .subscription_widget .subscribe_form form input[type=submit] {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 62px;
  height: 62px;
  background-color: var(--empe-color-theme-primary);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: var(--empe-color-theme-dark);
  transition: all 0.3s ease-in-out 0s;
}
.footer-8 .subscription_widget .subscribe_form form button[type=submit] i,
.footer-8 .subscription_widget .subscribe_form form button[type=submit] svg,
.footer-8 .subscription_widget .subscribe_form form input[type=submit] i,
.footer-8 .subscription_widget .subscribe_form form input[type=submit] svg {
  display: inline-flex;
  line-height: 1;
}
.footer-8 .subscription_widget .subscribe_form form button[type=submit] svg,
.footer-8 .subscription_widget .subscribe_form form input[type=submit] svg {
  max-width: 24px;
  height: auto;
}
.footer-8 .subscription_widget .subscribe_form form button[type=submit]:hover i,
.footer-8 .subscription_widget .subscribe_form form button[type=submit]:hover svg,
.footer-8 .subscription_widget .subscribe_form form input[type=submit]:hover i,
.footer-8 .subscription_widget .subscribe_form form input[type=submit]:hover svg {
  animation: bellShake 1s linear infinite;
}
.footer-8 .subscription_widget .subscribe_form input[type=checkbox] {
  position: relative;
  margin-inline-end: 8px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--empe-color-theme-dark-3);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
}
.footer-8 .subscription_widget .subscribe_form input[type=checkbox]::before {
  content: "\e941";
  font-size: 19px;
  line-height: 1;
  font-family: "empe-icon" !important;
  color: var(--empe-color-common-white);
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 16px;
  transform: scale(0.5);
  margin-inline-start: -1px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.footer-8 .subscription_widget .subscribe_form input[type=checkbox]:checked {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
.footer-8 .subscription_widget .subscribe_form input[type=checkbox]:checked::before {
  color: var(--empe-color-theme-dark);
  transform: scale(1);
  opacity: 1;
}
.footer-8 .subscription_widget .subscribe_form label {
  font-size: 16px;
  color: var(--empe-color-text-body);
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
}
.footer-8 .subscription_widget .subscribe_form label a {
  color: var(--empe-color-text-body);
  font-weight: var(--empe-fw-sbold);
  margin-inline-start: 4px;
}
.footer-8 .subscription_widget .subscribe_form label a:hover {
  color: var(--empe-color-theme-primary);
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Home 8 Hero CSS
----------------------------------------*/
.tj-h8-banner-section {
  padding-top: 220px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-h8-banner-section {
    padding-top: 190px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-h8-banner-section {
    padding-top: 160px;
  }
}
.tj-h8-banner-content {
  margin-top: 30px;
  margin-bottom: 150px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-h8-banner-content {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-h8-banner-content {
    max-width: 660px;
    margin-bottom: 60px;
  }
}
.tj-h8-banner-title {
  font-size: 80px;
  line-height: 1;
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-h8-banner-title {
    font-size: 66px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-h8-banner-title {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .tj-h8-banner-title {
    font-size: 45px;
  }
}
.tj-h8-banner-title span {
  display: inline-flex;
  width: 75px;
  height: 75px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-h8-banner-title span {
    width: 66px;
    height: 66px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-h8-banner-title span {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 575px) {
  .tj-h8-banner-title span {
    width: 40px;
    height: 40px;
    transform: translateY(5px);
  }
}
.tj-h8-banner-title span img {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-h8-banner-subscribe .subscribe-form.cta-form {
    max-width: 575px;
  }
}
.tj-h8-banner-subscribe .subscribe-form.cta-form input[type=email] {
  background-color: var(--empe-color-grey-4);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  color: var(--empe-color-white-2);
}
@media (max-width: 575px) {
  .tj-h8-banner-subscribe .subscribe-form.cta-form [type=submit] .btn-icon::before,
  .tj-h8-banner-subscribe .subscribe-form.cta-form input[type=submit] .btn-icon::before {
    background-color: var(--empe-color-theme-primary);
  }
}
.tj-h8-banner-subscribe .subscribe-form.cta-form [type=submit] .btn-icon i,
.tj-h8-banner-subscribe .subscribe-form.cta-form input[type=submit] .btn-icon i {
  transform: rotate(-45deg);
}
@media (max-width: 575px) {
  .tj-h8-banner-subscribe .subscribe-form.cta-form [type=submit] .btn-icon i,
  .tj-h8-banner-subscribe .subscribe-form.cta-form input[type=submit] .btn-icon i {
    color: var(--empe-color-theme-dark);
  }
}
.tj-h8-banner-subscribe .subscribe-form.cta-form [type=submit]:hover .btn-icon i,
.tj-h8-banner-subscribe .subscribe-form.cta-form input[type=submit]:hover .btn-icon i {
  animation: none;
  transform: rotate(0deg);
}
.tj-h8-banner-img-area {
  position: relative;
}
.tj-h8-banner-img-area .customers-box {
  position: absolute;
  top: 35px;
  left: 0;
  max-width: 240px;
  background-color: rgba(250, 251, 251, 0.08);
  border: 1px solid rgba(250, 251, 251, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 6px;
  padding: 25px 25px 24px 25px;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-h8-banner-img-area .customers-box {
    top: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-h8-banner-img-area .customers-box {
    top: 0;
  }
}
@media (max-width: 575px) {
  .tj-h8-banner-img-area .customers-box {
    position: unset;
    animation: none;
  }
}
.tj-h8-banner-img-area .customers ul li img {
  width: 56px;
  height: 56px;
}
.tj-h8-banner-img-area .customers-text {
  margin-top: 13px;
  margin-bottom: 12px;
}
.tj-h8-banner-img-area .rating-area {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tj-h8-banner-img-area .banner-img {
  text-align: center;
  margin: 0 auto;
  max-width: 570px;
}
.tj-h8-banner-img-area .banner-shape-img {
  position: absolute;
  left: auto;
  right: -50px;
  bottom: 0;
  border-radius: 6px;
  overflow: hidden;
}
.tj-h8-banner-img-area .banner-shape-img img {
  border-radius: 6px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-h8-banner-img-area .banner-shape-img {
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-h8-banner-img-area .banner-shape-img {
    bottom: -50px;
  }
}
@media (max-width: 575px) {
  .tj-h8-banner-img-area .banner-shape-img {
    position: unset;
    animation: none;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-h8-banner-shape {
    display: none;
  }
}
.tj-h8-banner-shape .shape-2,
.tj-h8-banner-shape .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  right: auto;
  z-index: -1;
}
.tj-h8-banner-shape .shape-2 {
  left: auto;
  right: 0;
}

.banner-scroll.h8-scroll {
  position: unset;
}
.banner-scroll.h8-scroll .scroll-down {
  color: var(--empe-color-text-body);
  line-height: 1;
  font-weight: var(--empe-fw-medium);
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.banner-scroll.h8-scroll .scroll-down .text {
  writing-mode: unset;
  transform: unset;
}
.banner-scroll.h8-scroll .scroll-down .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 22px;
  color: var(--empe-color-theme-dark);
  background-color: rgba(250, 251, 251, 0.08);
  background-color: var(--empe-color-theme-primary);
  border-radius: 50%;
  overflow: hidden;
  text-shadow: 0 -30px 0 var(--empe-color-theme-dark);
}
.banner-scroll.h8-scroll .scroll-down:hover {
  transform: unset;
}
.banner-scroll.h8-scroll .scroll-down:hover .icon {
  background-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
}
.banner-scroll.h8-scroll .scroll-down:hover .icon i {
  transform: translateY(30px);
  transition: all 0.3s ease-in-out;
}

/* !END: Home 8 Hero CSS */
/**----------------------------------------
START: Choose CSS
----------------------------------------*/
.h8-choose-box {
  overflow: hidden;
}
.h8-choose-box .choose-box {
  border: 1px solid var(--empe-color-border-1);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  padding: 35px 30px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h8-choose-box .choose-box {
    padding: 35px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-choose-box .choose-box {
    padding: 30px 15px;
  }
}
.h8-choose-box .choose-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--empe-ff-heading), sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: rgba(246, 247, 247, 0.2);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.h8-choose-box .chosse-btn {
  padding-top: 22px;
  margin-top: 22px;
  position: relative;
}
.h8-choose-box .chosse-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: 1px;
  background-color: var(--empe-color-border-1);
}
.h8-choose-box:hover .choose-icon {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
  color: var(--empe-color-theme-dark);
  transform: rotateY(360deg);
}
.h8-choose-box:hover .choose-number {
  color: var(--empe-color-theme-primary);
}

/* !END: Choose CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.h8-about-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.h8-about-left {
  max-width: 605px;
  position: relative;
}
.h8-about-img {
  border-radius: 12px;
  overflow: hidden;
}
.h8-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.h8-about .h8-counter {
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h8-about .h8-counter {
    top: 0;
    right: auto;
    left: 0;
    transform: unset;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-about .h8-counter {
    top: auto;
    right: 0;
    bottom: 0;
    transform: unset;
  }
}
.h8-about .countup-item {
  max-width: 220px;
  padding: 20px 25px 30px 25px;
  border-radius: 6px;
  background-color: var(--empe-color-theme-primary);
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-about .countup-item {
    max-width: 180px;
    padding: 20px 15px 22px 15px;
  }
}
.h8-about .inline-content {
  color: var(--empe-color-theme-dark);
  font-size: 110px;
}
.h8-about .inline-content .count-plus {
  font-size: 56px;
  align-self: flex-start;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-about .inline-content {
    font-size: 60px;
  }
}
.h8-about .count-text {
  color: var(--empe-color-theme-dark);
  font-size: 18px;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-sbold);
  display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-about .count-text {
    font-size: 16px;
  }
}
.h8-about-content {
  margin-inline-start: auto;
  max-width: 555px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-about-content {
    margin-inline-start: 0;
  }
}
.h8-about-content .desc {
  margin-bottom: 0;
}
.h8-about-btn-wrap {
  margin-top: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-about-btn-wrap {
    margin-top: 25px;
  }
}
.h8-about .clients-review-area {
  margin-top: 22px;
}

/* !END: About CSS */
/**----------------------------------------
START: Services CSS
----------------------------------------*/
.service-item-8.service-item {
  padding-bottom: 0;
}
.service-item-8.service-item:not(:last-child) {
  margin-bottom: 30px;
}
.service-item-8.service-item .service-inner {
  padding: 50px 30px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 25px;
  position: relative;
  z-index: 3;
  overflow: hidden;
  min-height: 183px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .service-item-8.service-item .service-inner {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item-8.service-item .service-inner {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item-8.service-item .service-inner {
    padding: 35px 30px 25px 30px;
    gap: 20px;
  }
}
.service-item-8.service-item .service-icon {
  width: 72px;
  height: 72px;
  margin: 0;
}
.service-item-8.service-item .service-content {
  max-width: max-content;
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.service-item-8.service-item .title {
  margin-top: -7px;
  margin-bottom: 0;
  font-size: 28px;
  max-width: 170px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item-8.service-item .title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item-8.service-item .title {
    font-size: 20px;
    margin-top: -5px;
    max-width: max-content;
  }
}
.service-item-8.service-item .desc-wrap {
  max-width: 380px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item-8.service-item .desc-wrap {
    max-width: 360px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .service-item-8.service-item .desc-wrap {
    max-width: 100%;
  }
}
.service-item-8.service-item .desc-wrap .desc {
  margin-bottom: 0;
}
.service-item-8.service-item .desc-wrap .categories {
  margin-top: 22px;
  margin-bottom: 0;
}
.service-item-8.service-item .desc-wrap .categories a {
  color: var(--empe-color-text-body-2);
  background-color: var(--empe-color-theme-dark);
}
.service-item-8.service-item .desc-wrap .categories a:hover {
  color: var(--empe-color-theme-dark);
  background-color: var(--empe-color-theme-primary);
}
.service-item-8.service-item .tj-icon-btn {
  background: none;
  width: 50px;
  height: 50px;
  border: 0;
  font-size: 66px;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  color: var(--empe-color-text-body-2);
}
.service-item-8.service-item .tj-icon-btn i {
  color: var(--empe-color-text-body-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item-8.service-item .tj-icon-btn {
    margin-top: 18px;
    width: 44px;
    height: 44px;
    font-size: 44px;
  }
}
.service-item-8.service-item:hover .tj-icon-btn {
  color: var(--empe-color-theme-primary);
}
.service-item-8.service-item:hover .tj-icon-btn i {
  color: var(--empe-color-theme-primary);
}

/* !END: Services CSS */
/**----------------------------------------
START: Video CSS
----------------------------------------*/
.h8-video.tj-video-section {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h8-video.tj-video-section {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-video.tj-video-section {
    margin-bottom: 0;
  }
}
.h8-video .sec-heading {
  margin-bottom: 20px;
}
.h8-video-content {
  position: relative;
  z-index: 3;
  background-color: var(--empe-color-theme-dark);
  max-width: 485px;
  border-radius: 12px;
  padding: 40px 40px 50px 40px;
}
.h8-video-content-wrap {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1350px;
  width: 100%;
  padding: 0 15px;
  padding-bottom: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
  align-items: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-video-content-wrap {
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-video-content {
    padding: 30px 25px 40px 25px;
  }
}
.h8-video .video-content-area {
  height: 810px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-video .video-content-area .video-bg img {
    object-position: 75%;
  }
}
.h8-video .video-content-area .video-wrap {
  position: relative;
  left: unset;
  top: unset;
  transform: unset;
  z-index: 1;
  display: inline-flex;
}
.h8-video .video-content-area .video-btn .video-icon {
  font-size: 16px;
  width: 66px;
  height: 66px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h8-video .video-content-area .video-btn .video-icon {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-video .video-content-area .video-btn .video-icon {
    width: 50px;
    height: 50px;
  }
}
.h8-video .video-content-area .video-btn:hover .video-icon {
  transform: scale(0.9);
}
.h8-video .video-content-area .video-text {
  color: var(--empe-color-text-body);
  font-size: 16px;
  font-family: var(--empe-ff-heading), sans-serif;
  font-weight: var(--empe-fw-medium);
  letter-spacing: -0.03em;
  margin-inline-start: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h8-video .video-content-area {
    height: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h8-video .video-content-area {
    height: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-video .video-content-area {
    height: 420px;
    border-radius: 12px;
  }
}

/* !END: Video CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.h8-testimonial.testimonial-wrapper-5 {
  max-width: 100%;
  margin-inline-start: 0;
  display: block;
}
.h8-testimonial.testimonial-wrapper-5 .testimonial_header {
  justify-content: inherit;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.h8-testimonial.testimonial-wrapper-5 .star-ratings {
  margin-top: 0;
}
.h8-testimonial.testimonial-wrapper-5 .testimonial_item_3 {
  width: 100%;
  padding: 46px 30px 30px;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-testimonial.testimonial-wrapper-5 .testimonial_item_3 {
    padding: 36px 20px 30px;
  }
}
.h8-testimonial.testimonial-wrapper-5 .testimonial_item_3 .author_avatar_wrapper {
  margin-top: 22px;
  margin-bottom: 0;
  padding-top: 30px;
  border-top: 0;
  gap: 12px;
  position: relative;
}
.h8-testimonial.testimonial-wrapper-5 .testimonial_item_3 .author_avatar_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: 1px;
  background-color: var(--empe-color-border-1);
}

/* !END: Testimonial CSS */
/**----------------------------------------
START: Project CSS
----------------------------------------*/
.h8-projcet {
  position: relative;
  padding-bottom: 160px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h8-projcet {
    padding-bottom: 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-projcet {
    padding-bottom: 110px;
  }
}

.h8-project-item.project-item .project-content {
  bottom: -100px;
  opacity: 0;
  transition-delay: 0.2s;
  gap: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-project-item.project-item .project-content {
    opacity: 1;
    bottom: 0;
  }
}
.h8-project-item.project-item .title {
  max-width: max-content;
}
.h8-project-item.project-item:hover .project-content {
  opacity: 1;
  bottom: 0;
  transition-delay: 0s;
}

.h8-project-more {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  background-color: var(--empe-color-theme-dark);
  border-radius: 60px;
}

/* !END: Project CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.h8-blog-item.blog-item {
  height: 430px;
  padding: 0;
  position: relative;
}
.h8-blog-item.blog-item .blog-thumb {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .h8-blog-item.blog-item .blog-thumb {
    height: 100%;
  }
}
.h8-blog-item.blog-item .blog-content {
  padding: 30px;
  position: absolute;
  bottom: -50px;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.h8-blog-item.blog-item .tj-text-btn {
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.h8-blog-item.blog-item:hover .tj-text-btn,
.h8-blog-item.blog-item:hover .blog-thumb {
  opacity: 1;
  visibility: visible;
}
.h8-blog-item.blog-item:hover .blog-thumb {
  opacity: 0.5;
}
.h8-blog-item.blog-item:hover .blog-content {
  bottom: 0;
}
@media (max-width: 575px) {
  .h8-blog-item.blog-item .blog-content {
    padding: 20px;
  }
}
.h8-blog-item .blog-date {
  inset-inline-start: 30px;
  top: 30px;
}
@media (max-width: 575px) {
  .h8-blog-item .blog-date {
    inset-inline-start: 20px;
    top: 20px;
  }
}

/* !END: Blog CSS */
/**----------------------------------------
START: Choose CSS
----------------------------------------*/
.h8-footer-cta {
  position: relative;
  z-index: 1;
}
.h8-footer-cta::after {
  content: "";
  position: absolute;
  bottom: -180px;
  right: -180px;
  width: 395px;
  height: 395px;
  border-radius: 50%;
  background: var(--empe-color-theme-primary);
  -webkit-filter: blur(200px);
  filter: blur(200px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.h8-footer-cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h8-footer-cta-wrapper {
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .h8-footer-cta-wrapper {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.h8-footer-cta-left {
  max-width: calc(54% - 15px);
  width: 100%;
  flex: 1;
  position: relative;
  display: flex;
  justify-content: end;
  align-self: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-footer-cta-left {
    max-width: 100%;
    flex: auto;
    margin-top: -30px;
  }
}
.h8-footer-cta-right {
  max-width: 575px;
  width: 100%;
  flex: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h8-footer-cta-right {
    max-width: 515px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-footer-cta-right {
    flex: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-footer-cta-right {
    max-width: 100%;
  }
}
.h8-footer-cta-right .sec-heading {
  margin-bottom: 18px;
}
.h8-footer-cta-right .desc {
  margin: 20px 0 24px 0;
}

.h8-cta-counter {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-cta-counter {
    top: 70%;
  }
}
.h8-cta-counter.h8-about .countup-item {
  max-width: 235px;
  padding: 24px 25px 29px 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .h8-cta-counter.h8-about .countup-item {
    max-width: 190px;
    padding: 18px 18px 23px 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h8-cta-counter.h8-about .countup-item {
    max-width: 200px;
  }
}
.h8-cta-counter.h8-about .inline-content {
  font-size: 80px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h8-cta-counter.h8-about .inline-content {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .h8-cta-counter.h8-about .inline-content {
    font-size: 45px;
  }
}
.h8-cta-counter.h8-about .count-text {
  line-height: 26px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-cta-counter.h8-about .count-text {
    line-height: 22px;
  }
}

.h8-cta-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 575px) {
  .h8-cta-contact {
    grid-template-columns: repeat(1, 1fr);
  }
}

.faq-contact-item.style-2 {
  background-color: var(--empe-color-theme-dark);
}
.faq-contact-item.style-2 .desc {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 14px;
}
.faq-contact-item.style-2 .faq-contact-number {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .faq-contact-item.style-2 .faq-contact-number {
    font-size: 18px;
  }
}
.faq-contact-item.style-2 .faq-contact-number a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.faq-contact-item.style-2 .faq-contact-number .icon {
  color: var(--empe-color-theme-primary);
  font-size: 24px;
  display: inline-flex;
}
.faq-contact-item.style-2 .faq-contact-number:hover a {
  color: var(--empe-color-theme-primary);
}

/* !END: Choose CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area.header-9.header-absolute {
  top: 30px;
  padding: 0 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-9.header-absolute {
    top: 15px;
    padding: 0 15px;
  }
}
.header-area.header-9.header-absolute .header-bottom {
  border-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-9.header-absolute .header-bottom {
    padding: 0;
  }
}
.header-area.header-9.header-absolute .site_logo {
  padding: 20px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-9.header-absolute .site_logo {
    padding: 15px 0;
  }
}
.header-area.header-9.header-absolute .mainmenu > ul {
  column-gap: 0;
}
.header-area.header-9.header-absolute .mainmenu > ul > li > a {
  padding: 9px;
  padding-inline-start: 16px;
  padding-inline-end: 16px;
  color: var(--empe-color-heading-primary);
  background-color: var(--empe-color-grey-4);
  border-radius: 21px;
  border: 0;
}
.header-area.header-9.header-absolute .mainmenu > ul > li > a:hover {
  color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-9.header-absolute .mainmenu > ul > li > a {
    padding: 6px;
    padding-inline-start: 11px;
    padding-inline-end: 11px;
  }
}
.header-area.header-9.header-absolute .mainmenu > ul > li.current-menu-ancestor > a {
  color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
.header-area.header-9.header-absolute .mainmenu > ul > li.menu-item-has-children > a, .header-area.header-9.header-absolute .mainmenu > ul > li.has-dropdown > a {
  padding-inline-end: 31px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-9.header-absolute .mainmenu > ul > li.menu-item-has-children > a, .header-area.header-9.header-absolute .mainmenu > ul > li.has-dropdown > a {
    padding-inline-end: 26px;
  }
}
.header-area.header-9.header-absolute .mainmenu > ul > li.menu-item-has-children > a::after, .header-area.header-9.header-absolute .mainmenu > ul > li.has-dropdown > a::after {
  top: 40%;
  right: 13px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-9.header-absolute .mainmenu > ul > li.menu-item-has-children > a::after, .header-area.header-9.header-absolute .mainmenu > ul > li.has-dropdown > a::after {
    top: 36%;
    right: 10px;
  }
}
.header-area.header-9.header-absolute .mainmenu > ul > li .sub-menu > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-9.tj-footer-section {
  padding-top: 100px;
  margin-top: 30px;
}
.footer-9.tj-footer-section::after, .footer-9.tj-footer-section::before {
  display: none;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-9.tj-footer-section {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-9.tj-footer-section {
    padding-top: 70px;
    margin-top: 15px;
  }
}
.footer-9 .h9-footer-logo {
  padding: 0 30px;
  padding-top: 50px;
}
.footer-9 .h9-footer-wrapper {
  border: 1px solid var(--empe-color-border-1);
}
.footer-9 .footer_widget_wrapper,
.footer-9 .footer_bottom_content {
  padding: 0 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-9 .footer_widget_wrapper,
  .footer-9 .footer_bottom_content {
    padding: 0 15px;
  }
}
.footer-9 .footer_widget_wrapper {
  gap: 0;
  align-items: stretch;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-9 .footer_widget_wrapper {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-9 .footer_widget_wrapper {
    gap: 30px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.footer-9 .footer_widget_wrapper .footer-widget {
  padding: 50px 60px;
  border-left: 1px solid var(--empe-color-border-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-9 .footer_widget_wrapper .footer-widget {
    padding: 50px 0;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-9 .footer_widget_wrapper .footer-widget:nth-child(3), .footer-9 .footer_widget_wrapper .footer-widget:nth-child(4) {
    padding-top: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-9 .footer_widget_wrapper .footer-widget:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}
.footer-9 .footer_widget_wrapper .footer-widget:first-child {
  padding-left: 0;
  border-left: 0;
}
.footer-9 .footer_widget_wrapper .footer-widget:last-child {
  padding-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-9 .footer_widget_wrapper .footer-widget {
    max-width: calc(50% - 15px);
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-9 .footer_widget_wrapper .footer-widget {
    max-width: 100%;
    width: 100%;
    margin-top: 0;
    border: 0;
    padding: 0;
  }
}
.footer-9 .footer_bottom_area {
  border-top: 1px solid var(--empe-color-border-1);
  padding: 30px 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-9 .subscription_widget {
    max-width: 350px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-9 .subscription_widget .subscribe_form {
    max-width: 450px;
  }
}
.footer-9 .subscription_widget .subscribe_form form {
  position: relative;
  z-index: 1;
}
.footer-9 .subscription_widget .subscribe_form form input[type=email] {
  min-height: 72px;
  padding: 22px 70px 22px 20px;
  background-color: var(--empe-color-grey-4);
}
.footer-9 .subscription_widget .subscribe_form form button[type=submit],
.footer-9 .subscription_widget .subscribe_form form input[type=submit] {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 62px;
  height: 62px;
  background-color: var(--empe-color-theme-primary);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: var(--empe-color-theme-dark);
  transition: all 0.3s ease-in-out 0s;
}
.footer-9 .subscription_widget .subscribe_form form button[type=submit] i,
.footer-9 .subscription_widget .subscribe_form form button[type=submit] svg,
.footer-9 .subscription_widget .subscribe_form form input[type=submit] i,
.footer-9 .subscription_widget .subscribe_form form input[type=submit] svg {
  display: inline-flex;
  line-height: 1;
}
.footer-9 .subscription_widget .subscribe_form form button[type=submit] svg,
.footer-9 .subscription_widget .subscribe_form form input[type=submit] svg {
  max-width: 24px;
  height: auto;
}
.footer-9 .subscription_widget .subscribe_form form button[type=submit]:hover i,
.footer-9 .subscription_widget .subscribe_form form button[type=submit]:hover svg,
.footer-9 .subscription_widget .subscribe_form form input[type=submit]:hover i,
.footer-9 .subscription_widget .subscribe_form form input[type=submit]:hover svg {
  animation: bellShake 1s linear infinite;
}
.footer-9 .subscription_widget .subscribe_form input[type=checkbox] {
  position: relative;
  margin-inline-end: 8px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--empe-color-theme-dark-3);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
}
.footer-9 .subscription_widget .subscribe_form input[type=checkbox]::before {
  content: "\e941";
  font-size: 19px;
  line-height: 1;
  font-family: "empe-icon" !important;
  color: var(--empe-color-common-white);
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 16px;
  transform: scale(0.5);
  margin-inline-start: -1px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.footer-9 .subscription_widget .subscribe_form input[type=checkbox]:checked {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}
.footer-9 .subscription_widget .subscribe_form input[type=checkbox]:checked::before {
  color: var(--empe-color-theme-dark);
  transform: scale(1);
  opacity: 1;
}
.footer-9 .subscription_widget .subscribe_form label {
  font-size: 16px;
  color: var(--empe-color-text-body);
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
}
.footer-9 .subscription_widget .subscribe_form label a {
  color: var(--empe-color-text-body);
  font-weight: var(--empe-fw-sbold);
  margin-inline-start: 4px;
}
.footer-9 .subscription_widget .subscribe_form label a:hover {
  color: var(--empe-color-theme-primary);
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.h9-hero {
  min-height: 880px;
  padding: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero {
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero {
    min-height: 645px;
  }
}
.h9-hero .hero-bg {
  opacity: 1;
  border-radius: 16px;
  background-position: center center;
  mix-blend-mode: normal;
}
.h9-hero-content {
  padding-top: 185px;
  padding-bottom: 285px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-hero-content {
    padding-top: 170px;
    padding-bottom: 270px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero-content {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}
.h9-hero-title {
  font-size: 80px;
  line-height: 1.05;
  max-width: 507px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h9-hero-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-hero-title {
    font-size: 60px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-hero-title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero-title {
    font-size: 45px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero-title {
    max-width: 100%;
  }
}
.h9-hero-title span > span {
  display: inline-flex;
  align-items: center;
  transition: none;
}
.h9-hero-title span > span > span.image {
  display: inline-flex;
  align-items: center;
}
.h9-hero-title span > span > span.image span,
.h9-hero-title span > span > span.image img {
  width: 55px;
  height: 55px;
  background-color: var(--empe-color-common-white);
  padding: 2px;
  border-radius: 50%;
  line-height: 1;
  margin-inline-start: -22px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-hero-title span > span > span.image span,
  .h9-hero-title span > span > span.image img {
    width: 50px;
    height: 50px;
    margin-inline-start: -18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero-title span > span > span.image span,
  .h9-hero-title span > span > span.image img {
    width: 44px;
    height: 44px;
    margin-inline-start: -18px;
  }
}
.h9-hero-title span > span > span.image img:first-child {
  margin-inline-start: 0;
}
.h9-hero-title span > span > span.image span {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: unset;
  padding: 0;
  width: 53px;
  height: 53px;
  border: 2px solid var(--empe-color-common-white);
  background-color: var(--empe-color-theme-dark);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-hero-title span > span > span.image span {
    width: 48px;
    height: 48px;
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero-title span > span > span.image span {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
}
.h9-hero-title span > span > span.image span div {
  letter-spacing: 0.5px !important;
}
.h9-hero-img-area {
  position: relative;
  max-width: 684px;
  margin-right: -50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h9-hero-img-area {
    margin-right: -20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero-img-area {
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero-img-area {
    max-width: 635px;
    margin: 0 auto;
  }
}
.h9-hero-img-area .h9-hero-img {
  height: 100%;
  width: 100%;
}
.h9-hero-img-area .h9-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.h9-hero-img-area .h9-hero-img.chart {
  border-radius: 10px;
  overflow: hidden;
  max-width: 248px;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 185px;
  z-index: 3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-hero-img-area .h9-hero-img.chart {
    max-width: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero-img-area .h9-hero-img.chart {
    max-width: 180px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-hero-img-area .h9-hero-img.chart {
    bottom: 35px;
  }
}

.h9-desc-area {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 20px;
  flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-desc-area {
    flex-direction: column;
    gap: 25px;
  }
}
.h9-desc-area .h9-desc-wrap {
  max-width: 322px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-desc-area .h9-desc-wrap {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-desc-area .h9-desc-wrap {
    max-width: 425px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-desc-area .h9-desc-wrap {
    max-width: 100%;
  }
}
.h9-desc-area .h9-desc-wrap p {
  margin-bottom: 0;
}

.h9-btn-wrap .tj-primary-btn {
  background-color: var(--empe-color-grey-4);
}

/* !END: Hero CSS */
/**----------------------------------------
START: Video CSS
----------------------------------------*/
.tj-features-section .tj_features_wrap.h9-video {
  margin-top: -188px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-features-section .tj_features_wrap.h9-video {
    margin-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-features-section .tj_features_wrap.h9-video {
    margin-top: 0;
  }
}

.h9-video {
  display: block;
  max-width: 435px;
  width: 100%;
  border-radius: 16px 16px 0px 0px;
  padding: 20px 20px 0 20px;
}
.h9-video::before {
  border-radius: 0 0 12px 0;
}
.h9-video::after {
  border-radius: 0 0 0 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-video {
    max-width: 100%;
    padding: 15px 0 0 0;
  }
}
.h9-video .h9-video-item {
  height: 168px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--empe-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-video .h9-video-item {
    height: 250px;
  }
}
.h9-video .h9-video-item .bg-img {
  mix-blend-mode: luminosity;
  z-index: 1;
}
.h9-video .h9-video-item .video-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.h9-video .h9-video-item .video-btn .video-icon {
  font-size: 16px;
  width: 52px;
  height: 52px;
  background: var(--empe-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-video .h9-video-item .video-btn .video-icon {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-video .h9-video-item .video-btn .video-icon {
    width: 60px;
    height: 60px;
  }
}
.h9-video .h9-video-item .video-btn:hover .video-icon {
  transform: scale(0.9);
}
.h9-video .h9-video-item .circle-ripple::before,
.h9-video .h9-video-item .circle-ripple::after {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* !END: Video CSS */
/**----------------------------------------
START: insights CSS
----------------------------------------*/
.h9-insights .sec-heading .desc {
  max-width: 315px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-insights .sec-heading .desc {
    max-width: 100%;
    margin-bottom: 0;
  }
}
.h9-insights .insights-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.h9-insights .insights-box {
  padding: 30px;
  background-color: var(--empe-color-theme-bg);
  border: 1px solid var(--empe-color-border-1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.h9-insights .insights-box .title {
  margin-bottom: 15px;
}
.h9-insights .insights-box .title:hover a {
  color: var(--empe-color-theme-primary);
}
.h9-insights .insights-box .desc {
  margin-bottom: 0;
}
.h9-insights .insights-box:nth-child(1) {
  width: 100%;
  flex-direction: row;
  gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-insights .insights-box:nth-child(1) {
    flex-direction: column;
  }
}
.h9-insights .insights-box:nth-child(1) .insights-content,
.h9-insights .insights-box:nth-child(1) .insights-img {
  width: 50%;
  flex: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-insights .insights-box:nth-child(1) .insights-content,
  .h9-insights .insights-box:nth-child(1) .insights-img {
    width: 100%;
  }
}
.h9-insights .insights-box:nth-child(1) .insights-content {
  padding: 30px 0;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-insights .insights-box:nth-child(1) .insights-content {
    padding: 0;
  }
}
.h9-insights .insights-box:nth-child(2), .h9-insights .insights-box:nth-child(3) {
  width: calc(50% - 15px);
  gap: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-insights .insights-box:nth-child(2), .h9-insights .insights-box:nth-child(3) {
    gap: 30px;
  }
}
.h9-insights .insights-box:nth-child(2) .insights-img, .h9-insights .insights-box:nth-child(3) .insights-img {
  max-width: 525px;
  margin: 0 auto;
}
.h9-insights .insights-content {
  display: flex;
  gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-insights .insights-content {
    gap: 25px;
    flex-direction: column;
  }
}
.h9-insights .insights-content-inner {
  max-width: 503px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-insights .insights-content-inner {
    max-width: 100%;
  }
}
.h9-insights .insights-btn .tj-icon-btn {
  width: 52px;
  height: 52px;
  background-color: var(--empe-color-theme-dark);
}
.h9-insights .insights-btn .tj-icon-btn i {
  color: var(--empe-color-common-white);
}
.h9-insights .insights-btn .tj-icon-btn:hover {
  background-color: var(--empe-color-theme-primary);
}
.h9-insights .insights-btn .tj-icon-btn:hover i {
  color: var(--empe-color-theme-dark);
}
.h9-insights .insights-img {
  mask-image: none;
}
.h9-insights .insights-img img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-insights .insights-wrapper {
    gap: 20px;
  }
  .h9-insights .insights-box {
    padding: 30px;
  }
  .h9-insights .insights-box .desc {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-insights .insights-box {
    padding: 30px 24px;
  }
  .h9-insights .insights-box .desc {
    margin-bottom: 0;
  }
  .h9-insights .insights-box:nth-child(1), .h9-insights .insights-box:nth-child(2), .h9-insights .insights-box:nth-child(3) {
    width: 100%;
  }
}

/* !END: insights CSS */
/**----------------------------------------
START: Home 9 counter CSS
----------------------------------------*/
.h9-counter-section {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-counter-section {
    overflow: hidden;
  }
}
.h9-counter-section::after {
  content: "";
  position: absolute;
  bottom: -435px;
  left: 50%;
  transform: translateX(-50%);
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background-color: var(--empe-color-theme-primary);
  opacity: 0.5;
  filter: blur(200px);
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-counter-section::after {
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
  }
}
.h9-counter-section .counter-shape,
.h9-counter-section .counter-image {
  position: absolute;
  top: 5px;
  left: 0;
}
.h9-counter-section .counter-image {
  right: 0;
  left: auto;
  max-width: 615px;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .h9-counter-section .counter-image {
    max-width: 500px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h9-counter-section .counter-image {
    max-width: 425px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h9-counter-section .counter-image {
    max-width: 340px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-counter-section .counter-image {
    max-width: 290px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-counter-section .counter-image {
    top: auto;
    bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-counter-section .counter-image {
    top: 160px;
    max-width: 215px;
  }
}
.h9-counter-section .counter-shape {
  top: 15px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h9-counter-section .counter-shape {
    max-width: 180px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-counter-section .counter-shape {
    max-width: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-counter-section .counter-shape {
    display: none;
  }
}
.h9-counter-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 55px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-counter-wrapper {
    column-gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-counter-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.h9-counter-item {
  min-height: 237px;
  border-inline-start: 1px solid var(--empe-color-theme-primary);
  padding-inline-start: 20px;
  display: flex;
  align-items: end;
}
.h9-counter-item .inline-content {
  font-size: 68px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-counter-item .inline-content {
    font-size: 60px;
  }
}
.h9-counter-item .inline-content .text {
  margin-inline-start: 8px;
}
.h9-counter-item .count-text {
  font-size: 16px;
  font-weight: var(--empe-fw-normal);
  max-width: 345px;
}

/* !END: Home 9 counter CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.h9-testimonial-section {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  z-index: 2;
  position: relative;
}
.h9-testimonial-section .sec-heading {
  margin-top: 12px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-testimonial-section .sec-heading {
    margin-top: 0;
  }
}
.h9-testimonial-section .sec-desc {
  max-width: 350px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-testimonial-section .sec-desc {
    max-width: 100%;
  }
}
.h9-testimonial-section .sec-desc .desc {
  margin-bottom: 22px;
}
.h9-testimonial-slider {
  margin-inline-end: -40%;
  padding-top: 22px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-testimonial-slider {
    margin-inline-end: 0;
  }
}
.h9-testimonial-item {
  position: relative;
}
.h9-testimonial-item .tj-qutoe-icon {
  top: -40px;
  right: 30px;
  position: absolute;
  width: 83px;
  height: 83px;
  font-size: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--empe-color-theme-primary);
  background-color: var(--empe-color-theme-bg);
  border-radius: 12px;
  z-index: 2;
}
.h9-testimonial-item .tj-qutoe-icon::after, .h9-testimonial-item .tj-qutoe-icon::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 40px;
  left: -23px;
  width: 25px;
  height: 12px;
  box-shadow: 12px 0 0 0 var(--empe-color-theme-bg);
  border-radius: 0 12px 0 0;
}
.h9-testimonial-item .tj-qutoe-icon::after {
  left: auto;
  right: -24px;
  transform: scaleX(-1);
}
.h9-testimonial.testimonial-wrapper-5 {
  max-width: 100%;
  margin-inline-start: 0;
  display: block;
}
.h9-testimonial.testimonial-wrapper-5 .testimonial_header {
  justify-content: inherit;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}
.h9-testimonial.testimonial-wrapper-5 .star-ratings {
  margin-top: 0;
}
.h9-testimonial.testimonial-wrapper-5 .testimonial_item_3 {
  width: 100%;
  padding: 34px 30px 30px;
  overflow: hidden;
  background-color: var(--empe-color-theme-dark);
  border: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-testimonial.testimonial-wrapper-5 .testimonial_item_3 {
    padding: 32px 20px 30px;
  }
}
.h9-testimonial.testimonial-wrapper-5 .testimonial_item_3 .author_avatar_wrapper {
  margin-top: 22px;
  margin-bottom: 0;
  padding-top: 30px;
  border-top: 0;
  gap: 12px;
  position: relative;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.h9-testimonial.testimonial-wrapper-5 .testimonial_item_3 .author_avatar_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100px;
  left: -100px;
  width: calc(100% + 200px);
  height: 1px;
  background-color: var(--empe-color-border-1);
}

.nav-pagiation-wrap.style-2 {
  margin-top: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .nav-pagiation-wrap.style-2 {
    margin-top: 30px;
  }
}
.nav-pagiation-wrap.style-2 .slider-next,
.nav-pagiation-wrap.style-2 .slider-prev {
  background-color: var(--empe-color-theme-dark);
}
.nav-pagiation-wrap.style-2 .slider-next:last-child,
.nav-pagiation-wrap.style-2 .slider-prev:last-child {
  color: var(--empe-color-theme-dark);
}
.nav-pagiation-wrap.style-2 .slider-next:hover,
.nav-pagiation-wrap.style-2 .slider-prev:hover {
  color: var(--empe-color-theme-dark);
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}

/* !END: Testimonial CSS */
/**----------------------------------------
START: Pricing CSS
----------------------------------------*/
.h9_pricing_wrap {
  position: relative;
  z-index: 2;
}

.h9_pricing_shape {
  position: absolute;
  top: -90px;
  left: 70px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h9_pricing_shape {
    top: 0;
    left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9_pricing_shape {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9_pricing_shape img {
    width: 100%;
    height: 600px;
    object-fit: cover;
  }
}

.h9_pricing_item .pricing_item_inner {
  position: relative;
}
.h9_pricing_item .price_switcher {
  position: absolute;
  top: 0;
  right: 0;
}
.h9_pricing_item .price_switcher p {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}
.h9_pricing_item .toggle_switcher .toggle-switch {
  border-radius: 40px;
  width: 40px;
  height: 20px;
  background-color: var(--empe-color-theme-dark);
}
.h9_pricing_item .toggle_switcher .toggle-switch::before {
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.h9_pricing_item .toggle-checkbox:checked + .toggle-switch::before {
  left: 19px;
}
.h9_pricing_item.pricing_item {
  background-color: var(--empe-color-grey-4);
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.h9_pricing_item.pricing_item.style-3 {
  background-color: var(--empe-color-theme-dark);
}
.h9_pricing_item.pricing_item.style-3 .package_price {
  font-size: 48px;
  margin-top: 42px;
}
.h9_pricing_item .package_price {
  margin-bottom: 30px;
}
.h9_pricing_item .package_price .tj_currency {
  font-size: 24px;
}
.h9_pricing_item .package_price .tj_period {
  font-size: 16px;
  font-weight: var(--empe-fw-regular);
  color: var(--empe-color-text-body);
  margin-top: auto;
}
.h9_pricing_item .pricing_features {
  margin-top: 0;
  margin-bottom: 30px;
  padding-top: 30px;
  position: relative;
}
.h9_pricing_item .pricing_features::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50px;
  right: -50px;
  width: calc(100% + 100px);
  height: 1px;
  background-color: rgba(246, 247, 247, 0.1);
}
.h9_pricing_item .pricing_btn {
  border: 1px solid var(--empe-color-theme-primary);
}
.h9_pricing_item .pricing_btn .btn-text > span {
  gap: 4px;
}
.h9_pricing_item .pricing_btn .btn-text > span i,
.h9_pricing_item .pricing_btn .btn-text > span svg {
  margin-top: 1px;
}

/* !END: Pricing CSS */
/**----------------------------------------
START: Client CSS
----------------------------------------*/
.h9-client-section {
  background-color: var(--empe-color-theme-bg);
  border-radius: 16px;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-client-section {
    border-radius: 12px;
  }
}
.h9-client-section .bg-img {
  opacity: 1;
  mix-blend-mode: normal;
}
.h9-client-section .sec-heading {
  margin-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-client-section .sec-heading {
    margin-bottom: 16px;
  }
}
.h9-client-section .sub-title {
  margin-bottom: 16px;
}
.h9-client-section .sec-title {
  font-size: 74px;
  line-height: 1.05;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h9-client-section .sec-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-client-section .sec-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-client-section .sec-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-client-section .sec-title {
    font-size: 32px;
  }
}
.h9-client-section .section-right-content {
  max-width: 513px;
  margin-left: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-client-section .section-right-content {
    max-width: 100%;
  }
}
.h9-client-section .section-right-content p {
  margin-bottom: 20px;
}
.h9-client-wrap {
  margin-top: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h9-client-wrap {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-client-wrap {
    margin-top: 40px;
  }
}
.h9-client-item {
  width: 100%;
  padding: 0;
}
.h9-client-item .client-logo {
  width: 100%;
  height: 157px;
  border: 0;
  background-color: var(--empe-color-grey-4);
  position: relative;
  overflow: hidden;
}
.h9-client-item .client-logo img {
  transition: all 0.5s ease;
}
.h9-client-item .client-logo::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  top: -100%;
  left: -100%;
  transition: all 0.5s ease;
  border-radius: 10px;
}
.h9-client-item .client-logo:hover::before {
  top: 100%;
  left: 100%;
}
.h9-client-item .client-logo:hover img {
  transform: scale(1.15);
}

/* !END: Client CSS */
/**----------------------------------------
START: Client CSS
----------------------------------------*/
.h9-faq.h6-faq-section::before, .h9-faq.h6-faq-section::after {
  display: none;
}
.h9-faq-shape-1, .h9-faq-shape-2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-faq-shape-1, .h9-faq-shape-2 {
    display: none;
  }
}
.h9-faq-shape-1 {
  left: 0;
}
.h9-faq-shape-2 {
  right: 0;
}

/* !END: Client CSS */
/**----------------------------------------
START: CTA CSS
----------------------------------------*/
.h9-cta-section {
  background-color: var(--empe-color-theme-primary);
}
.h9-cta-section .bg-img {
  opacity: 1;
  mix-blend-mode: difference;
}
.h9-cta-section .sec-heading {
  max-width: 675px;
  padding-top: 70px;
  padding-bottom: 84px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-cta-section .sec-heading {
    padding-bottom: 30px;
  }
}
.h9-cta-section .sec-heading .sec-title {
  margin-bottom: 26px;
  color: var(--empe-color-theme-dark);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-cta-section .sec-heading .sec-title {
    font-size: 34px;
  }
}
.h9-cta-section .cta-baner {
  position: relative;
  max-width: 595px;
  width: 100%;
  text-align: end;
  margin-right: -40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-cta-section .cta-baner {
    max-width: 350px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-cta-section .cta-baner {
    text-align: center;
    margin-right: 0;
  }
}
.h9-cta-section .cta-baner .image-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-cta-section .cta-baner .image-2 {
    max-width: 220px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h9-cta-section .cta-area {
    padding-inline-start: 0;
  }
}
.h9-cta-btn-area {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}














.empe-form__label-for-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.empe-form__label-for-checkbox input {
  display: none;
}

.empe-form__label-for-checkbox input:checked ~ span::after {
  background-color: var(--empe-color-theme-primary);
  border-color: var(--empe-color-theme-primary);
}

.empe-form__label-for-checkbox input:checked ~ span::before {
  visibility: visible;
  opacity: 1;
}

.empe-form__label-for-checkbox span {
  font-size: 16px;
  color: var(--empe-color-text-body-2);
  position: relative;
  padding-inline-start: 26px;
  z-index: 1;
  cursor: pointer;
}

.empe-form__label-for-checkbox span::after {
  position: absolute;
  content: "";
  top: 5px;
  inset-inline-start: 0;
  width: 18px;
  height: 18px;
  line-height: 16px;
  text-align: center;
  border: 1px solid var(--empe-color-theme-dark-3);
  border-radius: 3px;
  z-index: -1;
}

.empe-form__label-for-checkbox span::before {
  position: absolute;
  content: "\e941";
  inset-inline-start: 1px;
  top: 5px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  color: var(--empe-color-common-black-2);
  font-family: var(--empe-fonticon);
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s ease;
}

.empe-form__muted {
  padding: 10px 15px;
  -webkit-margin-start: 25px;
  margin-inline-start: 25px;
  font-size: 14px;
  line-height: 1.57;
  color: var(--empe-color-text-body-2);
  margin-bottom: 0;
  padding-bottom: 0;
}


#map-consent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
}
/* ============================================================
   Cookie Consent Banner — mindshape_cookie_consent
   ============================================================ */

/* Dialog-Backdrop (nativer <dialog> Browser-Overlay) */
dialog#cookie-consent::backdrop {
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Dialog-Element selbst — unten zentriert positionieren */
dialog#cookie-consent {
    position: fixed;
    bottom: 28px;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    width: 100%;
    max-width: 820px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    overflow: visible;
}

/* Modal-Karte */
dialog#cookie-consent .consent-modal {
    background: #191a18;
    border: 1px solid #282926;
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(45, 156, 219, 0.1);
    animation: cookieSlideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headline */
dialog#cookie-consent .cookie-headline {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f6f7f7;
    margin-bottom: 10px;
}

/* Hinweistext */
dialog#cookie-consent .hint {
    margin-bottom: 20px;
}

dialog#cookie-consent .hint p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #bcbdb9;
    margin: 0;
}

/* Cookie-Optionen (Checkboxen) */
dialog#cookie-consent .options {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

dialog#cookie-consent .options li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #282926;
    border-radius: 10px;
    padding: 12px 16px;
    transition: border-color 0.2s ease;
}

dialog#cookie-consent .options li:hover {
    border-color: rgba(45, 156, 219, 0.25);
}

dialog#cookie-consent .options .label {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #f6f7f7;
    margin: 0;
}

/* Nativen Checkbox aus dem Layout nehmen — bleibt aber im DOM für :checked-Selektor */
dialog#cookie-consent input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* Visueller Checkbox-Ersatz */
dialog#cookie-consent .checkmark {
    display: inline-flex;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #494a46;
    border-radius: 5px;
    background: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

/* Checked-Zustand: input ist checked → nächstes Geschwister .checkmark blau */
dialog#cookie-consent input[type="checkbox"]:checked + .checkmark {
    background-color: #2D9CDB;
    border-color: #2D9CDB;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='m3 8 3.5 3.5 6.5-7'/%3E%3C/svg%3E");
}

/* Disabled */
dialog#cookie-consent input[type="checkbox"]:disabled + .checkmark {
    opacity: 0.45;
    cursor: not-allowed;
}

/* Buttons */
dialog#cookie-consent .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 14px;
}

dialog#cookie-consent .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    line-height: 1;
    text-decoration: none;
}

/* Primärbutton: Speichern / Akzeptieren */
dialog#cookie-consent .btn.save,
dialog#cookie-consent .btn.btn--primary {
    background: #2D9CDB;
    color: #050505;
    box-shadow: 0 4px 20px rgba(45, 156, 219, 0.3);
}

dialog#cookie-consent .btn.save:hover,
dialog#cookie-consent .btn.btn--primary:hover {
    background: #5bb5e8;
    box-shadow: 0 6px 28px rgba(45, 156, 219, 0.45);
    transform: translateY(-1px);
}

/* Sekundärbutton: Ablehnen */
dialog#cookie-consent .btn.deny,
dialog#cookie-consent .btn.btn--secondary {
    background: transparent;
    color: #9a9b96;
    border: 1px solid #282926;
}

dialog#cookie-consent .btn.deny:hover,
dialog#cookie-consent .btn.btn--secondary:hover {
    color: #bcbdb9;
    border-color: #494a46;
    transform: translateY(-1px);
}

/* "Details anzeigen"-Button */
dialog#cookie-consent .show-details {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #2D9CDB;
    cursor: pointer;
    padding: 6px 0 12px;
    transition: color 0.2s ease;
    text-align: center;
}

dialog#cookie-consent .show-details:hover {
    color: #5bb5e8;
}

dialog#cookie-consent .show-details .less {
    display: none;
}

dialog#cookie-consent .show-details.open .more {
    display: none;
}

dialog#cookie-consent .show-details.open .less {
    display: inline;
}

/* Details-Container — immer sichtbar wenn im DOM, kein display-Eingriff */
dialog#cookie-consent .details {
    border-top: 1px solid #282926;
    padding-top: 20px;
    margin-top: 6px;
    background: transparent;
}

/* .detail ohne open = Extension versteckt es selbst; .detail.open = sichtbar */
dialog#cookie-consent .details .detail {
    display: none;
    background: #141513 !important;
    border: 1px solid #282926 !important;
    border-left: 3px solid #2D9CDB !important;
    border-radius: 10px !important;
    padding: 16px 18px !important;
    margin-bottom: 12px !important;
    color: #bcbdb9 !important;
}

dialog#cookie-consent .details .detail.open {
    display: block;
}

dialog#cookie-consent .details .detail:last-child {
    margin-bottom: 0 !important;
}

/* Einzelne Cookie-Gruppe */
dialog#cookie-consent .details .detail {
    background: #141513 !important;
    border: 1px solid #282926 !important;
    border-left: 3px solid #2D9CDB !important;
    border-radius: 10px !important;
    padding: 16px 18px !important;
    margin-bottom: 12px !important;
    color: #bcbdb9 !important;
}

dialog#cookie-consent .details .detail:last-child {
    margin-bottom: 0 !important;
}

dialog#cookie-consent .option-headline {
    display: block !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #f6f7f7 !important;
    margin-bottom: 8px !important;
    background: transparent !important;
}

dialog#cookie-consent .option-wrapper > p {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #9a9b96 !important;
    line-height: 1.6 !important;
    margin-bottom: 14px !important;
    background: transparent !important;
}

/* Label in den Details */
dialog#cookie-consent .option-detail.cookie-option .label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #bcbdb9 !important;
    margin: 0 0 12px !important;
    background: transparent !important;
}

/* Details-Checkbox: input → span(Text) → span.checkmark — + Selektor greift nicht.
   Daher: .checkmark verstecken, Input direkt mit appearance:none stylen. */
dialog#cookie-consent .option-detail.cookie-option input[type="checkbox"] {
    position: static !important;
    opacity: 1 !important;
    width: 18px !important;
    height: 18px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    flex-shrink: 0 !important;
    border: 2px solid #494a46 !important;
    border-radius: 4px !important;
    background: transparent no-repeat center / 13px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease, border-color 0.2s ease !important;
    pointer-events: auto !important;
}

dialog#cookie-consent .option-detail.cookie-option input[type="checkbox"]:checked {
    background-color: #2D9CDB !important;
    border-color: #2D9CDB !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='m3 8 3.5 3.5 6.5-7'/%3E%3C/svg%3E") !important;
}

dialog#cookie-consent .option-detail.cookie-option input[type="checkbox"]:disabled {
    opacity: 0.45 !important;
    cursor: not-allowed !important;
}

dialog#cookie-consent .option-detail.cookie-option .checkmark {
    display: none !important;
}

/* Metadaten-Karte */
dialog#cookie-consent .option-detail-wrapper {
    background: #0d0e0d !important;
    border: 1px solid #1e1f1d !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
}

dialog#cookie-consent .option-detail {
    display: flex !important;
    gap: 10px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
    padding: 3px 0 !important;
    background: transparent !important;
    color: #9a9b96 !important;
    border: none !important;
}

dialog#cookie-consent .option-detail.cookie-option {
    display: none !important;
}

dialog#cookie-consent .option-title {
    color: #6d6e68 !important;
    flex-shrink: 0 !important;
    min-width: 110px !important;
    font-weight: 500 !important;
}

dialog#cookie-consent .option-value {
    color: #bcbdb9 !important;
}

/* Footer-Links */
dialog#cookie-consent .footer-links {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #6d6e68;
    margin-top: 16px;
}

dialog#cookie-consent .footer-links a {
    color: #6d6e68;
    text-decoration: none;
    transition: color 0.2s ease;
}

dialog#cookie-consent .footer-links a:hover {
    color: #2D9CDB;
}

.cookie-consent-container .consent-modal .option-wrapper {
    background-color: transparent !important;
}

/* Footer: Cookie-Einstellungen Button */
.cookie-settings-btn {
    background: transparent;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #6d6e68;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.cookie-settings-btn:hover {
    color: #2D9CDB;
}

/* Responsive */
@media (max-width: 860px) {
    dialog#cookie-consent {
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: auto;
        transform: none;
        max-width: none;
    }
}

@media (max-width: 600px) {
    dialog#cookie-consent .consent-modal {
        padding: 22px 18px;
    }

    dialog#cookie-consent .buttons {
        flex-direction: column;
    }

    dialog#cookie-consent .btn {
        width: 100%;
    }

    dialog#cookie-consent .btn.save {
        order: -1;
    }
}