body *.grecaptcha-badge{
 display: none !important ;
}
.breadcrumb-pages .hero-section {
    position: relative;
    overflow: hidden;
    padding: 185px 0 70px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom
}

.breadcrumb-pages .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,rgba(0,0,0,0.6),rgba(0,0,0,0.3));
    z-index: 1
}

label.error {
    color: red
}

.breadcrumb-pages .hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    width: 100%;
    text-align: center
}

.breadcrumb-pages .hero-title {
    font-size: 30px;
    letter-spacing: .5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1.2s ease-out .3s forwards;
    color: #fff
}

.breadcrumb-pages .breadcrumb {
    display: flex;
    align-items: center;
    font-size: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out .6s forwards;
    justify-content: center
}

.breadcrumb-pages .breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all .3s ease;
    position: relative
}

.breadcrumb-pages .breadcrumb a:hover {
    color: #fff;
    transform: translateY(-2px)
}

.breadcrumb-pages .breadcrumb a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg,#ff9500,#ff2100);
    transition: width .3s ease
}

.breadcrumb-pages .breadcrumb a:hover::after {
    width: 100%
}

.breadcrumb-pages .breadcrumb-separator {
    margin: 0 1rem;
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    transition: transform .3s ease
}

.breadcrumb-pages .breadcrumb:hover .breadcrumb-separator {
    transform: translateX(5px)
}

.breadcrumb-pages .breadcrumb span {
    color: #fff;
    font-weight: 500
}

.breadcrumb-pages .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: float 6s infinite linear
}

.breadcrumb-pages .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0
}

.breadcrumb-pages .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s
}

.breadcrumb-pages .particle:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 4s
}

.breadcrumb-pages .particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 1s
}

.breadcrumb-pages .particle:nth-child(5) {
    top: 30%;
    left: 90%;
    animation-delay: 3s
}

.breadcrumb-pages .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'><path d='M0,50 Q300,10 600,50 T1200,50 L1200,100 L0,100 Z' fill='rgba(255,255,255,0.1)'/></svg>");
    background-size: 1200px 100px;
    animation: waveMove 10s ease-in-out infinite
}

.breadcrumb-pages .scroll-indicator {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeIn 2s ease-out 1.5s forwards
}

.breadcrumb-pages .scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
    margin-left: 6px
}

.breadcrumb-pages .scroll-mouse::before {
    content: '';
    width: 3px;
    height: 10px;
    background: rgba(255,255,255,0.8);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite
}

.breadcrumb-pages .scroll-text {
    font-size: .9rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
    letter-spacing: 1px
}

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

@keyframes fadeIn {
    to {
        opacity: 1
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0
    }

    50% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 1
    }
}

@keyframes waveMove {
    0%,100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-100px)
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0)
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px)
    }
}

.hedding-faq-member {
    text-align: center;
    width: 52%;
    margin: 0 auto
}

.faq-tag {
    color: #ff2100;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative
}

.faq-tag:before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 2px;
    background-color: #ff2100;
    border-radius: 2px;
    top: -8px
}

.main-title {
    font-size: 37px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 25px
}

@media (max-width: 768px) {
    .breadcrumb-pages .hero-title {
        font-size:3.5rem;
        letter-spacing: .2rem
    }

    .breadcrumb-pages .hero-content {
        padding: 0 1rem
    }

    .breadcrumb-pages .breadcrumb {
        font-size: 17px
    }
}

@media (max-width: 480px) {
    .breadcrumb-pages .hero-title {
        font-size:2.5rem;
        letter-spacing: .1rem
    }
}

.breadcrumb-pages .hero-section:hover .particle {
    animation-duration: 4s
}

.breadcrumb-pages .hero-section:hover .wave {
    animation-duration: 8s
}

.breadcrumb-pages .hero-title {
    text-shadow: 0 0 20px rgba(255,255,255,0.3)
}

.breadcrumb-pages .breadcrumb {
    text-shadow: 0 0 10px rgba(255,255,255,0.2)
}

.breadcrumb-pages section.header-desktop .search-popup {
    position: unset
}

section.list-servicer {
    padding: 4rem 0;
    --background-overlay: ;
    background-position: top left;
    background-repeat: no-repeat
}

.service-block-style7 {
    padding: 0 10px;
    margin: 0 0 20px
}

.service-block-style7 {
}

.service-block-style7 .inner-box {
    position: relative;
    overflow: hidden;
    transition: all 300ms ease;
    height: 100%
}

.service-block-style7 .inner-box .image-box {
    position: relative;
    height: 100%
}

.service-block-style7 .inner-box .image-box .service-featured-img {
    position: relative;
    margin-bottom: 0;
    background-color: #0f0f0f;
    height: 100%
}

.service-block-style7 .inner-box .image-box .service-featured-img:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(-45deg,transparent,#0f0f0f);
    opacity: .9;
    content: "";
    z-index: 1;
    transition: all 200ms ease
}

.service-block-style7 .inner-box .image-box .service-featured-img img {
    width: 100%;
    min-height: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease;
    transform: scale(1);
    display: block
}

.service-block-style7 .inner-box .title-box {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    padding: 25px 30px
}

.service-block-style7 .inner-box .title-box .service-title a {
    color: #fff;
    margin-bottom: 18px;
    transition: all 300ms ease;
    font-size: 23px
}

.contact-pages .section-header h2 {
    font-size: 25px;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: #000
}

.service-block-style7 .inner-box .content-box {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: #0e0f11;
    padding: 20px 30px;
    z-index: 2;
    transition: all 200ms ease;
    padding-left: 100px
}

.service-block-style7 .inner-box .content-box .service-icon i {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff2100;
    z-index: 2;
    transition: all 300ms ease;
    width: 70px;
    font-size: 42px
}

.service-block-style7 .inner-box .content-box .service-details {
    color: #fff
}

.service-block-style7 .inner-box .content-box .service-details a {
    color: #fff
}

.list-servicer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr
}

.service-block-style7 .inner-box:hover img {
    transform: scale(1.5);
    transition: .5s ease
}

.service-block-style7 .inner-box .image-box .service-featured-img:hover img {
    transform: scale(1.2);
    transition: .5s ease
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 {
    position: relative;
    padding: 14px;
    border: 1px solid #d4d0e4;
    padding-bottom: 0;
    box-shadow: 0 10px 60px #00000008;
    transition: all 300ms ease
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header {
    position: relative
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header .thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 0
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header .thumb .post-thumb:first-child {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px)
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header .thumb .post-thumb {
    position: relative;
    width: 100%;
    display: block;
    transition: all 500ms ease
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header .post-thumb-inner {
    position: relative
}

.list-blog-content .tm-sc-blog article .post-thumb .post-thumb-inner .thumb {
    display: flex;
    overflow: hidden;
    position: relative;
    margin-bottom: 0
}

.list-blog-content .tm-sc-blog article .post-thumb .post-thumb-inner .thumb img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all .4s ease-in-out
}

.list-blog-content .isotope-layout .isotope-item .thumb img {
    width: 100%
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header .thumb .post-thumb {
    position: relative;
    width: 100%;
    display: block;
    transition: all 500ms ease
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header .post-thumb-inner {
    position: relative
}

.list-blog-content .tm-sc-blog article .post-thumb .post-thumb-inner .thumb {
    display: flex;
    overflow: hidden;
    position: relative
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header .thumb {
    position: relative;
    overflow: hidden;
    margin-bottom: 0
}

.list-blog-content .tm-sc-blog article .post-thumb .post-thumb-inner .thumb img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all .4s ease-in-out
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header .post-single-meta {
    position: absolute;
    left: 20px;
    bottom: 0;
    background: linear-gradient(to right, rgb(254 40 3) 0%, rgb(252 79 17) 100%);
    color: #fff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    padding: 10px;
    text-align: center;
    line-height: 1;
    text-align: center
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-header .post-single-meta span {
    font-size: 13px;
    font-weight: 600;
    font-family: "Noto Sans",sans-serif;
    text-align: center;
    color: #FFF
}

.list-blog-content .post-thumb .post-thumb-inner .thumb img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    transition: all .4s ease-in-out;
    display: block;
    width: 100%
}

.list-blog-content .isotope-item .thumb img {
    width: 100%
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-content {
    position: relative;
    padding: 20px 0;
    transition: all 300ms ease
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-meta {
    position: relative;
    margin-bottom: 5px;
    text-transform: capitalize;
    display: flex;
    gap: 0 10px
}

.list-blog-content .entry-meta {
    font-size: 14px;
    color: #a1a1a1
}

.list-blog-content main-content-area article .entry-meta li:first-child {
    padding-left: 0
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-meta li {
    position: relative;
    font-size: 15px
}

.list-blog-content .main-content-area article .entry-meta li {
    padding-right: 5px;
    margin-bottom: 0
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-meta li i {
    margin-right: 5px;
    color: #ff2100;
    font-size: 14px
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-meta li a {
    margin-right: 5px;
    color: #a1a1a1;
    font-size: 14px
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-title {
    margin-top: 0;
    margin-bottom: 15px
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .entry-title a {
    font-size: 20px;
    color: #000
}

.list-blog-content .tm-sc-blog .blog-item-current-style1 .line-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis
}

.list-blog-content .tm-sc-blog .blog-item-current-style1:hover .entry-header .thumb {
    position: relative;
    overflow: hidden
}

.list-blog-content .tm-sc-blog .blog-item-current-style1:hover .entry-header .thumb .post-thumb:first-child {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0)
}

.item-blog-bycategory.tm-sc-blog {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 15px
}

section.list-blog {
    padding: 4rem 0
}

.box-detail-servicer {
    padding: 40px 0
}

.box-detail-servicer .card {
    box-shadow: 0 10px 30px 0 rgba(4,27,82,.14);
    padding: 20px
}

.box-detail-servicer .card .block-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px
}

.box-detail-servicer ul.service-accordion .service-item .service-head {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.box-detail-servicer ul.service-accordion li.service-item .panel {
    display: none
}

.box-detail-servicer li.service-item {
    color: #73787d;
    background-color: #f7f7f7;
    padding: 10px 10px 10px 20px;
    margin-bottom: 10px;
    transition: .5s ease
}

.box-detail-servicer li.service-item.active {
    color: #0f0f0f;
    background-color: #ff2100;
    box-shadow: 0 0 8px 0 rgba(4,27,82,.28)
}

.box-detail-servicer li.service-item:hover {
    color: #0f0f0f;
    background-color: #ff2100
}

.box-detail-servicer .note {
    padding: 10px 15px 10px 30px;
    margin: 0 0 25px;
    background-color: #fff;
    border-radius: 2px 2px 2px 2px;
    box-shadow: 0 10px 30px 0 #00000017;
    border-style: solid;
    border-width: 0 0 0 5px;
    border-color: #ff2100
}

.box-detail-servicer .ctnr.box-detail-main-servicer main h2 {
    margin: 20px 0
}

.box-detail-servicer .ctnr.box-detail-main-servicer main .lead {
    margin-bottom: 20px;
    color: #5e5555
}

.box-detail-servicer .media-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 25px
}

.box-detail-servicer .media-benefits .video {
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.box-detail-servicer a.play {
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8;
    opacity: 1;
    color: #fff;
    font-size: 16px;
    transition: all .3s ease 0
}

.box-detail-servicer .animated-css-play-button {
    z-index: 9;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 8;
    opacity: 1;
    color: #fff;
    font-size: 16px;
    transition: all .3s ease 0
}

.box-detail-servicer .bg-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #0f0f0f;
    background-color: rgba(255,170,23,.7);
    z-index: -1;
    border-radius: 100%;
    transition: all .3s ease 0
}

.box-detail-servicer span.play-icon {
    transform: translate(-50%,-50%);
    position: absolute;
    top: 52%;
    left: 54%;
    width: 80px;
    height: 80px;
    animation: videoplayanimation 3s infinite;
    transition: all .3s ease 0
}

@keyframes videoplayanimation {
    60% {
        box-shadow: 0 0 0 60px #fff0
    }

    100% {
        box-shadow: 0 0 0 0 #fff0
    }
}

.box-detail-servicer .play-icon:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 #000;
    animation: videoplayanimation 3s infinite;
    transition: all .3s ease 0
}

.box-detail-servicer .animated-css-play-button i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    font-size: 30px;
    color: #fff
}

.box-detail-servicer .play-icon:after {
    animation-delay: .6s;
    content: "";
    position: absolute
}

.box-detail-servicer .play-icon:before,.box-detail-servicer .play-icon:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    box-shadow: 0 0 0 0 #ffffff59;
    animation: videoplayanimation 3s infinite;
    transition: all .3s ease 0
}

.box-detail-servicer .benefits h3.card-title {
    font-size: 28px;
    margin-bottom: 10px
}

.box-detail-servicer .benefits .muted {
    color: #676666;
    margin-bottom: 20px
}

.box-detail-servicer .benefit {
    display: flex;
    gap: 0 10px;
    margin-bottom: 15px
}

.box-detail-servicer .benefit .ico {
    height: 75px;
    width: 7px;
    line-height: 75px;
    display: flex;
    justify-content: center;
    background-color: #ff2100
}

.box-detail-servicer .benefit h4 {
    font-size: 19px;
    margin-bottom: 6px
}

.box-detail-servicer .benefit p {
    color: #7e7d7d;
    line-height: 1.4
}

.box-detail-servicer .cta {
    background-image: url(https://dev242.kodesolution.com/techon/v2/wp-content/uploads/sites/2/2024/02/project-bg2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    padding: 110px 30px 90px;
    border-style: solid;
    border-width: 1px;
    border-color: #ededed
}

.box-detail-servicer .cta:before {
    background-color: #000;
    --background-overlay:
}

.box-detail-servicer .cta {
    color: #fff;
    font-size: 24px
}

.box-detail-servicer .cta:before {
    content: "";
    position: absolute;
    width: 95%;
    height: 95%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 1px solid #fff;
    background: #000000bd
}

.box-detail-servicer .icon-wrap {
    position: relative;
    background-color: #ff2100;
    height: 75px;
    width: 75px;
    line-height: 75px;
    display: flex;
    justify-content: center;
    margin: 0 auto
}

.box-detail-servicer .cta h3 {
    position: relative;
    font-size: 29px;
    margin-top: 20px;
    margin-bottom: 20px
}

.box-detail-servicer .cta p {
    position: relative;
    font-weight: 600;
    font-size: 32px
}

.box-detail-servicer button.btn.btn-accent {
    font-size: 14px;
    position: relative;
    z-index: 9;
    background-color: #ff2100;
    color: #fff;
    padding: 10px 30px
}

.box-detail-servicer .ctnr.box-detail-main-servicer aside {
    display: flex;
    flex-direction: column;
    gap: 20px 0
}

.box-detail-servicer .card.pad {
    background-color: #f6f6f6;
    border: 1px solid #e0e0e0;
    box-shadow: unset;
    padding: 20px 25px 25px;
    border-radius: 0 0 0 0
}

.box-detail-servicer .ctnr.box-detail-main-servicer aside h3.card-title {
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase
}

.box-detail-servicer form.quick-form input {
    background-color: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #e0e0e0;
    padding: 14px 20px;
    width: 100%;
    margin-bottom: 10px
}

.box-detail-servicer form.quick-form select {
    background-color: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #e0e0e0;
    padding: 14px 20px;
    width: 100%;
    margin-bottom: 10px
}

li.service-item a span {
    color: #000
}

.box-detail-servicer form.quick-form .textarea {
    background-color: #fff;
    border-style: solid;
    border-width: 1px;
    border-color: #e0e0e0;
    width: 100%;
    height: 125px;
    padding: 12px 15px;
    font-family: unset
}

.box-detail-servicer .card.pad button.btn.btn-accent.btn-block {
    width: 100%;
    font-weight: 600
}

.faq-details-servicer .faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all .3s ease
}

.faq-details-servicer .faq-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15)
}

.faq-details-servicer .faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    transition: all .3s ease
}

.faq-details-servicer .faq-question:hover {
    background-color: #f8f9fa
}

.faq-details-servicer .faq-question.active {
    color: #ff2100
}

.faq-details-servicer .faq-question.active:hover {
    background-color: #fff
}

.faq-details-servicer .chevron {
    width: 12px;
    height: 12px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform .3s ease,border-color .3s ease;
    flex-shrink: 0;
    margin-left: 16px
}

.faq-details-servicer .faq-question.active .chevron {
    transform: rotate(-135deg);
    border-color: #ff2100
}

.faq-details-servicer .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease,padding .3s ease;
    background-color: #fff
}

.faq-details-servicer .faq-answer.active {
    max-height: 500px;
    padding: 0 24px 24px
}

.faq-details-servicer .faq-answer p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0
}

.faq-details-servicer .highlight {
    color: #ff2100
}

section.box-main-post-details {
    padding: 4rem 0
}

section.box-main-post-details .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px
}

section.box-main-post-details .main-content {
    background: #fff;
    border-radius: 10px;
    overflow: hidden
}

section.box-main-post-details .hero-person {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%,#f4a261,#e76f51);
    border-radius: 50%;
    position: relative;
    border: 4px solid rgba(255,255,255,0.3)
}

section.box-main-post-details .hero-person::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 40%;
    background: rgba(255,255,255,0.9);
    border-radius: 50px 50px 20px 20px
}

section.box-main-post-details .hero-person::after {
    content: 'ðŸ’»';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    background: rgba(0,0,0,0.8);
    padding: 5px 10px;
    border-radius: 10px
}

section.box-main-post-details .content {
    padding: 20px 0
}

section.box-main-post-details .content h1 {
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700
}

section.box-main-post-details .content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
    font-size: 16px
}

section.box-main-post-details .content-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px
}

.box-detail-servicer ul li {
    list-style: disc!important;
    margin-left: 20px;
    margin-bottom: 10px
}

section.box-main-post-details ul li {
    list-style: disc!important;
    margin-left: 20px;
    margin-bottom: 5px
}

.box-detail-servicer h1 {
    font-size: 22px;
    margin-bottom: 10px
}

.box-detail-servicer p {
    margin-bottom: 10px
}

section.box-main-post-details .sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px
}

blockquote {
    border-left: 4px solid #ff2100;
    margin: 20px 0;
    padding: 10px 20px;
    background: #f8f9fa;
    font-style: italic;
    position: relative
}

section.box-main-post-details .search-box {
    background: #fff;
    padding: 0;
    border-radius: 5px;
    border: 1px solid #e5e1e1;
    overflow: hidden
}

section.box-main-post-details .search-box input {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    font-size: 14px;
    outline: none
}

section.box-main-post-details .search-box input:focus {
    border-color: #ff2100
}

section.box-main-post-details .search-btn {
    background: #ff2100 ;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    margin-left: -1px
}

section.box-main-post-details .widget {
    padding: 20px;
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8
}

section.box-main-post-details .widget h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 3px solid #eee
}

section.box-main-post-details .widget h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff2100
}

section.box-main-post-details .news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee
}

section.box-main-post-details .news-item:last-child {
    border-bottom: none;
    margin-bottom: 0
}

section.box-main-post-details .news-thumb {
    width: 60px;
    height: 60px;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    overflow: hidden
}

section.box-main-post-details .news-content h4 {
    color: #2c3e50;
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4
}

section.box-main-post-details .news-date {
    color: #999;
    font-size: 12px
}

section.box-main-post-details .categories ul,section.box-main-post-details .tags-list {
    list-style: none
}

section.box-main-post-details .categories li {
    margin-bottom: 8px;
    padding-left: 10px;
    position: relative
}

section.box-main-post-details .categories li::before {
    position: absolute;
    left: 0
}

section.box-main-post-details .categories a {
    color: #666;
    text-decoration: none;
    font-size: 14px
}

.error {
    color: red!important;
    font-size: 12px!important
}

section.box-main-post-details .categories a:hover {
    color:#ff2100
}

section.box-main-post-details .tag {
    display: inline-block;
    background: #fff;
    color: #666;
    padding: 5px 10px;
    margin: 5px 5px 5px 0;
    border-radius: 15px;
    font-size: 12px;
    text-decoration: none
}

section.box-main-post-details .tag:hover {
    background: #ff2100;
    color: #fff
}

section.banggia .pricing-card ul li {
    position: relative;
    margin-bottom: 8px;
    text-align: left;
    padding-left: 35px
}

section.banggia .pricing-card ul li:before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background: #ff2100;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700
}

section.banggia .cta-button {
    margin-top: 20px
}

section.box-main-post-details .description {
    padding: 10px 20px;
    background: #eee;
    margin-bottom: 20px
}

@media (max-width: 768px) {
    section.box-main-post-details .container {
        grid-template-columns:1fr;
        gap: 20px;
        padding: 10px
    }

    section.box-main-post-details .content-images {
        grid-template-columns: 1fr
    }

    section.box-main-post-details .content {
        padding: 20px 0
    }

    .item-blog-bycategory.tm-sc-blog {
        grid-template-columns: 1fr
    }
}

section.box-main-post-details .widget .news-item:last-child {
    padding-bottom: 0
}

.box-post-detail-dates-member .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px
}

.box-post-detail-dates-member .posted-in {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px
}

.box-post-detail-dates-member .tag {
    background: #ff2100!important;
    color: #FFF!important;
    padding: 7px 12px!important;
    border-radius: 4px!important;
    font-size: 12px;
    font-weight: 500
}

.box-post-detail-dates-member .tags-section {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px
}

.box-post-detail-dates-member .tag-outline {
    background: transparent;
    color: #ff2100;
    border: 1px solid #ff2100;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none
}

.box-post-detail-dates-member .comments-header {
    margin-bottom: 6px
}

.box-post-detail-dates-member .comments-header h2 {
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600
}

.box-post-detail-dates-member .comment {
    display: flex;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px
}

.box-post-detail-dates-member .comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg,#3498db,#2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0
}

.box-post-detail-dates-member .comment-content {
    flex: 1
}

.box-post-detail-dates-member .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px
}

.box-post-detail-dates-member .comment-author {
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px
}

.box-post-detail-dates-member .comment-date {
    color: #999;
    font-size: 14px
}

.box-post-detail-dates-member .reply-btn {
    background: #ff2100;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500
}

.box-post-detail-dates-member .comment-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px
}

.box-post-detail-dates-member .comment-footer {
    color: #999;
    font-size: 14px
}

.box-post-detail-dates-member .comment-footer a {
    color: #3498db;
    text-decoration: none
}

.box-post-detail-dates-member .leave-comment {
    margin-top: 15px
}

.box-post-detail-dates-member .leave-comment h3 {
    color: #2c3e50;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600
}

.box-post-detail-dates-member .form-notice {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5
}

.box-post-detail-dates-member .required {
    color: #e74c3c
}

.box-post-detail-dates-member .form-group {
    margin-bottom: 20px
}

.box-post-detail-dates-member .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.box-post-detail-dates-member input[type="text"],.box-post-detail-dates-member input[type="email"],.box-post-detail-dates-member textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    background: #f8f9fa;
    outline: none;
    transition: border-color .3s
}

.box-post-detail-dates-member input[type="text"]:focus,.box-post-detail-dates-member input[type="email"]:focus,.box-post-detail-dates-member textarea:focus {
    border-color: #ff2100;
    background: #fff
}

.box-post-detail-dates-member textarea {
    min-height: 120px;
    resize: vertical
}

.box-post-detail-dates-member .checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 20px 0
}

.box-post-detail-dates-member .checkbox-group input[type="checkbox"] {
    width: auto
}

.box-post-detail-dates-member .checkbox-group label {
    color: #666;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 0
}

.box-post-detail-dates-member .submit-btn {
    background: #ff2100;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: background-color .3s
}


@media (max-width: 768px) {
    .box-post-detail-dates-member .container {
        padding:20px
    }

    .box-post-detail-dates-member .post-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start
    }

    .box-post-detail-dates-member .form-row {
        grid-template-columns: 1fr
    }

    .box-post-detail-dates-member .comment {
        padding: 20px
    }
}

@media (max-width: 768px) {
    .faq-details-servicer .container {
        padding:16px
    }

    .faq-details-servicer .faq-question {
        padding: 16px 20px;
        font-size: 16px
    }

    .faq-details-servicer .faq-answer.active {
        padding: 0 20px 20px
    }
}

@media (max-width: 990px) {
    .about-section-s1 .box-about-section {
        flex-direction:column
    }

    .about-section-s1 .left-section {
        padding: 20px 0;
    }

    .about-section-s1 .left-section:before {
        display: none;
    }

    .ctnr-fluid {
        padding: 0 20px
    }

    .main-title {
        font-size: 29px
    }

    .item-slider-Recently {
        margin-right: 31px
    }

    .increasing .box-increasing-container {
        flex-direction: column
    }
}

.contact-pages .content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px
}

.contact-pages .form-section {
    padding: 60px 50px
}

.contact-pages .contact-section {
    padding: 60px 50px
}

.contact-pages .section-header {
    margin-bottom: 40px
}

.contact-pages .section-label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
    position: relative
}

.contact-pages .section-label::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff2100;
    border-radius: 2px
}

.contact-pages .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2
}

.contact-pages .form-group {
    margin-bottom: 24px
}

.contact-pages .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px
}

.contact-pages input,.contact-pages textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e7eb82;
    border-radius: 8px;
    font-size: 16px;
    color: #374151;
    background: #F8F7FA;
    transition: all .3s ease
}

.contact-pages input:focus,.contact-pages textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1)
}

.contact-pages input::placeholder,.contact-pages textarea::placeholder {
    color: #9ca3af
}

.contact-pages textarea {
    min-height: 120px;
    resize: vertical
}

.contact-pages .submit-btn {
    background: #ff2100;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 20px
}

.contact-pages .submit-btn:hover {
    background: #ff2100;
    transform: translateY(-1px);
}

.contact-pages .contact-info {
    margin-bottom: 40px
}

.contact-pages .contact-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px
}

.contact-pages .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px
}

.contact-pages .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0
}

.contact-pages .contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

.contact-pages .contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px
}

.contact-pages .contact-details p {
    color: #6b7280;
    line-height: 1.5
}

.list-servicer-content .service-icon {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff2100;
    z-index: 2;
    transition: all 300ms ease;
    width: 70px;
    font-size: 42px
}

.box-detail-servicer li.service-item.active a span {
    color: #fff
}

.list-servicer-content .service-icon img {
    padding: 0 10px
}

@media(max-width: 990px) {
    .box-detail-servicer .ctnr.box-detail-main-servicer {
        display:block
    }

    .box-detail-servicer .media-benefits {
        grid-template-columns: 1fr;
        gap: 20px 0
    }
}

@media (max-width: 768px) {
    .contact-pages .content {
        grid-template-columns:1fr
    }

    .contact-pages .form-section,.contact-pages .contact-section {
        padding: 40px 30px
    }

    .contact-pages .form-row {
        grid-template-columns: 1fr
    }

    .contact-pages .section-title {
        font-size: 28px
    }
}

section.banggia {
    padding: 4rem 0;
    background-color: #0f0f0f;
    position: relative
}

section.banggia .pricing-container {
    max-width: 1200px;
    margin: 0 auto
}

section.banggia .pricing-header {
    text-align: center;
    margin-bottom: 30px;
    color: #fff
}

section.banggia .pricing-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    text-transform: uppercase
}

section.banggia .pricing-header p {
    font-size: 17px;
    opacity: .9;
    max-width: 600px;
    margin: 0 auto
}

section.banggia .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 30px;
    align-items: stretch
}

section.banggia .pricing-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all .4s cubic-bezier(0.175,0.885,0.32,1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 600px
}

section.banggia .pricing-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3)
}

section.banggia .pricing-card.popular {
    background: #ff2100;
    color: #fff
}

section.banggia .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fc5815;
    color: #fff;
    padding: 8px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(238,90,36,0.4);
    width: 57%
}

section.banggia .plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50
}

section.banggia .pricing-card.popular .plan-name {
    color: #fff
}

section.banggia .pricing-grid-card .pricing-card:hover {
    transform: translateY(-5px)
}

section.banggia .plan-price {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #667eea;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px
}

section.banggia .pricing-card.popular .plan-price {
    color: #fff
}

section.banggia .price-currency {
    font-size: 1.5rem;
    vertical-align: top
}

section.banggia .price-period {
    font-size: 17px;
    color: #7f8c8d;
    font-weight: 400
}

section.banggia .pricing-card.popular .price-period {
    color: rgba(255,255,255,0.8)
}

section.banggia .plan-description {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5
}

section.banggia .pricing-card.popular .plan-description {
    color: rgba(255,255,255,0.9)
}

section.banggia .features-list {
    list-style: none;
    margin-bottom: 40px;
    text-align: left
}

section.banggia .features-list li {
    padding: 5px 0 2px;
    position: relative;
    padding-left: 30px;
    color: #2c3e50;
    font-size: 15px
}

section.banggia .pricing-card.popular .features-list li {
    color: #fff
}

section.banggia .features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.2rem
}

section.banggia .pricing-card.popular .features-list li::before {
    color: #fff
}

section.banggia .cta-button {
    background: #ff2100;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(102,126,234,0.4)
}

section.banggia .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.6)
}

section.banggia .pricing-card.popular .cta-button {
    background: #fff;
    color: #667eea
}

section.banggia .pricing-card.popular .cta-button:hover {
    background: #f8f9ff;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3)
}

@media (max-width: 768px) {
    section.banggia .pricing-header h1 {
        font-size:2.5rem
    }

    section.banggia .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    section.banggia .pricing-card.popular {
        transform: none
    }
}

section.banggia .pricing-grid-card {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    justify-content: center
}

section.banggia:before {
    background-color: #000 #0;
    background-image: url(https://dev242.kodesolution.com/techon/v2/wp-content/uploads/sites/2/2024/04/pattern-shape-1.png);
    --background-overlay: ;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: .2
}

section.banggia section.banggia .ctnr {
    position: relative;
    z-index: 9
}

section.box-main-post-details .news-thumb a img {
    width: 100%;
    height: 100%;
    display: block
}

section.box-main-post-details .news-thumb a {
    display: block;
    width: 100%;
    height: 100%
}

section.box-main-post-details .search-btn svg {
    width: 20px
}

.clm.box-slider-right-services .box-detail-servicer {
    padding-top: 0;
    margin-left: 25px
}

.service-block-style7 .inner-box a {
    display: block;
    height: 100%
}

section.banggia .pricing-card:hover {
    background: #ff2100
}

section.banggia .pricing-card:hover .plan-description {
    color: #FFF
}

section.banggia .pricing-card:hover .plan-name {
    color: #FFF
}

section.banggia .pricing-card:hover .plan-price {
    color: #FFF
}

section.banggia .pricing-card:hover .price-period {
    color: #FFF
}

section.banggia .pricing-card:hover .price-period {
    color: #FFF
}

section.banggia .pricing-card:hover p {
    color: #FFF
}

section.banggia .pricing-card:hover .btn-form-popup {
    color: #ff2100;
    background: #fff
}

section.banggia .pricing-card:hover ul li {
    color: #fff
}

ul.pagination {
    display: flex;
    justify-content: center;
    gap: 0 10px;
    margin-top: 20px
}

ul.pagination li {
    width: 30px;
    height: 30px;
    display: flex;
    background: #cdcdcd;
    align-items: center;
    justify-content: center;
    border-radius: 5px
}

li.page-item.active {
    background: #ff2100;
    color: #fff
}

ul.pagination li a {
    color: #000
}

.item7 {
    align-items: center;
    background: #f3f5f7;
    border: 1px solid transparent;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    padding: 10px;
    text-align: center;
    transition: .3s
}

.img5 {
    margin: 0 auto;
    border-radius: 50%;
    justify-content: center;
    align-items: center
}

.img5 img {
    width: 90px;
    margin: 20px 0;
    height: auto
}

.info-pro p {
    font-size: 14px;
    color: #333;
    text-align: center
}

.ss5 {
    padding: 30px 0 0
}

.item-themes {
    display: block;
    border-radius: 12px;
    position: relative;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.3019607843);
    margin-bottom: 20px
}

.item-themes .img {
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: center;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
    position: relative;
    height: 430px
}

.item-themes .img img {
    transition: transform 1s ease;
    width: 100%;
    height: auto;
    max-width: 100%;
    will-change: transform
}

.item-themes .title-more {
    padding: 12px 12px 20px;
    gap: 8px;
    display: grid!important
}

.item-themes .title-more .title-theme {
    font-size: 18px;
    font-weight: 600;
    line-height: 21.78px;
    text-align: center;
    margin-bottom: 0;
    color: #061020
}

.item-themes .title-more .price-theme {
    font-size: 18px;
    font-weight: 500;
    line-height: 24.2px;
    letter-spacing: -.02em;
    text-align: left;
    color: #F97414
}

.item-themes .title-more .more {
    margin-top: 8px;
    width: 100%!important;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 8px
}

.item-themes .title-more .more .flex-button-free-1 {
    background: #333
}

.item-themes .title-more .more .button-hover-all-2 {
    margin-bottom: 0;
    padding: 12px 0;
    border-radius: 100px
}

.button-hover-all-2 {
    font-weight: 500;
    border-radius: 3.125rem;
    background: #ff2100 ;
    display: block;
    padding: 11px 1.5rem
}

.item-themes .title-more .more .button-hover-all-2 .span_1 {
    display: grid;
    justify-content: center
}

.button-hover-all-2 .span_1 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    transition: color 250ms cubic-bezier(0.645,0.045,0.355,1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-weight: 500;
    color: var(--white-1);
    text-align: center;
    font-size: 14px;
    font-style: normal;
    line-height: 18px;
    letter-spacing: -.0175rem
}

.item-themes .title-more .more .button-hover-all-2 .span_1 .span_2 {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
    line-height: normal;
    letter-spacing: -.00188rem;
    text-align: center;
    display: grid;
    justify-content: center;
    display: grid;
    justify-content: center;
    background: unset!important;
    padding-right: 0!important
}

.button-hover-all-2 .span_1 .span_2 {
    transform-origin: left bottom;
    will-change: transform;
    transition: transform .5s cubic-bezier(0.645,0.045,0.355,1) 0s,-webkit-transform .5s cubic-bezier(0.645,0.045,0.355,1) 0
}

.list-product-category {
    padding-bottom: 20px;
    padding-top: 20px
}

.poup-form-tuvan .demo-container {
    text-align: center;
    color: #fff
}

.poup-form-tuvan .demo-btn {
    background: linear-gradient(45deg,#ff6b6b,#ee5a24);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 8px 25px rgba(255,107,107,0.3);
    text-transform: uppercase;
    letter-spacing: 1px
}

.poup-form-tuvan .demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,107,107,0.4);
    background: linear-gradient(45deg,#ee5a24,#ff6b6b)
}

.poup-form-tuvan .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: all .3s ease
}

.poup-form-tuvan {
    position: relative;
    z-index: 99999999999
}

.poup-form-tuvan .overlay.show {
    display: flex;
    opacity: 1
}

.poup-form-tuvan .popup {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 500px;
    margin: 20px;
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: all .3s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
    z-index: 999999
}

.poup-form-tuvan .overlay.show .popup {
    transform: scale(1) translateY(0)
}

.poup-form-tuvan .popup-header {
    background: #ff2100;
    color: #fff;
    padding: 14px;
    text-align: center;
    position: relative
}

.poup-form-tuvan .popup-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0
}

.poup-form-tuvan .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: all .2s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.item-themes .title-more .price-theme del {
    margin-right: 13px
}

.item-themes .title-more .price-theme {
    font-size: 16px;
    display: none
}

.item7 .info-pro h3 {
    font-size: 15px;
    min-height: 39px
}

.poup-form-tuvan .form-container {
    padding: 30px
}

.poup-form-tuvan .form-group {
    margin-bottom: 20px;
    position: relative
}

.poup-form-tuvan .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.poup-form-tuvan .form-group input,.poup-form-tuvan .form-group select,.poup-form-tuvan .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: all .3s ease;
    background: #f8f9fa;
    font-family: unset
}

.poup-form-tuvan .form-group input:focus,.poup-form-tuvan .form-group select:focus,.poup-form-tuvan .form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
    transform: translateY(-2px)
}

.poup-form-tuvan .form-group textarea {
    resize: vertical;
    min-height: 100px
}

.poup-form-tuvan .form-group select {
    cursor: pointer
}

.poup-form-tuvan .submit-btn {
    width: 100%;
    background: #ff2100;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px
}

.poup-form-tuvan .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102,126,234,0.3);
    background: #ff2100
}

.poup-form-tuvan .success-message {
    background: linear-gradient(135deg,#56ab2f 0%,#a8e6cf 100%);
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    display: none;
    font-weight: 600
}

@media (max-width: 600px) {
    .poup-form-tuvan .popup {
        margin:10px
    }

    .poup-form-tuvan .form-container {
        padding: 20px
    }

    .poup-form-tuvan .popup-header {
        padding: 20px
    }

    .poup-form-tuvan .popup-header h2 {
        font-size: 20px
    }
}

.poup-form-tuvan .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.box-choose-us .service-text {
    text-align: justify;
    flex: 1;
}

.clm.content-left-chooseus {
    padding-right: 30px
}

section.Choose-us .faq-tag:before {
    /* left:26px; */
}

.hedding-faq {
    text-align: center;
    text-transform: uppercase
}

.hedding-faq h2 {
    font-size: 25px;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px
}

.hedding-faq h2:before {
    content: "";
    position: absolute;
    width: 70%;
    height: 2px;
    background: #000;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.box-detail-main-servicer .row {
    justify-content: center
}

section.banggia .pricing-header h2 {
    font-size: 37px
}
.clm.content-left-chooseus .box-choose-us .services {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px 20px;
    margin-left: 20px;
}
@media (max-width: 500px) {
    .poup-form-tuvan .form-row {
        grid-template-columns:1fr
    }
}
@media(max-width:768px){
    .clm.content-left-chooseus {
    padding-right: 0px;
}

.clm.content-left-chooseus .box-choose-us .services {
    margin-left: 0px;
}
    .clm.content-left-chooseus .box-choose-us .services {
    grid-template-columns: 1fr;
    margin-top: 20px;
}
}

@media(max-width: 990px) {
    .item7 {
        margin-bottom:7px
    }

    section.box-main-post-details .sidebar {
        margin-top: 20px
    }

    .model-form-popup .popup-container {
        width: 94%
    }

    .model-form-popup .image-section {
        display: none
    }

    section.banggia .pricing-grid-card {
        grid-template-columns: 1fr
    }

    .clm.box-slider-right-services .box-detail-servicer {
        margin-left: 0
    }

    .list-servicer-content {
        grid-template-columns: 1fr
    }

    .box-detail-servicer .media-benefits {
        grid-template-columns: 1fr;
        gap: 20px 0
    }
}
