﻿

.section-space {
    padding: 70px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-space {
        padding: 100px 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) {
    .section-space {
        padding: 80px 0;
    }
}

.section-bottom-space {
    padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section-bottom-space {
        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) {
    .section-bottom-space {
        padding-bottom: 80px;
    }
}
/* START: Section Title CSS */
.sec-heading {
    display: block;
    margin-bottom: 50px;
}

    .sec-heading .sub-title {
        display: inline-block;
        font-size: 14px;
        font-weight: var(--tj-fw-bold);
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--tj-color-theme-primary);
        -webkit-padding-start: 16px;
        padding-inline-start: 16px;
        -webkit-padding-end: 16px;
        padding-inline-end: 16px;
        margin-bottom: 15px;
        position: relative;
        z-index: 1;
    }

        .sec-heading .sub-title::before, .sec-heading .sub-title::after {
            position: absolute;
            content: "";
            width: 4px;
            height: 4px;
            border-radius: 50%;
            top: 50%;
            inset-inline-start: 0;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            background-color: var(--tj-color-theme-primary);
        }

        .sec-heading .sub-title::after {
            inset-inline-start: auto;
            inset-inline-end: 0;
        }

    .sec-heading .sec-title {
        margin: 0;
        letter-spacing: -0.04em;
    }

        .sec-heading .sec-title span {
            color: var(--tj-color-theme-primary);
        }

    .sec-heading .desc {
        margin-top: 20px;
    }

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sec-heading .desc {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .sec-heading .desc {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sec-heading {
        margin-bottom: 45px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .sec-heading {
        margin-bottom: 40px;
    }

        .sec-heading .sub-title {
            margin-bottom: 10px;
        }
}

.sec-heading.style-2 .sub-title {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    -webkit-padding-end: 0;
    padding-inline-end: 0;
}

    .sec-heading.style-2 .sub-title::before, .sec-heading.style-2 .sub-title::after {
        display: none;
    }

.sec-heading.style-3 .sub-title {
    line-height: 1;
    padding: 5px 7px;
    background-color: var(--tj-color-theme-bg);
}

    .sec-heading.style-3 .sub-title::after, .sec-heading.style-3 .sub-title::before {
        display: none;
    }

.sec-heading.style-4 .sub-title {
    line-height: 1;
    padding: 5px 7px 5px 17px;
    background-color: var(--tj-color-theme-bg);
}

    .sec-heading.style-4 .sub-title::before {
        inset-inline-start: 7px;
    }

    .sec-heading.style-4 .sub-title::after {
        display: none;
    }

.sec-heading-centered {
    max-width: 560px;
    width: 100%;
    text-align: center;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
}

/* !END: Section Title CSS */
/* !END: Project CSS */

.blog-btn-2 {
    font-weight: var(--tj-fw-bold);
    color: var(--tj-color-theme-dark);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    overflow: hidden;
    position: relative;
}

    .blog-btn-2 .btn-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 22px;
        color: var(--tj-color-common-white);
        background-color: rgb(var(--dark-rgb));
        -webkit-transition: background-color 0.3s ease-in-out 0s;
        transition: background-color 0.3s ease-in-out 0s;
    }

    .blog-btn-2 .btn-text {
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
        opacity: 0;
        visibility: hidden;
        white-space: nowrap;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }

    .blog-btn-2:hover .btn-icon {
        background-color: var(--tj-color-theme-primary);
    }

    .blog-btn-2:hover .btn-text {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }



    

/* START: Button CSS */
.tj-primary-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    font-weight: var(--tj-fw-bold);
    color: var(--tj-color-common-white);
    background-color: var(--tj-color-theme-dark);
    padding: 5.5px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
}

    .tj-primary-btn .btn_inner {
        position: relative;
        z-index: 1;
        padding: 15px 20px 15px 55px;
        width: 100%;
        text-align: center;
    }

        .tj-primary-btn .btn_inner::before {
            content: "";
            position: absolute;
            z-index: 0;
            top: 0;
            inset-inline-start: 0;
            width: 45px;
            height: 100%;
            background-color: var(--tj-color-theme-primary);
            border-radius: 50px;
            -webkit-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
        }

        .tj-primary-btn .btn_inner .btn_icon {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            position: absolute;
            inset-inline-start: 0;
            top: 0;
            min-width: 45px;
            height: 100%;
            z-index: 2;
            font-size: 1.6em;
            line-height: 1;
            color: var(--tj-color-common-white);
        }

            .tj-primary-btn .btn_inner .btn_icon > span {
                overflow: hidden;
                position: relative;
                display: -webkit-inline-box;
                display: -ms-inline-flexbox;
                display: inline-flex;
            }

                .tj-primary-btn .btn_inner .btn_icon > span i:first-child, .tj-primary-btn .btn_inner .btn_icon > span i:last-child {
                    -webkit-transition: -webkit-transform 0.4s ease-in-out 0s;
                    transition: -webkit-transform 0.4s ease-in-out 0s;
                    transition: transform 0.4s ease-in-out 0s;
                    transition: transform 0.4s ease-in-out 0s, -webkit-transform 0.4s ease-in-out 0s;
                }

                .tj-primary-btn .btn_inner .btn_icon > span i:last-child {
                    position: absolute;
                    -webkit-transform: translateX(-150%);
                    -ms-transform: translateX(-150%);
                    transform: translateX(-150%);
                }

        .tj-primary-btn .btn_inner .btn_text {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            overflow: hidden;
            color: var(--tj-color-common-white);
            text-shadow: 0 23px 0 currentColor;
            white-space: nowrap;
        }

            .tj-primary-btn .btn_inner .btn_text > span {
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
                -webkit-transform: translateY(0);
                -ms-transform: translateY(0);
                transform: translateY(0);
                -webkit-transition: 0.5s;
                transition: 0.5s;
            }

    .tj-primary-btn.white-btn {
        background-color: var(--tj-color-common-white);
    }

        .tj-primary-btn.white-btn .btn_inner .btn_text {
            color: var(--tj-color-heading-primary);
        }

        .tj-primary-btn.white-btn:hover .btn_inner .btn_text {
            color: var(--tj-color-common-white);
        }

    .tj-primary-btn.header_btn {
        background-color: var(--tj-color-common-white);
        padding: 4.5px;
    }

        .tj-primary-btn.header_btn .btn_inner {
            padding: 12px 18px 12px 50px;
        }

            .tj-primary-btn.header_btn .btn_inner::before {
                width: 40px;
            }

            .tj-primary-btn.header_btn .btn_inner .btn_icon {
                min-width: 40px;
                font-size: 1.4em;
            }

            .tj-primary-btn.header_btn .btn_inner .btn_text {
                color: var(--tj-color-heading-primary);
            }

    .tj-primary-btn:hover .btn_inner::before {
        width: 100%;
        -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    }

    .tj-primary-btn:hover .btn_inner .btn_icon i:first-child {
        -webkit-transform: translateX(150%);
        -ms-transform: translateX(150%);
        transform: translateX(150%);
    }

    .tj-primary-btn:hover .btn_inner .btn_icon i:last-child {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .tj-primary-btn:hover .btn_inner .btn_text {
        color: var(--tj-color-common-white);
    }

        .tj-primary-btn:hover .btn_inner .btn_text > span {
            -webkit-transform: translateY(-24px);
            -ms-transform: translateY(-24px);
            transform: translateY(-24px);
        }

@media (max-width: 575px) {
    .tj-primary-btn {
        padding: 4.5px;
    }

        .tj-primary-btn .btn_inner {
            padding: 12px 18px 12px 50px;
        }

            .tj-primary-btn .btn_inner::before {
                width: 40px;
            }

            .tj-primary-btn .btn_inner .btn_icon {
                min-width: 40px;
                font-size: 1.4em;
            }
}

.text-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 1;
    font-weight: var(--tj-fw-bold);
    color: var(--tj-color-heading-primary);
    position: relative;
    z-index: 1;
}

    .text-btn::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 1px;
        bottom: 0px;
        inset-inline-start: 0;
        -webkit-transform-origin: right;
        -ms-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        background-color: var(--tj-color-heading-primary);
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: -webkit-transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    }

    .text-btn i {
        position: relative;
        font-size: 1.3em;
        top: 1px;
    }

    .text-btn:hover::before {
        -webkit-transform-origin: left;
        -ms-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
    }

.icon-btn {
    margin-top: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: var(--tj-color-common-white);
    background-color: var(--tj-color-heading-primary);
    overflow: hidden;
}

    .icon-btn i,
    .icon-btn svg {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        line-height: 1;
        color: var(--tj-color-common-white);
    }

    .icon-btn i {
        -webkit-transform: rotate(-45deg) translateX(0);
        -ms-transform: rotate(-45deg) translateX(0);
        transform: rotate(-45deg) translateX(0);
        -webkit-transition: -webkit-transform 0.3s ease-in-out;
        transition: -webkit-transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out;
        transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
        text-shadow: -40px 0 0;
    }

    .icon-btn:hover i {
        -webkit-transform: rotate(-45deg) translateX(40px);
        -ms-transform: rotate(-45deg) translateX(40px);
        transform: rotate(-45deg) translateX(40px);
    }

.icon-btn-2 {
    font-weight: var(--tj-fw-bold);
    color: var(--tj-color-theme-dark);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    gap: 8px;
    overflow: hidden;
    position: relative;
}

    .icon-btn-2 .btn-icon {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 22px;
        color: var(--tj-color-common-white);
        background-color: var(--tj-color-theme-dark);
        -webkit-transition: background-color 0.3s ease-in-out 0s;
        transition: background-color 0.3s ease-in-out 0s;
    }

    .icon-btn-2 .btn-text {
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
        opacity: 0;
        visibility: hidden;
        white-space: nowrap;
        -webkit-transition: all 0.3s ease-in-out 0s;
        transition: all 0.3s ease-in-out 0s;
    }

    .icon-btn-2:hover .btn-icon {
        background-color: var(--tj-color-theme-primary);
    }

    .icon-btn-2:hover .btn-text {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

.text-btn-2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 1;
    font-weight: var(--tj-fw-bold);
    color: var(--tj-color-heading-primary);
    position: relative;
    z-index: 1;
}

    .text-btn-2 .icon {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background-color: var(--tj-color-theme-dark);
        color: var(--tj-color-common-white);
        font-size: 18px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

        .text-btn-2 .icon i,
        .text-btn-2 .icon svg {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            line-height: 1;
        }

    .text-btn-2 > *:nth-child(1) {
        -webkit-transform: scale3d(0.5, 0.5, 1);
        transform: scale3d(0.5, 0.5, 1);
        -webkit-margin-end: -28px;
        margin-inline-end: -28px;
        background-color: var(--tj-color-theme-primary);
        opacity: 0;
    }

    .text-btn-2 > *:nth-child(3) {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-margin-start: 0;
        margin-inline-start: 0;
        opacity: 1;
    }

    .text-btn-2:hover > *:nth-child(1) {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        -webkit-margin-end: 0;
        margin-inline-end: 0;
        opacity: 1;
    }

    .text-btn-2:hover > *:nth-child(3) {
        -webkit-transform: scale3d(0.5, 0.5, 1);
        transform: scale3d(0.5, 0.5, 1);
        -webkit-margin-start: -28px;
        margin-inline-start: -28px;
        opacity: 0;
    }

/* !END: Button CSS */

.sec-heading-wrap h2,
.service-style-5 h4 {
    font-family: var(--tj-ff-heading);
    color: var(--tj-color-heading-primary);
    margin-top: 0px;
    font-weight: var(--tj-fw-sbold);
    line-height: 1.2;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.service-style-5 p {
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
    font-family: var(--tj-ff-body);
    font-size: var(--tj-fs-body);
    font-weight: normal;
    color: var(--tj-color-text-body);
    background-color: var(--tj-color-common-white);
    line-height: 1.6;
}

.sec-heading-wrap h2 {
    font-size: var(--tj-fs-h2);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .sec-heading-wrap h2 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .sec-heading-wrap h2 {
        font-size: 35px;
    }
}

@media (max-width: 575px) {
    .sec-heading-wrap h2 {
        font-size: 30px;
    }
}

.service-style-5 h4 {
    font-size: var(--tj-fs-h4);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-style-5 h4 {
        font-size: 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) {
    .service-style-5 h4 {
        font-size: 20px;
    }
}




/* START: Project CSS */
.tj-service-section-four {
    background-color: var(--tj-color-theme-bg);
    overflow: hidden;
}

    .tj-service-section-four .sec-heading {
        margin: 0;
        max-width: 500px;
    }

    .tj-service-section-four .sec-heading-wrap {
        margin-bottom: 60px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-column-gap: 30px;
        -moz-column-gap: 30px;
        column-gap: 30px;
        row-gap: 20px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .tj-service-section-four .sec-heading-wrap .desc {
            max-width: 300px;
            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) {
    .tj-service-section-four .sec-heading-wrap {
        margin-bottom: 40px;
    }
}

.tj-service-section-four .sec-heading .sub-title {
    background-color: var(--tj-color-common-white);
}

.h5-service-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: var(--tj-color-common-white);
    padding: 40px 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-service-wrap {
        background-color: transparent;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
        row-gap: 24px;
    }
}

.service-style-5 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 45px;
    width: 175px;
    height: 437px;
    place-content: center;
    overflow: hidden;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-end: 1px solid var(--tj-color-border-2);
    border-inline-end: 1px solid var(--tj-color-border-2);
}

    .service-style-5:last-child {
        border: 0;
    }

    .service-style-5 .service-icon {
        width: 70px;
        height: 70px;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 25px;
        border-radius: 50%;
        position: relative;
        z-index: 2;
        text-align: center;
    }

        .service-style-5 .service-icon span {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            font-size: 38px;
            line-height: 1;
            border-radius: 50%;
            color: var(--tj-color-theme-primary);
            background-color: var(--tj-color-theme-bg);
        }

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .service-style-5 .service-icon span {
        width: 70px;
        height: 70px;
        font-size: 45px;
    }
}

@media (max-width: 390px) {
    .service-style-5 .service-icon span {
        width: 60px;
        height: 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) {
    .service-style-5 .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
}

@media (max-width: 390px) {
    .service-style-5 .service-icon {
        width: 60px;
        height: 60px;
    }
}

.service-style-5 .blog-btn-2 i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.service-style-5 .blog-btn-2:hover i {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.service-style-5 .h5-service-content {
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .service-style-5 .h5-service-content .h5-title-area {
        position: absolute;
        height: 247px;
        bottom: 70px;
        inset-inline-start: -25px;
        text-align: start;
        -webkit-transition: all 0.5s ease-in;
        transition: all 0.5s ease-in;
    }

        .service-style-5 .h5-service-content .h5-title-area .title {
            -webkit-writing-mode: sideways-lr;
            -ms-writing-mode: sideways-lr;
            writing-mode: sideways-lr;
            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) {
    .service-style-5 .h5-service-content .h5-title-area .title {
        -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
        writing-mode: inherit;
    }
}

@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-style-5 .h5-service-content .h5-title-area {
        max-width: 245px;
        width: 100%;
        height: auto;
        inset-inline-start: 110px;
        bottom: 50%;
        -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
        transform: translateY(50%);
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .service-style-5 .h5-service-content .h5-title-area {
        inset-inline-start: 100px;
    }
}

@media (max-width: 390px) {
    .service-style-5 .h5-service-content .h5-title-area {
        max-width: 195px;
        inset-inline-start: 88px;
    }
}

.service-style-5 .h5-service-content .title {
    margin-bottom: 16px;
}

    .service-style-5 .h5-service-content .title a {
        display: inline-block;
    }

        .service-style-5 .h5-service-content .title a:hover {
            color: var(--tj-color-theme-primary);
        }

.service-style-5 .h5-service-content .blog-btn-2 {
    position: absolute;
    bottom: 0;
    inset-inline-start: 15px;
}

    .service-style-5 .h5-service-content .blog-btn-2.mobile-show {
        visibility: hidden;
        opacity: 0;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
    }

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-style-5 .h5-service-content .blog-btn-2 {
        inset-inline-start: 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) {
    .service-style-5 .h5-service-content .blog-btn-2 {
        inset-inline-start: 20px;
        bottom: 30px;
    }
}

@media (max-width: 575px) {
    .service-style-5 .h5-service-content .blog-btn-2 .btn-icon {
        width: 45px;
        height: 45px;
    }
}

.service-style-5 .h5-service-content-inner {
    position: relative;
    text-align: start;
    top: 0;
    inset-inline-start: 0;
    width: 300px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.5s ease-in-out;
    transition: -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-style-5 .h5-service-content-inner {
        width: 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) {
    .service-style-5 .h5-service-content-inner {
        width: calc(100% - 60px);
        padding-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) {
    .service-style-5 .h5-service-content {
        padding: 30px 20px;
    }
}

.service-style-5.active {
    place-content: unset;
    width: 420px;
}

    .service-style-5.active .h5-service-content {
        opacity: 1;
        visibility: visible;
    }

    .service-style-5.active .h5-service-content-inner {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .service-style-5.active .h5-title-area {
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

    .service-style-5.active .service-icon span {
        background-color: var(--tj-color-theme-primary);
        color: var(--tj-color-common-white);
    }

    .service-style-5.active .blog-btn-2 {
        visibility: visible;
        opacity: 1;
        inset-inline-start: 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) {
    .service-style-5.active .blog-btn-2 {
        inset-inline-start: 20px;
    }
}

.service-style-5.active .blog-btn-2.mobile-show {
    visibility: hidden;
    opacity: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .service-style-5.active {
        width: 390px;
        padding: 0 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-style-5.active {
        width: 360px;
        padding: 0 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) {
    .service-style-5.active {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 390px) {
    .service-style-5 {
        height: 120px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .service-style-5 {
        width: 145px;
        padding: 0 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .service-style-5 {
        width: 115px;
        padding: 0 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) {
    .service-style-5 {
        padding: 0;
        -webkit-border-end: none;
        border-inline-end: none;
        background-color: var(--tj-color-common-white);
        place-content: unset;
        width: 100%;
        height: auto;
    }

        .service-style-5 .h5-service-content {
            opacity: 1;
            visibility: visible;
        }

        .service-style-5 .h5-service-content-inner {
            width: 100%;
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
            opacity: 1;
            visibility: visible;
        }

        .service-style-5 .h5-title-area {
            opacity: 0;
            visibility: hidden;
            -webkit-transition: all 0.2s ease-out;
            transition: all 0.2s ease-out;
        }

        .service-style-5 .service-icon span {
            background-color: var(--tj-color-theme-primary);
            color: var(--tj-color-common-white);
        }

        .service-style-5 .blog-btn-2 {
            visibility: visible;
            opacity: 1;
            inset-inline-start: 20px;
        }

            .service-style-5 .blog-btn-2.mobile-show {
                visibility: hidden;
                opacity: 0;
            }
}

.services-btn {
    margin-top: 40px;
}

/* !END: Project CSS */

/* !END: Project CSS */


/* START: Marquee CSS */
.tj-marquee-section {
    position: relative;
    padding-top: 25px;
    padding-bottom: 23px;
    background-color: var(--tj-color-theme-primary);
    overflow: hidden;
    white-space: nowrap;
    margin-left: -20px !important;
    margin-right: -20px !important;
}

.marquee-slider-wrapper .marquee-slider .marquee-wrapper {
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}

.marquee-item {
    width: auto !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: nowrap; /* Prevent wrapping to the next line */
    gap: 30px;
    -webkit-padding-end: 10px;
    padding-inline-end: 10px;
}

    .marquee-item .marquee-title .text {
        min-width: 0;
        color: var(--tj-color-common-white);
        letter-spacing: -0.025em;
        margin-bottom: 0;
    }

    .marquee-item .marquee-icons {
        min-width: 0;
        position: relative;
        top: 3px;
        max-width: 32px;
        width: 100%;
    }

        .marquee-item .marquee-icons img {
            -webkit-animation: rotateImg-2 6s infinite linear;
            animation: rotateImg-2 6s infinite linear;
        }

.marquee-slider-two {
    position: relative;
    z-index: 1;
}

    .marquee-slider-two::before, .marquee-slider-two::after {
        position: absolute;
        content: "";
        top: 0;
        inset-inline-start: 0;
        width: 40%;
        height: 100%;
        background-image: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-dark)), to(rgba(5, 18, 41, 0)));
        background-image: linear-gradient(90deg, var(--tj-color-theme-dark) 0%, rgba(5, 18, 41, 0) 100%);
        z-index: 2;
    }

    .marquee-slider-two::after {
        inset-inline-start: auto;
        inset-inline-end: 0;
        background-image: -webkit-gradient(linear, right top, left top, from(var(--tj-color-theme-dark)), to(rgba(5, 18, 41, 0)));
        background-image: linear-gradient(-90deg, var(--tj-color-theme-dark) 0%, rgba(5, 18, 41, 0) 100%);
    }

.scrolling-ticker-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scrolling-content {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    min-width: 100%;
    -webkit-animation: scroll 120s linear infinite;
    animation: scroll 120s linear infinite;
}

    .scrolling-content span {
        font-size: 114px;
        font-weight: 600;
        letter-spacing: -0.02em;
        line-height: 1;
        text-transform: uppercase;
        color: var(--tj-color-common-white);
        vertical-align: middle;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 20px;
    }

        .scrolling-content span i {
            color: var(--tj-color-theme-primary);
            font-size: 50px;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            line-height: 1;
            -webkit-animation: rotateMarquee 6s infinite linear;
            animation: rotateMarquee 6s infinite linear;
        }

/* !END: Theme Marquee CSS */

/* START: Animate CSS */
@-webkit-keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-webkit-keyframes rotateImg {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateImg {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes rotateImg-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotateImg-2 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes rotateImg-two {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateImg-two {
    0% {
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--tj-color-common-white);
        box-shadow: 0 0 0 0 var(--tj-color-common-white);
    }

    100% {
        -webkit-box-shadow: 0 0 0 25px transparent;
        box-shadow: 0 0 0 25px transparent;
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--tj-color-common-white);
        box-shadow: 0 0 0 0 var(--tj-color-common-white);
    }

    100% {
        -webkit-box-shadow: 0 0 0 25px transparent;
        box-shadow: 0 0 0 25px transparent;
    }
}

@-webkit-keyframes pulse-two {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.3);
        box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 25px transparent;
        box-shadow: 0 0 0 25px transparent;
    }
}

@keyframes pulse-two {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.3);
        box-shadow: 0 0 0 0 rgba(247, 247, 247, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 25px transparent;
        box-shadow: 0 0 0 25px transparent;
    }
}

@-webkit-keyframes move {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

@keyframes move {
    0%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
}

@-webkit-keyframes move-two {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@keyframes move-two {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    50% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
}

@-webkit-keyframes zoom-effect {
    0%, 100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
    }
}

@keyframes zoom-effect {
    0%, 100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    50% {
        -webkit-transform: scale(1.3, 1.3);
        transform: scale(1.3, 1.3);
    }
}

@-webkit-keyframes shine {
    0% {
        -webkit-transform: skewX(-25deg) translateX(0);
        transform: skewX(-25deg) translateX(0);
    }

    100% {
        -webkit-transform: skewX(-25deg) translateX(250%);
        transform: skewX(-25deg) translateX(250%);
    }
}

@keyframes shine {
    0% {
        -webkit-transform: skewX(-25deg) translateX(0);
        transform: skewX(-25deg) translateX(0);
    }

    100% {
        -webkit-transform: skewX(-25deg) translateX(250%);
        transform: skewX(-25deg) translateX(250%);
    }
}

@-webkit-keyframes wobble-horizontal-hover {
    16.65% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }

    33.3% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes wobble-horizontal-hover {
    16.65% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }

    33.3% {
        -webkit-transform: translateX(-3px);
        transform: translateX(-3px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(calc(-100% - 40px));
        transform: translateX(calc(-100% - 40px));
    }
}

@keyframes scroll {
    from {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    to {
        -webkit-transform: translateX(calc(-100% - 40px));
        transform: translateX(calc(-100% - 40px));
    }
}

@-webkit-keyframes rotateMarquee {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotateMarquee {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateX(0) rotate(90deg);
        transform: translateX(0) rotate(90deg);
    }

    40% {
        -webkit-transform: translateX(6px) rotate(90deg);
        transform: translateX(6px) rotate(90deg);
    }

    60% {
        -webkit-transform: translateX(3px) rotate(90deg);
        transform: translateX(3px) rotate(90deg);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateX(0) rotate(90deg);
        transform: translateX(0) rotate(90deg);
    }

    40% {
        -webkit-transform: translateX(6px) rotate(90deg);
        transform: translateX(6px) rotate(90deg);
    }

    60% {
        -webkit-transform: translateX(3px) rotate(90deg);
        transform: translateX(3px) rotate(90deg);
    }
}

@-webkit-keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

    60% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }
}

@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }

    60% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }
}


/* START: Home 5 CTA CSS */
.h5-cta-section {
    margin-left: -20px !important;
    margin-right: -20px !important;
    padding: 60px 0;
    background-color: var(--tj-color-theme-primary);
    position: relative;
    overflow: hidden;
}

    .h5-cta-section .thumb {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        inset-inline-start: 0;
    }

        .h5-cta-section .thumb img {
            width: 100%;
            height: 100%;
            opacity: 0.15;
            mix-blend-mode: luminosity;
        }

.h5-cta-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@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) {
    .h5-cta-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.h5-cta-wrapper .sec-title {
    color: var(--tj-color-common-white);
    margin-bottom: 0;
    max-width: 685px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
    .h5-cta-wrapper .sec-title {
        max-width: 480px;
    }
}

@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-cta-wrapper .sec-title {
        max-width: 100%;
        text-align: center;
    }
}

.h5-cta-contact {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 15px;
}

    .h5-cta-contact .tj-primary-btn .btn_inner .btn_icon {
        font-size: 20px;
    }

@media (max-width: 450px) {
    .h5-cta-contact {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}


/* START: Swiper Nav & Dots CSS */
.swiper_navigations {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

    .swiper_navigations .navigation {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 22px;
        line-height: 1;
        color: var(--tj-color-heading-primary);
        border: 1px solid var(--tj-color-border-2);
        background: transparent;
        -webkit-transition: all 0.4s ease-in-out 0s;
        transition: all 0.4s ease-in-out 0s;
        cursor: pointer;
    }

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .swiper_navigations .navigation {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

.swiper_navigations .navigation i {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    line-height: 1;
    color: var(--tj-color-heading-primary);
}

.swiper_navigations .navigation:hover {
    color: var(--tj-color-common-white);
    background-color: var(--tj-color-theme-primary);
    border-color: var(--tj-color-theme-primary);
}

    .swiper_navigations .navigation:hover i {
        color: var(--tj-color-common-white);
    }

.swiper_pagination {
    text-align: center;
    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) {
    .swiper_pagination {
        margin-top: 40px;
    }
}

.swiper_pagination .swiper-pagination-bullet {
    position: relative;
    z-index: 1;
    width: 21px;
    height: 22px;
    background-color: transparent;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    margin: 0 2px !important;
}

    .swiper_pagination .swiper-pagination-bullet::before {
        content: "";
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 21px;
        height: 22px;
        background-color: var(--tj-color-theme-primary);
        aspect-ratio: 1;
        -webkit-clip-path: polygon(93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%, 50% 0%, 93.3% 25%, 93.3% 75%, 88.97% 27.5%, 50% 5%, 11.03% 27.5%, 11.03% 72.5%, 50% 95%, 88.97% 72.5%, 88.97% 27.5%);
        clip-path: polygon(93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%, 50% 0%, 93.3% 25%, 93.3% 75%, 88.97% 27.5%, 50% 5%, 11.03% 27.5%, 11.03% 72.5%, 50% 95%, 88.97% 72.5%, 88.97% 27.5%);
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .swiper_pagination .swiper-pagination-bullet::after {
        content: "";
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: 9px;
        height: 10px;
        background-color: var(--tj-color-theme-primary);
        -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 70%, 0 30%);
        clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 70%, 0 30%);
        position: absolute;
        top: 6px;
    }

    .swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

/* !END: Swiper Nav & Dots CSS */