/*** 
=======================
    Team Style1 Css
=======================
***/
.team-style1 {
    background-color: var(--thm-white);
    padding: 140px 0px 140px;
}

.single-team-style1 {
    position: relative;
    display: block;
    background-color: transparent;
    border: 1px solid #e6e8e3;
    padding: 24px 24px 24px;
}

.single-team-style1 .img-box {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-team-style1 .img-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    background: rgb(25, 26, 28);
    background: linear-gradient(270deg, rgba(25, 26, 28, 1) 0%, rgba(25, 26, 28, 0.8631827731092436) 34%, rgba(25, 26, 28, 0.33657212885154064) 80%);
    transition: opacity 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.single-team-style1:hover .img-box::before {
    opacity: 0.7;
}

.single-team-style1 .img-box img {
    width: 100%;
    transform: scale(1.0);
    transition: all 1500ms ease;
}

.single-team-style1:hover .img-box img {
    transform: scale(1.05) rotate(0deg);
}

.single-team-style1 .img-box .social-share-box {
    position: absolute;
    top: 45px;
    right: 0;
    z-index: 5;
}

.single-team-style1 .img-box .social-share-box h4 {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #a4a5a0;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    background-color: var(--thm-white);
    padding: 10px 2px 10px;
    cursor: pointer;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1 .img-box .social-share-box h4:hover {
    color: var(--thm-primary-color);
}

.single-team-style1 .img-box .social-share-box h4 span {
    transform: rotate(-90deg);
    margin-top: 10px;
}

.single-team-style1 .img-box .social-share-box h4::before {
    content: "";
    position: absolute;
    top: -19px;
    left: 0;
    bottom: 0px;
    width: 31px;
    height: 20px;
    background-color: var(--thm-white);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.single-team-style1 .img-box .social-share-box h4::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -19px;
    width: 31px;
    height: 20px;
    background-color: var(--thm-white);
    clip-path: polygon(100% 100%, 0 0, 100% 0);
}

.single-team-style1 .img-box .social-share-box ul {
    position: absolute;
    top: -20px;
    right: 30px;
    white-space: nowrap;
    transform: translateX(100px);
    opacity: 0;
    padding-right: 20px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.single-team-style1 .img-box .social-share-box:hover ul {
    opacity: 1;
    transform: translateX(0px);
}


.single-team-style1 .img-box .social-share-box ul li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

.single-team-style1 .img-box .social-share-box ul li:last-child {
    margin-bottom: 0;
}

.single-team-style1 .img-box .social-share-box ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    background: var(--thm-white);
    color: var(--thm-black);
    font-size: 20px;
    text-align: center;
    transition: all 200ms linear;
    transition-delay: 0.1s;
    z-index: 1;
}

.single-team-style1 .img-box .social-share-box ul li a:hover {
    color: var(--thm-white);
}

.single-team-style1 .img-box .social-share-box ul li a:before {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: var(--thm-primary-color);
    content: "";
    opacity: 0;
    transform: scale(0.5);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.single-team-style1 .img-box .social-share-box ul li:hover a:before {
    opacity: 1;
    transform: scale(1);
    border-radius: 0%;
}



.single-team-style1 .content-box {
    position: relative;
    display: block;
    background-color: var(--thm-black-bg);
    padding: 17px 30px 18px;
    -webkit-transition: all 0.7s ease;
    -o-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.single-team-style1:hover .content-box {
    background-color: var(--thm-white);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.12);
}

.single-team-style1 .content-box::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 4px;
    height: 40px;
    transform: translateY(-50%);
    background-color: var(--thm-primary-color);
}

.single-team-style1 .content-box h3 {
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
}

.single-team-style1 .content-box h3 a {
    color: var(--thm-white);
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1:hover .content-box h3 a {
    color: var(--thm-black);
}

.single-team-style1 .content-box h3 a:hover {
    color: var(--thm-primary-color);
}

.single-team-style1 .content-box h4 {
    color: #a4a5a0;
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.single-team-style1:hover .content-box h4 {
    color: var(--thm-primary-color);
}

.team-style1-carousel.owl-nav-style-one.owl-theme .owl-nav {
    position: absolute;
    top: -120px;
    right: 0;
}



/*** 
===========================
    Team Style1 Style2 Css
===========================
***/
.team-style1--style2 {
    padding: 140px 0px 110px;
}

.single-team-style1--style2 {
    margin-bottom: 30px;
}



/*** 
===========================
    Team Page One Css
===========================
***/
.team-page-one {
    background-color: var(--thm-white);
    padding: 140px 0px 110px;
}

.team-page-one .single-team-style1 {
    margin-bottom: 30px;
}













/*** 
===========================
    End Css
===========================
***/