html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    background: #fff;
    color: #121212;
}

@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }
}


.t-color {
    color: var(--main-color) !important;
}



.container {
    max-width: 100%;
    width: 1300px;
    padding-left: 25px;
    padding-right: 25px;
}



.js-to-top {
    transform: translate(100px, 0);
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--main-color);
    color: var(--main-text-color);
    width: 38px;
    height: 38px;
    padding: 10px;
    border-radius: 3px;
    z-index: 9999;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s linear;
}

.js-to-top.show {
    transform: translate(0, 0);
    transition: transform 0.2s linear;
}

@media( max-width: 767.98px ){
    .js-to-top {
        right: 15px;
    }

}



/* btns */


.t-btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: 0.3px;
    padding: 1em 1.5em;
    border-radius: 4px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.t-btn.sm {
    font-size: 11px;
    font-weight: 600;
    gap: 0.5em;
}

.t-btn.sm  svg {
    width: 1.4em;
    height: 1.4em;
}




.t-btn.theme {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--main-text-color);
}


.t-btn.theme.outline {
    background: transparent;
    color: var(--main-color);
}


.t-btn.dark {
    background: #282D33;
    border-color: #282D33;
    color: #fff;
}


.t-btn.black {
    background: #0D0F14;
    border-color: #0D0F14;
    color: #fff;
}


.t-btn.tu {
    text-transform: uppercase;
}



.py-s {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.py-b {
    padding-bottom: 120px !important;
}

.py-t {
    padding-top: 120px !important;
}


@media (max-width: 991.98px) {
    .py-s {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    .py-b {
        padding-bottom: 72px !important;
    }

    .py-t {
        padding-top: 72px !important;
    }

}




@media (max-width: 767.98px) {
    .py-s {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .py-b {
        padding-bottom: 56px !important;
    }

    .py-t {
        padding-top: 56px !important;
    }

}






@media (min-width: 992px) {
    .t-btn {
        transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .t-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        filter: brightness(1.05);
    }

    .t-btn:active {
        transform: translateY(0);
        box-shadow: none;
    }
}

@media (max-width: 567.98px) {
    .t-btn {
        font-size: 14px;
    }
}

/**** FAQ ***/


.faq-item .faq-answer {
    display: none;
    font-size: 15px;
    padding: 25px;
    font-weight: 500;
    color: #555;
}

.faq-item.active .faq-question {
    color: var(--main-color-3);
}


.faq-item .faq-question {
    background: #fff;
    padding: 15px 25px;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.08);
    color: #000;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}
.faq-item .faq-question svg {
    transform: rotate(0);
    transition: transform 0.2s ease-in-out;
}

.active.faq-item .faq-question svg {
    transform: rotate(180deg);
    transition: transform 0.2s ease-in-out;
}



.faq-answer a {
    color: var(--main-color-3);
}


@media (max-width: 767.98px) {
    .faq-item .faq-answer {
        display: none;
        font-size: 13px;
    }


    .faq-item .faq-question {
        padding: 20px;
        font-weight: 700;
        font-size: 15px;


    }
}

@media (max-width: 567.98px) {
    .faq-item .faq-question {
        font-size: 14px;
        padding: 14px 20px;

    }

    .faq-item .faq-question svg {
        width: 15px;
    }
}


/******* cta-box ******/


.cta-box {
    position: relative;
    border-radius: 12px;
    padding: 45px 35px;
    overflow: hidden;
    color: #fff;
}


.cta-box p {
    color: rgba(255,255,255,0.8);
}

.cta-box img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: bottom right;
}

.cta-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.cta-box .cont {
    position: relative;
    z-index: 10;
}

.cta-box .heading {
    font-weight: 800;
    margin-top: 15px;
    margin-bottom: 35px;
    font-size: 26px;
}

.cta-box .list-box span {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    gap: 15px;
    margin-bottom: 20px;
}

.cta-box .list-box {
    margin-bottom: 40px;
}

.cta-box .list-box span svg {
    color: var(--main-color);
    font-weight: 300;
}

@media (max-width: 567.98px) {
    .cta-box {
        padding: 45px 20px;
    }
}

/*** page banner ***/


/* hero banner */

.page-banner {
    position: relative;
    padding-bottom: 70px;
    padding-top: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-banner a.link {
    color: var(--main-color);
}


.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-banner::after {
    content: '';
    position: absolute;
    display: block;
    inset: 0;
    background: rgba(0,0,0,0.6);
}


.page-banner {
    color: #fff;
}

.page-banner .heading {
    font-size: 70px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.spec-text {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: #93a31a;
    letter-spacing: 1.5px;
}

.page-banner .heading .smaller {
    font-size: 0.6em;
    display: block;
    line-height: 1.5;
    font-weight: 600;
    letter-spacing: -1px;
    color: rgba(255,255,255,1);
}



.page-banner .t-btn {
    font-size: 17px;
}

@media (max-width: 1199.98px) {
    .page-banner .heading {
        font-size: 55px;
    }
}

@media (max-width: 567.98px) {
    .page-banner .heading {
        font-size: 38px;
        line-height: 1;
        letter-spacing: 0;
    }

    .spec-text {
        font-size: 10px;
    }

    .page-banner {
        padding-bottom: 30px;
        padding-top: 170px;
    }

}






/******* heading ********/


.heading-box .heading {
    font-size: 70px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #080B0D;
}


@media (max-width: 1199.98px) {
    .heading-box .heading {
        font-size: 56px;
    }
}


@media (max-width: 767.98px) {
    .heading-box .heading {
        font-size: 40px;
        letter-spacing: -1px;
    }
}








/********** MAIN HEADER ******/


body.not-top .main-header {
    background: #fff;
}










/* top bar */

body.not-top .main-header .top-bar {
    display: none;
}



.main-header .top-bar {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0;
}


.main-header .top-bar .contact-menu {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    align-items: center;
    gap: 15px;
}

.main-header .top-bar .contact-menu li {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.main-header .top-bar .chat-box {
    font-size: 11px !important;
}

.main-header .top-bar .contact-menu li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}


.main-header .top-bar .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: relative;
    animation: scaler 2.5s ease-out infinite;
}

.main-header .top-bar .dot.green {
    background: green;
}

.main-header .top-bar .dot.orange {
    background: orange;
}

.main-header .top-bar .dot.red {
    background: #dc3545;
}


@keyframes scaler {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}



/* main bar */


body.not-top .logo-box img.first,
body:not(.not-top) .logo-box img.second {
    display: none;
}

body.not-top .logo-box img.second,
body:not(.not-top) .logo-box img.first {
    display: block;
}


.main-header .logo-box img {
    width: 160px;
    max-width: 100%;
    height: auto;
}



.main-header .main-bar {
    padding-top: 12px;
    padding-bottom: 12px;
}




.main-header .main-bar .menu-list {
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.main-header .main-bar .menu-list .menu-item a {
    text-decoration: none;
    font-size: 14px;
}

.main-header .main-bar .menu-list .menu-item a:not(.t-btn) {
    color: #fff;
    letter-spacing: 0.7px;
    font-weight: 500;
}

body.not-top .main-header {
    background: #fff;
    box-shadow: 0 0 7px rgba(0,0,0,0.1);
}





.main-header .menu-item .icon-box,
.main-header .menu-item .menu-link .small {
    display: none;
}


@media (min-width: 1200px) and (max-width: 1400px) {
    .main-header .main-bar .menu-list .menu-item a {
        font-size: 14px;
    }

    .main-header .main-bar .menu-list {
        gap: 15px;
    }
}




@media (min-width: 992px) and (max-width: 1199.98px) {
    .main-header .main-bar .menu-list .menu-item a {
        font-size: 13px;
    }

    .main-header .main-bar .menu-list {
        gap: 15px;
    }
}


@media (min-width: 992px) {
    body.not-top .main-header .main-bar .menu-list .menu-item a:not(.t-btn){
        color: #1a1a1a;
    }

    .main-header .main-bar .menu-list .menu-item a:not(.t-btn):hover {
        color: var(--main-color);
    }
}


@media (min-width: 992px) {
    .main-header .main-bar .menu-list .menu-item.active a:not(.t-btn) {
        color: var(--main-color);
    }
}




@media (max-width: 991.98px) {


    .main-header .js-menu-open {
        background: transparent;
        border: none;
        color: #fff;
        padding-left: 0;
        padding-right: 0;
    }



    body.not-top .main-header .js-menu-open {
        color: #1a1a1a;
    }


    .main-header .js-menu {
        display: flex;
        flex-direction: column;
        height: calc(100dvh - 8px);
        max-width: 100%;
        border-radius: 8px;
        width: 320px;
        background: #1a1b1d;
        overflow-y: auto;
        overflow-x: hidden;
        position: fixed;
        z-index: 9999;
        top: 4px;
        right: 4px;
        transform: translate(110%, 0);
        padding-bottom: 70px;
    }




    .main-header .js-menu .menu-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .main-header .mobile-head {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding: 25px 15px;
    }

    .main-header .mobile-head button {
        border: none;
        background: none;
        color: #fff;
    }

    .main-header .mobile-head img {
        width: 100px;
        height: auto;
    }

    .main-header .js-menu .menu-list .menu-item {
        width: 100%;
        display: inline-flex;
        align-items: center;
    }

    body.show-mobile-menu .main-header .js-menu {
        transform: translate(0, 0);
        transition: transform 0.2s ease-in-out;
    }

    body.show-mobile-menu {
        overflow: hidden;
    }


    body.show-mobile-menu .main-header::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 2000;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(0);
        cursor: pointer;
    }


    .main-header .menu-item .icon-box {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: #292b2e;
        border-radius: 50%;
        color: #fff;
    }

    .main-header .menu-item .icon-box svg {
        stroke-width: 1.5px;
        width: 17px;
        height: 17px;
    }


    .main-header .menu-item .menu-link .small {
        display: block;
        font-size: 10px;
        font-weight: 400;
        color: #7c8791;
        letter-spacing: 0;
        width: 100%;
        line-height: 1;
    }

    .main-header .menu-item {
        display: flex;
        gap: 8px;
        padding-left: 14px;
        padding-right: 14px;
        position: relative;
    }

    .main-header .menu-list .menu-item {
        border-top: 1px solid rgba(255,255,255,0.05);
    }


    .main-header .main-bar .menu-list .menu-item a {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        position: relative;
        font-size: 13px;
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 50px;
        letter-spacing: 0.2px;
        font-weight: 500 !important;
    }

    .main-header .main-bar .menu-list .menu-item a::after {
        content: '';
        width: 7px;
        height: 7px;
        border-top: 1.5px solid #BEC2C5;
        border-left: 1.5px solid #BEC2C5;
        display: block;
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translate(0, -50%) rotate(135deg);
    }


    .main-header .menu-item.active::after {
        content: '';
        height: 100%;
        width: 4px;
        background: var(--main-color);
        position: absolute;
        left: 0;
        top: 0;
    }

    .main-header .menu-item.active {
        background-image: linear-gradient(to right, rgba(196, 217, 35, 0.15), transparent);
    }

    .main-header .menu-item.active .icon-box  {
        background: #1A1C1D;
        color: var(--main-color);
    }

    .main-header .main-bar .menu-list .menu-item.active a {
        color: var(--main-color);
    }



    .main-header .main-bar .menu-item.m-sp {
        border-top: none;
        padding-top: 15px;
    }

    .main-header .main-bar .menu-item.m-sp::after {
        all: unset;
    }

    .main-header .main-bar .menu-item.m-sp a {
        background: linear-gradient(135deg, #22D3C5 0%, #28B7D8 50%, #2D8FEA 100%) !important;
        padding-left: 10px;
        padding-right: 10px;
        display: flex;
        font-weight: 600 !important;
        justify-content: flex-start;
        color: #0F172A !important;
    }

    .main-header .main-bar .menu-item.m-sp .icon-box {
        background: rgba(0,0,0,0.15);
        color: #0F172A;
    }

    .main-header .main-bar .menu-item.m-sp .icon-box svg {
        stroke-width: 2px;
    }

    .main-header .main-bar .menu-item.m-sp .small {
        color: #0F172A;
        padding-top: 4px;
    }



    .main-header .main-bar .menu-item.m-sp.active a {
        color: var(--main-text-color) !important;
    }

    .main-header .main-bar .menu-item.m-sp a::after {
        width: 9px;
        height: 9px;
        border-top: 2px solid #0F172A;
        border-left: 2px solid #0F172A;
    }

    .main-header .main-bar .menu-item.m-sp {
        background: none;
        margin-top: 4px;
    }



    .main-header .main-bar .menu-item.m-sp a {
        background: none;
        border: none;
    }


    .main-header .mobile-foot .bf-item {
        display: flex;
        gap: 4px;
        color: #fff;

        align-items: flex-start;

        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 10px;
    }

    .main-header .mobile-foot .bf-item .title {
        font-size: 10px;
        font-weight: 500;
        line-height: 1;
        display: block;
        width: 100%;
    }

    .main-header .mobile-foot .bf-item .icon-box {
        width: 17px;
        height: 17px;
        display: inline-flex;
        align-items: flex-start;
    }

    .main-header .mobile-foot .bf-item .info-box {
        display: inline-flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .main-header .mobile-foot .bf-item .small {
        display: block;
        font-size: 8px;
        color: rgba(255,255,255,0.7);
    }



    .main-header .mobile-foot .bf-item .icon-box svg {
        width: 17px;
        height: 17px;
        stroke-width: 1.5px;
        color: var(--main-color);
    }

    .main-header .mobile-foot .befs {
        display: flex;
        padding-left: 14px;
        padding-top: 25px;
        padding-right: 14px;


    }


    .main-header .mobile-foot .soc-icons {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 25px;
    }

    .main-header .mobile-foot .soc-icons a {
        text-decoration: none;
        display: inline-flex;
        width: 35px;
        height: 35px;
        align-items: center;
        justify-content: center;
        padding: 10px;
        border-radius: 50%;
        color: #fff;
        background: rgba(255,255,255,0.05);


    }

    .main-header .mobile-foot .ct-box {
        display: flex;
        padding-left: 14px;
        padding-right: 14px;
        justify-content: space-between;;
        margin-top: 15px;
    }

    .main-header .mobile-foot .ct-box a {
        display: inline-block;
        font-weight: 500;
        text-decoration: none;
        color: #7c8791;
        font-size: 12px;
    }

}

@media (max-width: 767.98px) {
    .main-header .logo-box img {
        width: 130px;
    }
}


/******** above foot *********/

.above-foot {
    background: var(--main-color);
    padding: 35px 0;
}

.above-foot .heading {
    letter-spacing: -1px;
    font-weight: 700;
}

.above-foot .ct {
    display: flex;
    gap: 20px;
    align-items: center;
}

.above-foot .icon-box svg {
    width: 70px;
    height: 70px;
    stroke-width: 1px;
}

.above-foot .text-box {
    flex: 1;
}


@media (max-width: 767.98px) {
    .above-foot .icon-box svg {
        width: 50px;
        height: 50px;
    }

    .above-foot .ct {
        gap: 7px;
        align-items: flex-start;
    }

    .above-foot .heading {
        font-size: 20px;
    }

}





/********* MAIN FOOTER **********/





.main-footer {
    background: #0A0A0D;
    color: #bcbdbe;
    padding-top: 70px;
    font-size: 14px;
}

.main-footer .footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.main-footer .main-bar ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.main-footer .main-bar .menu-list li {
    margin-bottom: 7px;
}

.main-footer a {
    color: #bcbdbe;
    text-decoration: none;
    font-weight: 500;
}


.main-footer .lg {
    width: 140px;
}

.main-footer .soc-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.main-footer .soc-box a {
    background: #23282B;
    display: inline-flex;
    width: 39px;
    height: 39px;
    padding: 9px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.main-footer .soc-box a:hover {
    background: var(--main-color);
    color: var(--main-text-color);
}


.main-footer .c-list span {
    display: block;
}


.main-footer .main-bar {
    padding-bottom: 30px;
}


.main-footer .copyright,
.main-footer .copyright a {
    font-size: 12px;
}

.main-footer .copyright .cont {
    padding-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.main-footer .copyright ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
    gap: 15px;
}


@media( min-width: 992px ){
    .main-footer ul a:hover {
        color: var(--main-color);
    }
}

@media( max-width: 767.98px ){
    .main-footer .copyright .ct {
        text-align: center;
        margin-bottom: 20px;
    }
    .main-footer .copyright ul {
        justify-content: center;
    }



}


@media( max-width: 567.98px ){
    .main-footer {
        font-size: 14px;
    }

    .main-footer ul a {
        font-weight: 300;
        font-size: 14px;
    }

    .main-footer .footer-heading {
        /*padding-bottom: 14px;*/
        font-size: 20px;
        /*border-bottom: 1px solid rgba(255,255,255,0.1);*/
    }

}















/*********** HOME PAGE *********/





/* hero banner */

@media (min-width: 992px) {
    .hero-banner {
        min-height: 100vh;
    }
}


.hero-banner {
    position: relative;
    overflow: hidden;
    padding-top: 170px;
    padding-bottom: 170px;
    display: flex;
    align-items: center;
}


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

.hero-banner .hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-banner::after {
    content: '';
    position: absolute;
    display: block;
    inset: 0;
    background: rgba(0,0,0,0.6);
}


.hero-banner {
    color: #fff;
}

.hero-banner .heading {
    font-size: 95px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.hero-banner .spec-text {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1.5px;
}

.hero-banner .heading .smaller {
    font-size: 0.4em;
    display: block;
    line-height: 1.5;
    margin-top: 15px;
    font-weight: 600;
    letter-spacing: -1px;
    color: rgba(255,255,255,1);
}



.hero-banner .t-btn {
    font-size: 17px;
}


@media (max-width: 1199.98px) {
    .hero-banner .heading {
        font-size: 65px;
    }
}


@media (max-width: 767.98px) {
    .hero-banner {
        min-height: unset;
        padding-top: 170px;
        padding-bottom: 90px;
    }
}



@media (max-width: 567.98px) {
    .hero-banner .heading {
        font-size: 55px;
    }

    .hero-banner .spec-text {
        font-size: 10px;
    }

    .hero-banner .t-btn {
        font-size: 14px;
    }
}

/************ CONSULTATION PAGE ***************/


.consultation-page .page-banner .form-box {
    padding: 45px 35px;
    background: rgba(20, 20, 20, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.consultation-page .page-banner .form-box .heading {
    font-size: 24px;
    letter-spacing: 0;
}

.consultation-page .page-banner .form-box .text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}


.consultation-page .page-banner .form-box .form-group {
    margin-bottom: 10px;
}

.consultation-page .page-banner .form-box .form-control,
.consultation-page .page-banner .form-box .form-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 12px 15px;

}

.consultation-page .page-banner .form-box .form-select {
    font-size: 13px;
    font-weight: 500;
}

.consultation-page .page-banner .form-box .form-control:focus,
.consultation-page .page-banner .form-box .form-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: #fff;
}

.consultation-page .page-banner .form-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
}



.consultation-page .page-banner .form-box select.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}


.consultation-page .page-banner .review-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.consultation-page .page-banner .review-box .img-box {
    width: 150px;
}


.consultation-page .page-banner .review-box .rank-box .stars svg {
    color: #f0c10e;
    fill: #f0c10e;
    stroke-width: 1px;
    width: 17px;
    height: 17px;
}

.consultation-page .page-banner .review-box .rank-box span {
    font-size: 15px;
    display: block;
    margin-top: 5px;
    font-weight: 300;
}

.consultation-page .page-banner .review-box .rank-box span strong {
    font-weight: 600;
}




.consultation-page .page-banner .befs {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    padding-bottom: 30px;
}

.consultation-page .page-banner .befs .bef-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.consultation-page .page-banner .befs .bef-item svg {
    stroke-width: 1.5px;
    width: 20px;
    height: 20px;
    color: var(--main-color);
}

.consultation-page .page-banner .page-banner p {
    font-size: 17px;
}




.consultation-page .page-banner .form-box .info-tip {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.consultation-page .page-banner .form-box .info-tip svg {
    color: var(--main-color);
    stroke-width: 1.5px;
    width: 17px;
    height: 17px;
}



.consultation-page .testimonials {
    background: #f9f9f9;
}

.consultation-page .testimonials .testimonial-item {
    background: #fff;
}






@media (max-width: 1199.98px) {

}

@media (max-width: 567.98px) {
    .consultation-page .page-banner .page-banner p {
        font-size: 14px;
        margin-top: 25px;
    }

    .consultation-page .page-banner .befs .bef-item {
        font-size: 10px;
    }
    .consultation-page .page-banner .befs {
        gap: 15px;
        padding-bottom: 20px;
    }

    .consultation-page .page-banner .review-box .img-box {
        width: 120px;
    }

    .consultation-page .page-banner .review-box .rank-box span {
        font-size: 13px;
    }



    .consultation-page .page-banner .form-box {
        padding: 45px 20px;
    }

    .consultation-page .page-banner .form-box .heading {
        font-size: 18px;
    }

    .consultation-page .page-banner .form-box .info-tip {
        font-size: 10px;
    }
}




/*** STEPS *****/

.consultation-page .steps {
    background: #12181D;
    color: #fff;
}


.consultation-page .steps .heading {
    color: #fff;
}




.consultation-page .steps .stepper .step {
    display: flex;
    gap: 10px;
    flex: 1;
    align-items: flex-start;
    position: relative;
}


.consultation-page .steps .step .info-box {
    flex: 1;
}

.consultation-page .steps .step .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    color: var(--main-text-color);
    font-size: 22px;
    font-weight: 800;
    border-radius: 50%;
    z-index: 5;
}

.consultation-page .steps .step .title {
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 5px;
}

.consultation-page .steps .step p {
    color: #b9bbbe;
    font-size: 14px;
}


@media (max-width: 767.98px) {
    .consultation-page .steps .step .icon-box {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .consultation-page .steps .step .title {
        font-size: 16px;
    }

    .consultation-page .steps .step p {
        font-size: 13px;
    }

    .consultation-page .steps .stepper .step {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

}


@media (max-width: 567.98px) {

    .consultation-page .steps .step .title {
        font-size: 14px;
    }

    .consultation-page .steps .step p {
        font-size: 13px;
    }

}








/** partners **/

.consultation-page .partners-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.consultation-page .partners-box img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    filter: grayscale(100);
}

.consultation-page .partners-box .partner-item {
    width: calc(100% / 7 - 120px / 7);
}




@media (max-width: 767.98px) {
    .consultation-page .partners-box .partner-item {
        width: calc(100% / 6 - 100px / 6);
    }
}

@media (max-width: 567.98px) {
    .consultation-page .partners-box .partner-item {
        width: calc(100% / 4 - 60px / 4);
    }
}





/********* CONTACT PAGE *******/



.contact-page .contact .c-item ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.contact-page .contact .c-item .value:not(a) {
    display: block;
}

.contact-page .contact .c-item {
    margin-bottom: 30px;
}

.contact-page .contact .c-item .title {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 20px;
}


.contact-page .contact .c-item .value {
    color: #000;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 5px;
}



.contact-page .contact .c-item a.value {
    color: #000;
    text-decoration: none;
    font-weight: 700;

}

.contact-page .contact .c-item .small {
    font-size: 12px;
    display: block;
    margin-top: 20px;
    color: #555;
}

.contact-page .contact .c-item p {
    font-size: 14px;
    color: #777;
}



.contact-page .contact .form-box .heading {
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}



.contact-page .contact .form-box .info-tip {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.contact-page .contact .form-box .info-tip svg {
    color: var(--main-color);
    stroke-width: 1.5px;
    width: 17px;
    height: 17px;
}



.contact-page .contact .form-box .sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom right;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;

}

.contact-page .contact .form-box form {
    position: relative;
    z-index: 2;
}


.contact-page .contact .form-box {
    padding: 45px 35px;
    width: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    background: rgba(20, 20, 20, 0.35);
}

.contact-page .form-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.contact-page .contact .form-box .heading {
    font-size: 30px;
    letter-spacing: 0;
}

.contact-page .contact .form-box .text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}


.contact-page .contact .form-box .form-group {
    margin-bottom: 10px;
}

.contact-page .contact .form-box .form-control,
.contact-page .contact .form-box .form-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    padding: 12px 15px;

}

.contact-page .contact .form-box .text {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.contact-page .contact .form-box .form-select {
    font-size: 13px;
    font-weight: 500;
}

.contact-page .contact .form-box .form-control:focus,
.contact-page .contact .form-box .form-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: none;
    color: #fff;
}

.contact-page .contact .form-box .form-control::placeholder {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
}



.contact-page .contact .form-box select.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}



@media (max-width: 567.98px) {


    .contact-page .contact .form-box {
        padding: 45px 20px;
    }

    .contact-page .contact .form-box .heading {
        font-size: 28px;
    }

    .contact-page .contact .form-box .info-tip {
        font-size: 10px;
        gap: 10px !important;
    }
}



/********* BLOG PAGE *********/



.blog-page .blog-content .article-box {
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.blog-page .blog-content .blog-list .article-box:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}



.blog-content .container {
    position: relative;
}


@media (min-width: 992px) {
    .blog-content .container .cta-box {
        position: sticky;
        top: 150px;
        left: 0;
    }

}



/* article item */

.article-item .img-box {
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;

}

.article-item .img-box img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/11;
    object-fit: cover;
}


.article-item .info-box {
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.article-item .name {
    display: block;
    text-decoration: none;
    color: #1d2021;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.article-item .desc {
    font-size: 13px;
    color: #555;
}

.article-item .meta-box a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}


.article-item .meta-box {
    display: flex;
    gap: 4px;
    font-size: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    align-items: center;
    margin-top: auto;
    padding-bottom: 10px;
    z-index: 5;
}

.article-item .meta-box .date-item,
.article-item .meta-box .read {
    font-size: 13px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-weight: 500;
    border-radius: 4px;
    padding: 3px 8px;
}




/*.article-item {*/
/*    box-shadow: 0 0 25px rgba(0,0,0,0.1);*/
/*    border-radius: 10px;*/
/*    overflow: hidden;*/
/*}*/

@media (min-width: 992px) {
    .article-item .name:hover {
        color: var(--main-color);
    }
}






/********* ARTICLE PAGE *******/

.article-page .page-banner .heading {
    font-size: 50px;
}




.article-page .article-content .feature-box img {
    position: relative;
    border-radius: 12px;
}

.article-box {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.article-box .left {
    width: 720px;
    max-width: 100%;
}

.article-box .right {
    flex: 1;
}



.article-page .left .cont {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: #2a2a2a;
}



.article-page .left .cont strong {
    font-weight: 600;
}




.article-page .left .cont a {
    color: #b2c520;
    font-weight: 500;
}


.article-page .left .meta-box {
    display: flex;
    gap: 10px;
    color: #111;
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: 25px;
}





.article-page .left .cont  h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 35px;
    padding-top: 24px;
    border-top: 4px solid #f1F1F1;
    color: #000;

}

.article-page .left .cont  h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 35px;
    color: #000;
}


.article-page .back-link {
    margin-bottom: 8px;
}

.article-page .back-link svg {
    width: 20px;
}



@media (min-width: 992px) {
    .article-page .cta-box {
        position: sticky;
        top: 150px;
        left: 0;
        margin-left: 45px;
    }

}


@media (max-width: 767.98px) {
    .article-page .page-banner .heading {
        font-size: 30px;
    }

    .article-page .left .cont {
        font-size: 15px;
    }

}





/************ ESHOP PAGE **********/






.ew-page .for-who {
    background: #12181D;

}


.ew-page .for-who .heading {
    color: #fff;
}

.ew-page .for-who .box-who {
    padding: 45px 35px;
    background: rgba(255,255,255,0.045);
    color: #fff;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    position: relative;
}

.ew-page .for-who svg {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.05;
    z-index: 1;
    color: var(--main-color);

}

.ew-page .for-who .title {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 24px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}



.ew-page .for-who .box-who p {
    padding-right: 80px;
    color: rgba(255,255,255,0.75);
}




.ew-page .benefits {
    background: #fbfcfd;
}

.ew-page .benefits .benefit-item {
    padding: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 8px;
    background: #fff;
    height: 100%;
}

.ew-page .benefits .benefit-item .title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.ew-page .benefits .benefit-item .text-box {
    font-size: 15px;
}

.ew-page .benefits .benefit-item svg {
    width: 45px;
    height: 45px;
    stroke-width: 1px;
    margin-bottom: 15px;
}

.ew-page .benefits .benefit-item.sp {
    border-right: 5px solid var(--main-color);
}

.ew-page .benefits .bef-1 .icon-box svg { color: #816399; }
.ew-page .benefits .bef-2 .icon-box svg { color: #8697C4; }
.ew-page .benefits .bef-3 .icon-box svg { color: #EFB11E; }
.ew-page .benefits .bef-4 .icon-box svg { color: #F56565; }
.ew-page .benefits .bef-5 .icon-box svg { color: #41A62E; }
.ew-page .benefits .bef-6 .icon-box svg { color: #569FF8; }
.ew-page .benefits .bef-7 .icon-box svg { color: #E8834A; }
.ew-page .benefits .bef-8 .icon-box svg { color: #2BBFA4; }
.ew-page .benefits .bef-9 .icon-box svg { color: #D95C8E; }
.ew-page .benefits .bef-10 .icon-box svg { color: #5BC4E8; }

.ew-page .ew-call {
}



.ew-page .ew-call .check-list {
    list-style: square;
    color: rgba(0,0,0,0.8);
    padding-left: 18px;
}

.ew-page .ew-call .check-list li::marker {
    color: var(--main-color);
}

.ew-page .ew-call .check-list li {
    margin-bottom: 5px;
    font-size: 14px;
}

.ew-page .highlight-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9f9f9;
    border-left: 4px solid var(--main-color);
    border-radius: 4px;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #121212;
    margin-top: 25px;
}

.ew-page .highlight-box svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5px;
    color: var(--main-color);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .ew-page .for-who .sp.box-who {
        margin-top: 120px;
    }
}


@media (max-width: 991.98px) {
    .ew-page .for-who .box-who p {
        padding-right: 40px;
    }

    .ew-page .benefits .benefit-item .text-box {
        font-size: 14px;
    }



}


@media (max-width: 767.98px) {
    .ew-page .for-who .box-who p {
        padding-right: 0;
    }


}













/*** testimonial item ***/

.testimonial-item {
    border: 1px solid rgba(0,0,0,0.05);
    padding: 25px 25px;
    border-radius: 10px;
    position: relative;
}

.testimonial-item .person-box {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-item .person-box .icon-box img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-item .person-box .info-box {
    flex: 1;
}

.testimonial-item .person-box .info-box .name {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: -0.5px;
    display: block;
    line-height: 1.2;
}


.testimonial-item .text {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    color: #555;
    margin-top: 15px;
}

.testimonial-item svg {
    color: var(--main-color);
    fill: var(--main-color);
    stroke-width: 1px;
    opacity: 0.5;
}


.testimonial-item .person-box .info-box .work {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    display: block;

}




.testimonial-slider-box .testimonial-item {
    height: 100%;
    background: #fff;
}


.testimonial-slider-box .swiper-pagination-bullet-active {
    background: var(--main-color);
}

.testimonialSwiper {
    padding-bottom: 50px;}

.testimonial-slider-box .swiper-pagination {
    transform: translate(0,0);
}




/***** Reference PAGE *****/


.spec-reference-item .img-box {
    overflow: hidden;
    border-radius: 8px;
    display: block;
    border: 1px solid rgba(0,0,0,0.04);
}


.spec-reference-item {
    background: #fff;
    padding: 0;
    border-radius: 6px;
    height: 100%;
}


.spec-reference-item .img-box {
    box-shadow: none;
    display: block;

    border: 1px solid rgba(0,0,0,0.05);
}

.spec-reference-item .img-box img {
    width: 100%;
}


.spec-reference-item .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.spec-reference-item  .title {
    font-size: 25px;
    display: block;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    color: #000;
}

.spec-reference-item .text {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
}

.spec-reference-item  .color-box .title {
    font-weight: 600;
    font-size: 15px;
    color: #000;
}


.spec-reference-item .colors .color {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
}

.spec-reference-item .colors {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 5px;
    margin: 15px 0;
}

.spec-reference-detail {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
}

.spec-reference-detail .colors .color {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #f1f1f1;
}

.spec-reference-detail .colors {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 5px;
    margin: 15px 0;
}


.spec-reference-item  .tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    gap: 5px;
}

.spec-reference-item  .tags .tag {
    background: #f6f6f6;
    font-weight: 600;
    color: #111;
    font-size: 11px;
    padding: 3px 4px;
    border: 1px solid rgba(0,0,0,0.02);
    border-radius: 5px;
    display: inline-flex;
    box-shadow: var(--box-shadow);

}

@media (max-width: 767.98px) {

    .spec-reference-item  .tags .tag {
        font-size: 10px;
    }

    .spec-reference-item .text {
        font-size: 14px;
        line-height: 1.5;
    }

    .spec-reference-item  .color-box .title {
        font-size: 14px;
    }


}


/**** reference page ***/



.reference-page .back-link {
    margin-bottom: 8px;
}


.reference-page .feature-img {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.04);

}


.reference-page  .subheading {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 25px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 8px;
    margin-top: 35px;
    margin-bottom: 20px;

}

.reference-page  .color-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.reference-page  .color-box .color {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.reference-page  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reference-page  .tags .tag {
    white-space: nowrap;
    color: #000;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    background: #f9f9f9;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 4px;
    padding: 0.4em 0.9em;
}

@media (min-width: 992px) {
    .reference-page .cta-box {
        position: sticky;
        top: 130px;
        left: 0;
        width: 100%;
        margin-left: 45px;
    }
}


@media (min-width: 768px) {
    .reference-page .ct {
        background: #fff;
        padding: 35px;
        border-radius: 16px;
        border: 1px solid rgba(0,0,0,0.05);
    }

    .reference-page {
        background: #f8f9fb;
    }

}


@media (max-width: 567.98px) {


    .reference-page  .tags .tag {
        font-size: 10px;
        font-weight: 500;
        padding: 0.4em 0.7em;
    }

    .reference-page  .tags {
        gap: 6px;
    }
}




@media (max-width: 767.98px) {
    .reference-page .page-banner .heading {
        font-size: 30px;
    }

}





















/************** HOME PAGE ***********/




.home-page .for-who {
    background: #12181D;
}

.home-page .for-who .heading {
    color: #fff;
}

.home-page .for-who .box-who {
    padding: 45px 35px;
    background: rgba(255,255,255,0.045);
    color: #fff;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    position: relative;
}

.home-page .for-who svg {
    width: 120px;
    height: 120px;
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.05;
    z-index: 1;
    color: var(--main-color);
}

.home-page .for-who .title {
    font-weight: 800;
    letter-spacing: -1px;
    font-size: 24px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.home-page .for-who .box-who p {
    padding-right: 80px;
    color: rgba(255,255,255,0.75);
}

.home-page .for-who .ca p {
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 20px;

}

@media (min-width: 768px) {
    .home-page .for-who .sp.box-who {
        margin-top: 120px;
    }
}

@media (max-width: 991.98px) {
    .home-page .for-who .box-who p {
        padding-right: 40px;
    }
}

@media (max-width: 767.98px) {
    .home-page .for-who .box-who p {
        padding-right: 0;
    }
}

/** test ***/

.home-page .testimonials {
    background: linear-gradient(to top, #FFFFFF 0%, #f5f5f5 100%);
}



/*** ref ****/


.home-page .references {
    background: linear-gradient(to top, #FFFFFF 0%, #f5f5f5 100%);
}

.home-page .references .spec-reference-item {
    background: none;
}

/** sp paral ***/

.spec-paral {
    background: #12181D;
    color: rgba(255,255,255,0.85);

}

.spec-paral .heading {
    color: #fff;
    font-size: 85px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.spec-paral p {
    font-weight: 300;
    font-size: 17px;
}

@media( max-width: 1199.98px) {
    .spec-paral .heading {
        font-size: 65px;
    }

}


@media( max-width: 767.98px) {
    .spec-paral .heading {
        font-size: 55px;
    }

}


/** about ***/


.home-page .about a:not(.t-btn) {
    color: var(--main-color);
}


@media (min-width: 992px) {
    .home-page .about {
        position: relative;
    }

    .home-page .about img {
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .home-page .about::after {
        content: '';
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.6) 55%, #fff 85%);
    }
}


/******* references *****/

.home-page .spec-reference-item .text {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/** bf **/

.home-page .ew-page .benefits {
    background: linear-gradient(to bottom, #FFFFFF 0%, #f5f5f5 100%);
}



/** articles **/

.home-page .articles {
    background: linear-gradient(to bottom, #FFFFFF 0%, #f5f5f5 100%);
}



.home-page .article-item {
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;

}

.home-page .article-item img {
    border-radius: 0;
}


.home-page .article-item .info-box {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 15px;
}



.home-page  .article-item .desc {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    min-height: calc(1.6em * 3);
    margin-top: auto;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


/*** PAGER pagination **/

.pager {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pager .pagination {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pager .page-item {
    margin: 0;
}

.pager .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;

    background: #fff;
    color: #121212;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition: all .2s ease;
}

.pager .page-link[rel="prev"] {
    font-size: 25px;
    line-height: 1.3;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.pager .page-item.disabled .page-link {
    font-size: 25px;
    line-height: 1.3;
}

.pager .page-link[rel="next"] {
    font-size: 25px;
    line-height: 1.3;
    align-items: center;
    justify-content: center;
    display: inline-flex;
}

.pager .page-link:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--main-text-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.12);
}

.pager .page-item.active .page-link {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--main-text-color);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.pager .page-item.disabled .page-link {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
    background: #f8f8f8;
}

.pager .page-link:focus,
.pager .page-link:active {
    outline: none;
    box-shadow: none;
}

@media (max-width: 767.98px) {

    .pager {
        margin-top: 40px;
    }

    .pager .pagination {
        gap: 6px;
    }

    .pager .page-link {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}


/********** BLANK PAGE ********/




.blank-page .article-content ol[type="a"] > li::marker {
    content: counter(list-item, lower-alpha) ")  ";
}

.blank-page .article-content h3 {
    margin: 0px;
}

.blank-page .article-content h2 {
    margin: 0px;
}

.blank-page .article-content a {
    color: #000;

}

.blank-page .article-content ol {
    margin-top: 10px;
    margin-bottom: 30px;
}

.blank-page .article-content ol ul {
    margin-top: 0px;
}

.blank-page .article-content ol ol {
    margin-top: 0px;
    margin-bottom: 0px;
}

.blank-page .article-content li h3 {
    margin-top: 25px;
    margin-bottom: 5px;
}

.blank-page .article-content table tr td {
    padding-right: 15px;
}

.blank-page .article-content table {
    margin-left: 20px;
}

.blank-page .article-content ol[type="a"] > li::marker {
    content: counter(list-item, lower-alpha) ")  ";
}

.blank-page .article-content h3 {
    margin: 0px;
    margin-bottom: 5px;
}

.blank-page .article-content h2 {
    margin: 0px;
}

.blank-page .article-content ol {
    margin-top: 10px;
    margin-bottom: 30px;
}

.blank-page .article-content ol ul {
    margin-top: 0px;
}

.blank-page .article-content ol ol {
    margin-top: 0px;
    margin-bottom: 0px;
}

.blank-page .article-content li h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.blank-page .article-content table tr td {
    padding-right: 15px;
}

.blank-page .article-content li ul {
    margin-bottom: 15px;
}

.blank-page .article-content table {
    margin-left: 20px;
}

.blank-page .article-content .link {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
}

.blank-page .article-content .link:hover {
    text-decoration: none;
}

.blank-page .article-content h2 {
    font-size: 24px;

    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.7px;
}

.blank-page .article-content h3 {
    font-size: 17px;

    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.blank-page .article-content p {
    line-height: 1.7;
    margin-bottom: 25px;
}

.blank-page .article-content > ol li::marker {
    font-weight: 700;
    font-size: 22px;
}

.blank-page .article-content {
    background: #fff;
    padding: 25px;

}


.blank-page .article-content ol ol li::marker {
    font-weight: 700;
    font-size: 16px;
}

.blank-page .article-content ul li strong {
    color: #79bf34;
}

.blank-page .article-content ul li {
    line-height: 2;
}






/*** new updt 16/6/2026 **/



.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 6px;
    }


.testimonial-item .person-box .info-box .work {
    font-weight: 500;
    color: #555;
}

.t-color {
    color: #b2c520 !important;
}

.spec-text {
    color: #7b8916;
 
}

.page-banner .t-color,
.hero-banner .t-color,
.cta-box .t-color {
    color: var(--main-color) !important;
}

.cta-box .spec-text,
.page-banner .spec-text {
    color: var(--main-color) !important;
}
