.tf-team {

}
.tf-team .wrap-team {
    background: #FFFFFF;
border-radius: 3px;
overflow: hidden;
}

.tf-team .content {
    background: #FFFFFF;
border-left: 1px solid #ECECEC;
border-right: 1px solid #ECECEC;
border-bottom: 3px solid #D1D1D1;
border-radius: 3px;
padding: 25px 25px;
padding-bottom: 18px;
-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-team:hover .content {
    border-bottom: 3px solid var(--theme-secondary-color);
}

.tf-team .content .title {
    font-weight: 600;
font-size: 22px;
line-height: 33px;
color: var(--theme-primary-color);
margin-bottom: 10px;
}
.tf-team .content .position {
    font-weight: 400;
font-size: 14px;
line-height: 24px;
color: #535656;
margin-bottom: 11px;
}
.tf-team .content .social {
    display: flex;
    align-items: center;
}
.tf-team .content .social a {
font-size: 14px;
color: #9C9EA6;
}
.tf-team .content .social a:hover {
    color: var(--theme-secondary-color);
}

.tf-team .content .social a:not(:last-child) {
    margin-right: 16.5px;
}

.tf-team .inner-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tf-team.aln-center .wrap-team {
    text-align: center;
}
.tf-team.aln-center .content .social {
    justify-content: center;
}

.tf-team.aln-right .wrap-team {
    text-align: right;
}
.tf-team.aln-right .content .social {
    justify-content: right;
}

.tf-team.aln-left .wrap-team {
    text-align: left;
}
.tf-team.aln-left .content .social {
    justify-content: left;
}

/* team carousel */

.tf-team-carousel .item-team {
    overflow: hidden;
}

.tf-team-carousel .item-team .images img {
    height: 225px;
    width: 100%;
    object-fit: cover;
}

.tf-team-carousel .item-team .content {
    padding: 22px 15px 15px 18px;
    background: #fff;
}

.tf-team-carousel .item-team .name {
    font-style: normal;
font-weight: 600;
font-size: 22px;
line-height: 33px;
color: var(--theme-primary-color);
}

.tf-team-carousel .item-team .position {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #9C9EA6;
}

.tf-team-carousel .owl-nav {
    position: absolute;
    top: -15%;
    right: 0%;
    width: 100px;
    display: flex;
    justify-content: space-between;
}

.tf-team-carousel .owl-nav .owl-prev,
.tf-team-carousel .owl-nav .owl-next {
    position: unset !important;
}

/*carousel optiont*/
.tf-team-carousel .owl-nav .owl-prev,
.tf-team-carousel .owl-nav .owl-next {
    padding: 0;
    width: 50px;
    height: 50px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: var(--theme-secondary-color);
    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-team-carousel .owl-nav .owl-next {
    left: unset;
    right: 0;
}

.tf-team-carousel .owl-nav .owl-prev:before, 
.tf-team-carousel .owl-nav .owl-next:before,
.tf-team-carousel .owl-dots .owl-dot:before {
    display: none;
}

.tf-team-carousel.no-arrow .owl-nav .owl-prev,
.tf-team-carousel.no-arrow .owl-nav .owl-next {
    display: none;
}

.tf-team-carousel.has-arrow .owl-nav .owl-prev,
.tf-team-carousel.has-arrow .owl-nav .owl-next {
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tf-team-carousel .owl-dots {
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.tf-team-carousel .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-team-carousel.has-carousel.no-bullets .owl-dots,
.tf-team-carousel.no-bullets .owl-dots {
    display: none;
}

.tf-team-carousel.has-carousel.has-bullets .owl-dots {
    display: block;
}