.tf-list-services .item-list .content {
    padding: 44px 45px 41px 49px;
}
.tf-list-services .item-list {
    background: #FFFFFF;
border-radius: 12px;
overflow: hidden;
}

.tf-list-services .item-list .thumb img {
    width: 100%;
    object-fit: cover;
}

.tf-list-services .item-list .title {
    position: relative;
    font-family: 'Arimo';
font-weight: 700;
font-size: 24px;
line-height: 28px;
color: var(--theme-primary-color);
padding-left: 27px;
margin-bottom: 15px;
}

.tf-list-services .item-list .title::before {
    content: '';
    width: 17px;
height: 5px;
background: var(--theme-secondary-color);
position: absolute;
left: 0;
bottom: 6px;
}

.tf-list-services .item-list .description {
    font-family: 'Jost';
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    color: #9AA5B3;
    margin-bottom: 16px;
}

.tf-list-services .item-list .note {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
}

.tf-list-services .item-list .note:last-child {
    margin-bottom: 0;
}

.tf-list-services .item-list .note .icon {
    margin-right: 14px;
}

.tf-list-services .item-list .note .icon i {
    font-size: 18px;
    font-weight: 900;
    color: var(--theme-secondary-color);
}

.tf-list-services .item-list .note p {
    font-family: 'Jost';
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.3px;
    color: #9AA5B3;
}

/*carousel optiont*/
.tf-list-services .owl-nav .owl-prev,
.tf-list-services .owl-nav .owl-next {
    padding: 0;
    width: 50px;
    height: 50px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.2);
    border-radius: 5px;
    color: #fff;
    text-align: center;
    line-height: 50px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tf-list-services .owl-nav .owl-next {
    left: unset;
    right: 0;
}

.tf-list-services .owl-nav .owl-prev:before, 
.tf-list-services .owl-nav .owl-next:before,
.tf-list-services .owl-nav .owl-prev:after, 
.tf-list-services .owl-nav .owl-next:after,
.tf-list-services .owl-dots .owl-dot:before {
    display: none;
}

.tf-list-services.no-arrow .owl-nav .owl-prev,
.tf-list-services.no-arrow .owl-nav .owl-next {
    display: none;
}

.tf-list-services.has-arrow .owl-nav .owl-prev,
.tf-list-services.has-arrow .owl-nav .owl-next {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tf-list-services .owl-dots {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.tf-list-services .owl-dots .owl-dot {
    padding: 0;
    width: 10px;
    height: 10px;
    background: #0080f0;
    display: inline-block;
    margin: 0 5px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.tf-list-services.has-carousel.no-bullets .owl-dots,
.tf-list-services.no-bullets .owl-dots {
    display: none;
}

.tf-list-services.has-carousel.has-bullets .owl-dots {
    display: block;
}

.tf-list-services .owl-dots .owl-dot.active {
    position: relative;
    display: inline-block;
    overflow: unset;
}

.tf-list-services .owl-dots .owl-dot.active::after {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    width: 18px;
    height: 18px;
    border: 1px solid var(--theme-accent-color);
    overflow: visible;
}

.tf-list-services .item-image-box:hover::after {
    opacity: 1;
    left: 23px;
}
.tf-list-services .item-image-box:hover::before {
    opacity: 0.8;
    left: 68px;
}
.tf-list-services .item-image-box::after,
.tf-list-services .item-image-box::before {
    content: '';
    position: absolute;
    width: 75px;
    height: 61px;
    background-color: var(--theme-accent-color);
    opacity: 0.2;
    top: 0;
    left: 20px;
    z-index: 20;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    -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-list-services .item-image-box::before {
    content: '';
    opacity: 0.1;
    left: 71px;
    z-index: 1;
}