.tf-services-wrap.no-carousel {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.tf-services-wrap.no-carousel .item {
    padding: 15px 15px 15px 15px;
}

.tf-services-wrap.no-carousel.column-1 .item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.tf-services-wrap.no-carousel.column-2 .item {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.tf-services-wrap.no-carousel.column-3 .item {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.tf-services-wrap.no-carousel.column-4 .item {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

/* style 1 */
.tf-services-wrap.style1 .item {
    width: 100%;
    padding: 0;
}

.tf-services-wrap.style1 .item .services-post .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;

}

.tf-services-wrap.style1 .item .services-post .content .icon-plus {
    position: relative;
    cursor: pointer;
    width: 43px;
    text-align: center;
    display: inline-block;
}

.tf-services-wrap.style1 .item .services-post .content .icon-plus::before {
    content: '+';
    font-size: 35px;
    transition: all 0.3s ease-in-out;

}

.tf-services-wrap.style1 .item:last-child .services-post {
    border-bottom: 1px solid #454750;
}

.tf-services-wrap.style1 .item .services-post {
    border-top: 1px solid #454750;
    padding-top: 36px;
    padding-bottom: 36px;
    overflow: hidden;
}

.tf-services-wrap.style1 .item.active .services-post .content .icon-plus::before {
    content: '-';
}

.tf-services-wrap.style1 .item .services-post .content .images-remove-area {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    display: none;
}

.tf-services-wrap.style1 .item .services-post .content .images-remove-area .services-category {
    display: flex;
    flex-direction: column;
}

.tf-services-wrap.style1 .item .services-post .content .images-remove-area .services-category a::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f054";
    color: var(--theme-primary-color);
    margin-right: 7px;
}
.tf-services-wrap.style1 .item .services-post .content .images-remove-area .services-category a{
    color: #fff;
}
.tf-services-wrap.style1 .item .services-post .content .images-remove-area .services-category a:hover{
    color: var(--theme-primary-color);
}
.tf-services-wrap.style1 .item .services-post .content .images-remove-area .services-category a:not(:last-child) {
    margin-bottom: 8px;
}

.tf-services-wrap.style1 .item .services-post .content .title {
    font-size: 30px;
    font-weight: 500;
    margin-top: 14px;
    margin-bottom: 0;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;

}
.tf-services-wrap .item .services-post .content .description {
    color: #fff;

}
.tf-services-wrap.style1 .item .services-post .content .description {
    margin-top: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    display: none;


}

.tf-services-wrap.style1 .item .services-post .content .inner {
    max-width: 450px;
    width: 100%;
}

.tf-services-wrap.style1 .item .services-post .content .inner .tf-button-container {
    margin-top: 10px;
}

.tf-services-wrap.style1 .item .services-post .content .inner-category .counter-number {
    position: relative;
    border: 1px solid #454750;
    padding: 5px 16px;
    transition: all 0.3s;
    display: inline-block;
    border-radius: 100px;
    color: #fff;
}

.tf-services-wrap.style1 .item .services-post .content .inner-category .counter-number::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    margin-left: 7px;
    rotate: 62deg;
    display: inline-block;
    color: var(--theme-primary-color);
}

.tf-services-wrap.style1 .item .services-post .images-remove-area .featured-post a img {
    width: 430px;
    height: 300px;
    object-fit: cover;
}

.tf-services-wrap.style1 .item.active .services-post .content .description,
.tf-services-wrap.style1 .item.active .services-post .content .images-remove-area {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* style 2 */

.tf-services-wrap.style2 .services-post {
    background: #161616;
    border-radius: 12px;
    padding: 1.5rem;
}

.tf-services-wrap.style2 .services-post .services-wrap {
    display: flex;
    gap: 1.5rem;
}

.tf-services-wrap.style2 .services-post .services-wrap .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.tf-services-wrap.style2 .services-post .icon-services {
    font-size: 48px;
    transition: all 0.5s ease-in-out;
    transform: rotate(0deg);
}

.tf-services-wrap.style2 .services-post .counter-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
}

.tf-services-wrap.style2 .services-post .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    color: #fff;
    margin-bottom: 23px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}


.tf-services-wrap.style2 .services-post .tf-button-container {
    margin-top: 25px;
}



.tf-services-wrap.style2 .services-post .tf-button-container a {
    font-size: 16px;
}

.tf-services-wrap.style2 .services-post .tf-button-container a i {
    margin-left: 12px;
    rotate: -25deg;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.tf-services-wrap.style2 .services-post .tf-button-container a:hover i {
    rotate: 0deg;
}

.tf-services-wrap.style2 .services-post:hover .icon-services {
    transform: rotateY(360deg);
}

.tf-services-wrap.style2 .services-post:hover .title a,
.tf-services-wrap.style2 .services-post:hover .tf-button-container a,
.tf-services-wrap.style2 .services-post:hover .tf-button-container a i {
    color: var(--theme-primary-color);
}


/* style 3 */
.tf-services-wrap.style3 {
    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 20px;
}

.tf-services-wrap.style3 .inner {
    display: flex;
    gap: 20px;
}

.tf-services-wrap.style3 .digital-marketing {
    white-space: nowrap;
    display: flex;
    gap: 20px;
    animation: scroll 80s linear infinite;
}

.tf-services-wrap.style3 .digital-marketing .item .services-post .number .counter-number {
    border-radius: 100px;
    padding: 7px 18px;
    border: 1px solid #454750;
    display: inline-block;
}

.tf-services-wrap.style3 .digital-marketing .item .services-post .counter-number::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    margin-left: 7px;
    rotate: 62deg;
    display: inline-block;
    color: var(--theme-primary-color);

}

.tf-services-wrap.style3 .services-post .title {
    font-size: 80px;
    font-weight: 600;
    line-height: 110px;
    opacity: 25%;
    transition: all 0.5s;
}

.tf-services-wrap.style3 .digital-marketing .item .services-post:hover .title {
    opacity: 1;
}

.tf-services-wrap.style3 .services-post .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
}

.tf-services-wrap.style3 .services-post .featured-post a img {
    margin-left: 10em;
    margin-top: -175px;
    transform: scale(0);
    visibility: hidden;
    transition: all 0.6s;
    display: inline-block;
    width: 330px;
    height: 220px;
    object-fit: cover;
}

.tf-services-wrap.style3 .services-post:hover .featured-post a img {
    transform: scale(1);
    visibility: visible;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* style 4 */

.tf-services-wrap.style4 .services-post {
    background: #1B1B1B;
    border-radius: 12px;
    padding: 2.25rem;
}

.tf-services-wrap.style4 .services-post .content .inner-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 23px;
}

.tf-services-wrap.style4 .services-post .content .inner-top .counter-number {
    font-size: 50px;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #fff;
    opacity: 15%;
    transition: all 0.3s ease-in-out;
}

.tf-services-wrap.style4 .services-post:hover .content .inner-top .counter-number {
    opacity: 1;
    color: var(--theme-primary-color);
}

.tf-services-wrap.style4 .services-post .title {
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    margin-bottom: 17px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}


.tf-services-wrap.style4 .services-post .icon-services {
    font-size: 60px;
    display: inline-block;
    transition: all 0.5s ease-in-out;
    transform: rotate(0deg);
}

.tf-services-wrap.style4 .services-post .icon-services>* {
    position: relative;
    z-index: 10;
}

.tf-services-wrap.style4 .services-post .icon-services svg {
    height: 60px !important;
}



.tf-services-wrap.style4 .services-post .tf-button-container a i {
    margin-left: 10px;
    rotate: -30deg;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

.tf-services-wrap.style4 .services-post .tf-button-container a:hover i {
    rotate: 0deg;
}

.tf-services-wrap.style4 .services-post .tf-button-container a {
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
    color: #fff;
    position: relative;
    display: inline-block;
}


.tf-services-wrap.style4 .services-post .description {
    margin-bottom: 22px;
}

.tf-services-wrap.style4 .services-post:hover .icon-services {
    transform: rotateY(360deg);
}

.tf-services-wrap.style4 .services-post:hover .title a,
.tf-services-wrap.style4 .services-post:hover .tf-button-container a,
.tf-services-wrap.style4 .services-post:hover .tf-button-container a i {
    color: var(--theme-primary-color);
}


/* style 5 */

.tf-services-wrap.style5 .item {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.tf-services-wrap.style5 .services-post .content {
    display: flex;
    align-items: center;
}

.tf-services-wrap.style5 .services-post {
    border-bottom: 1px solid rgba(2, 6, 38, 0.1);
    padding-bottom: 30px;
    padding-top: 20px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-services-wrap.style5 .services-post:hover {
    background: #fff;
    padding-left: 30px;
    padding-right: 30px;
    border-color: transparent;
    box-shadow: 0px 10px 60px 0px #A5A5A540;
}

.tf-services-wrap.style5 .services-post .inner {
    margin-right: 70px;
    width: 300px;
}

.tf-services-wrap.style5 .services-post .description {
    width: 25%;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    margin-right: 30px;
}

.tf-services-wrap.style5 .services-post .title {
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.03em;
    margin: 0;
}

.tf-services-wrap.style5 .services-post .tf-button-container {
    margin-left: auto;
}

.tf-services-wrap.style5 .services-post .featured-post {
    width: 300px;
    height: 140px;
    border-radius: 70px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 70px;
}

.tf-services-wrap.style5 .services-post .featured-post img {
    transition: clip-path 1s cubic-bezier(.12, .76, .36, 1), opacity .3s, transform 1.5s cubic-bezier(.12, .76, .36, 1);
}

.tf-services-wrap.style5 .services-post:hover .featured-post img {
    transform: scale(1.07);
}

.tf-services-wrap.style5 .services-post .inner-category {
    display: flex;
    align-items: center;
    column-gap: 7px;
    margin-bottom: 10px;
}

.tf-services-wrap.style5 .services-post .services-category a {
    color: #696969;
}

.tf-services-wrap.style5 .services-post .services-category a:hover {
    color: #222;
}

.tf-services-wrap.style5 .services-post .inner-category .counter-number {
    position: relative;
    color: #696969;
    flex-shrink: 0;
}

.tf-services-wrap.style5 .services-post:hover .inner-category .counter-number,
.tf-services-wrap.style5 .services-post:hover .services-category a {
    color: var(--theme-primary-color);
}

.tf-services-wrap.style5 .services-post .inner-category .counter-number::before {
    content: '';
    width: 35px;
    height: 1.4px;
    display: inline-block;
    background: rgba(2, 6, 38, 0.1);
    margin-right: 7px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tf-services-wrap.style5 .services-post:hover .inner-category .counter-number::before {
    background: var(--theme-primary-color);
}

.tf-services-wrap.style5 .services-post .tf-button-container a {
    border: 1.2px solid #002FF51A;
    color: var(--theme-primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tf-services-wrap.style5 .services-post:hover .tf-button-container a {
    background: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
    color: #fff;
}

.tf-service-details .entry-content .featured-post img {
    width: 100%;
}

.tf-service-details .entry-content .featured-post {
    margin-bottom: 3rem;
}

.tf-service-details .entry-content .post-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}

.tf-service-details .entry-content .services-category a {
    border: 1px solid #454750;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 100px;
    color: var(--theme-primary-color);
}

.tf-service-details .entry-content .services-category {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
}

.tf-service-details .entry-content .service-details-header {
    padding-bottom: 2.25rem;
    border-bottom: 1px solid #454750;

}

@keyframes toRight {
    49% {
        transform: translate(100%);
    }

    50% {
        opacity: 0;
        transform: translate(-100%);
    }

    51% {
        opacity: 1;
    }
}

@media (max-width: 1280px) {
    .tf-services-wrap.style1 .item .services-post .content .images-remove-area .featured-post {
        max-width: 200px;
    }
}

@media (max-width: 991px) {
    .tf-services-wrap.style1 .item .services-post .content {
        flex-direction: column;
        align-items: self-start;
        position: relative;
    }
    .tf-services-wrap.style1 .item .services-post .content .images-remove-area .featured-post {
        max-width: 100%;
    }

    .tf-services-wrap.style1 .item .services-post .images-remove-area .featured-post a img {
        width: 100%;
    }
    .tf-services-wrap.style1 .item .services-post .content .icon-plus {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tf-services-wrap.no-carousel.tablet-column-1 .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tf-services-wrap.no-carousel.tablet-column-2 .item {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .tf-services-wrap.no-carousel.tablet-column-3 .item {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .tf-services-wrap.style5 .services-post .featured-post,
    .tf-services-wrap.style5 .services-post .inner {
        margin-right: 30px;
    }

    .tf-services-wrap.style5 .services-post .featured-post {
        margin-right: 30px;
    }

    .tf-services-wrap.style5 .services-post .featured-post img {
        width: 100%;
    }

    .tf-services-wrap.style5 .services-post:hover {
        padding-left: 0px;
        padding-right: 0px;
        background: transparent;
        box-shadow: unset;
    }

}

@media (max-width: 767px) {

    .tf-services-wrap.style1 .item .services-post .content .images-remove-area {
        flex-direction: column;
        align-items: self-start;
    }

    .tf-services-wrap.style5 .services-post .featured-post {
        height: 100%;
    }

    .tf-services-wrap.style5 .services-post .featured-post a {
        display: block;
        width: 100%;
    }

    .tf-services-wrap.no-carousel.mobile-column-1 .item {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .tf-services-wrap.style5 .services-post .content {
        flex-direction: column;
        align-items: unset;
    }

    .tf-services-wrap.style5 .services-post .inner,
    .tf-services-wrap.style5 .services-post .description,
    .tf-services-wrap.style5 .services-post .featured-post {
        margin-right: 0;
        width: 100%;
    }

    .tf-services-wrap.style5 .services-post .featured-post,
    .tf-services-wrap.style5 .services-post .inner,
    .tf-services-wrap.style5 .services-post .tf-button-container {
        margin: 0;
    }

    .tf-services-wrap.style5 .services-post .content {
        row-gap: 15px;
    }
}