.tf-banner {
    background: var(--theme-primary-color);
    display: flex;
}

.tf-banner .content-left {
    width: 40%;
    display: flex;
    align-items: center;
    gap: 36px;
}

.tf-banner .content-right {
    width: 60%;
}

.tf-banner .logo-banner {
    background: #fff;
    width: 166px;
    padding: 38px;
    padding-right: 65px;
    border-radius: 0 100px 100px 0;
    position: relative;
}

.tf-banner .logo-banner::after {
    content: '';
    width: 94%;
    height: 89%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 1px dashed var(--theme-primary-color);
    border-left: unset;
    border-radius: 0 100px 100px 0;
}

.tf-banner .logo-banner img {
    max-width: 70.60336303710938px;
}

.tf-banner .subtitle {
font-weight: 600;
font-size: 16px;
line-height: 20.16px;
color: #fff;
margin-bottom: 8px;
}

.tf-banner .heading {
font-weight: 800;
font-size: 30px;
line-height: 44px;
letter-spacing: 0%;
color: #fff;
margin-bottom: 43px;
}

.tf-banner .tf-button {
font-weight: 600;
font-size: 16px;
line-height: 20.16px;
letter-spacing: 0%;
color: #00194C;
background: #fff;
padding: 16px 36px;
}

.tf-banner .tf-button i {
    margin-left: 8px;
    font-size: 24px;
    vertical-align: sub;
}

.tf-banner .tf-button:hover {
    background: #00194C;
    color: #fff;
}

.tf-banner .content-left {
    background: url(../../img/banner1.jpg);
    background-position: center;
    background-size: cover;
}

.tf-banner .content-left .content-heading {
    margin-top: -18px;
}

.tf-banner .content-right img {
    height: 291px;
    object-fit: cover;
    width: 100%;
}

.tf-banner .owl-dots {
    display: none;
}

.tf-banner .images {
    clip-path: polygon(11.6% 0, 100% 0, 100% 100%, 0% 100%);
    position: relative;
}

.tf-banner .images::after {
    content: '';
    width: 10px;
    height: 115%;
    background: #fff;
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%) rotate(21deg);
}

.tf-banner .owl-nav button {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-primary-color) !important;
    background: #fff !important;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 21px !important;
}

.tf-banner .owl-nav button:hover {
    background: var(--theme-primary-color) !important;
    color: #fff !important;
}

.tf-banner .owl-nav button.owl-prev {
    left: 31px;
}

.tf-banner .owl-nav button.owl-next {
    right: -27px;
}

.tf-list-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}
.tf-list-image .box-item {
    position: relative;
    -webkit-animation: slide-har 30s linear infinite;
    animation: slide-har 30s linear infinite;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.tf-list-image .box-item .item {
    padding: 0 25px;
    width: 250px;
}

.tf-list-image .box-item .item .image img {
    width: 100%;
    object-fit: cover;
    -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-image.hover-image .image img {
    filter: grayscale(1);
}

.tf-list-image.hover-image .item:hover .image img {
    filter: grayscale(0);
}

.tf-list-image.hover-stop:hover .box-item {
    animation-play-state: paused;
}

@keyframes slide-har {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.tf-list-image .box-item .item.list-text {
    width: unset;
}

.tf-list-image .list-text a {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    width: max-content;
    color: #000;
    display: flex;
    align-items: center;
}

.tf-list-image .list-text a svg {
    width: 24px;
}

.tf-list-image .list-text a .text {
    position: relative;
}

.tf-list-image .list-text a .text::after {
    position: absolute;
    content: "";
    bottom: 0;
    height: 1px;
    width: 0;
    left: auto;
    right: 0;
    -webkit-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    -o-transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background-color: currentColor;
}

.tf-list-image .list-text a:hover .text::after {
    width: 100%;
    left: 0;
    right: auto;
}

.tf-list-image .list-text .icon {
    margin-right: 10px;
}

.tf-list-image .list-text .icon * {
    -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-image .list-text .icon svg path {
    fill: #000;
}

.tf-list-image .list-text .icon i {
    color: #000;
}