
/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
    position: relative;
    display: block;
    background-color: var(--careon-extra);
    padding: 180px 0 60px;
    margin-top: -130px;
    z-index: 1;
}

.team-three__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 580px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: multiply;
    opacity: .50;
    z-index: -1;
}

.team-three__single {
    position: relative;
    display: block;
    padding: 30px 30px 30px;
    margin-bottom: 30px;
    z-index: 1;
}

.team-three__single::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--careon-white);
    border-radius: 10px;
    z-index: -1;
}

.team-three__img-box {
    position: relative;
    display: block;
}

.team-three__img {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.team-three__img::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--careon-black);
    opacity: 0;
    transition: background-color 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;
}

.team-three__single:hover .team-three__img::before {
    opacity: .50;
}

.team-three__img img {
    width: 100%;
    border-radius: 10px;
    transform: scale3d(1, 1, 1);
    transition: transform 1s ease-in-out;
}

.team-three__single:hover .team-three__img img {
    transform: scale(1.05) rotate(0deg);
}

.team-three__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.team-three__title-box {
    position: relative;
    display: block;
}

.team-three__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-bottom: 18px;
}

.team-three__title a {
    color: var(--careon-black);
}

.team-three__title a:hover {
    color: var(--careon-base);
}

.team-three__arrow-and-social {
    position: relative;
    display: block;
    padding-top: 30px;
    margin-top: -30px;
    z-index: 2;
}

.team-three__arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--careon-white);
    border: 1px solid var(--careon-bdr-color);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-three__arrow:hover {
    transform: rotate(-45deg);
    background-color: var(--careon-base);
}

.team-three__arrow span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: var(--careon-black);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.team-three__arrow:hover span {
    color: var(--careon-white);
}

.team-three__social {
    position: absolute;
    top: -151px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--careon-white);
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--careon-bdr-color);
    gap: 15px;
    padding: 20px 5px 20px;
    border-radius: 18px;
    transform: scaleY(0.0);
    transform-origin: bottom;
    transform-style: preserve-3d;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
    transform-origin: bottom center;
}

.team-three__arrow-and-social:hover .team-three__social {
    transform: scaleY(1.0);
    transform-origin: bottom center;
    transition-delay: 300ms;
}

.team-three__social a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: var(--careon-black);
}

.team-three__social a:hover {
    color: var(--careon-base);
}


/*--------------------------------------------------------------
# Team Details
--------------------------------------------------------------*/
.team-details {
    position: relative;
    display: block;
    padding: 120px 0 120px;
    z-index: 1;
}

.team-details__top {
    position: relative;
    display: block;
    margin-bottom: 100px;
}

.team-details__left {
    position: relative;
    display: block;
    margin-right: 30px;
}

.team-details__img {
    position: relative;
    display: block;
}

.team-details__img img {
    width: 100%;
    border-radius: var(--careon-bdr-radius);
}

.team-details__social {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-details__social a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 16px;
    color: var(--careon-black);
    background-color: var(--careon-extra);
    border-radius: 50%;
}

.team-details__social a:hover {
    color: var(--careon-white);
    background-color: var(--careon-base);
}

.team-details__right {
    position: relative;
    display: block;
    margin-left: 45px;
    margin-top: 57px;
}

.team-details__name {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    margin-bottom: 10px;
}

.team-details__counter {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
    margin-bottom: 64px;
}

.team-details__counter li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
}

.team-details__counter li .icon {
    position: relative;
    display: inline-block;
}

.team-details__counter li .icon span {
    position: relative;
    display: inline-block;
    font-size: 49px;
    color: var(--careon-base);
}

.team-details__counter-content {
    position: relative;
    display: block;
    flex: 1;
}

.team-details__counter-count-box {
    position: relative;
    display: flex;
    align-items: center;
}

.team-details__counter-count-box h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px !important;
    font-family: var(--careon-font) !important;
}

.team-details__counter-count-box span {
    font-size: 24px;
    font-weight: 700;
    line-height: 24px !important;
    font-family: var(--careon-font) !important;
    color: var(--careon-black);
}

.team-details__counter-count-text {
    color: var(--careon-black);
}

.team-details__biography {
    position: relative;
    display: block;
    background-color: var(--careon-white);
    box-shadow: 0px 4.4px 20px -1px rgba(19, 16, 34, 0.05);
    border-radius: var(--careon-bdr-radius);
    margin-left: -343px;
    padding: 42px 60px 41px;
}

.team-details__biography-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 22px;
}

.team-details__bottom {
    position: relative;
    display: block;
}

.team-details__bottom-list {
    position: relative;
    display: block;
}

.team-details__bottom-list li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 3px solid var(--careon-bdr-color);
    border-radius: var(--careon-bdr-radius);
    padding: 20px 29px 20px;
}

.team-details__bottom-list li+li {
    margin-top: 30px;
}

.team-details__bottom-list li p {
    position: relative;
    display: block;
    max-width: 155px;
    width: 100%;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: var(--careon-black);
}

/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.team-carousel-page {
    position: relative;
    display: block;
    padding: 120px 0 170px;
}

.team-carousel-page .team-two__single {
    margin-bottom: 0;
}











/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/