
/* ------------- 1. layout-1 section ------------- */
.team-section-1 {
    padding: 100px 0;
}
.heading-title {
    text-align: center;
    margin-bottom: 40px;
}
.heading-title p {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1;
    color: #000;
}
.heading-title h1 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    color: #191919;
    display: block;
}
.team-card {
    text-align: center;
    position: relative;
    z-index: 1;
    text-align: start;
}
.team-image {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
    margin-bottom: 20px;
    transition: all 0.3s linear 0s;
}
.team-image img {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;
    object-position: center;
}
.social-icon {
    position: absolute;
    display: flex;
    align-items: end;
    justify-content: end;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    right: 0;
    padding: 10px;
    width: 100%;
    top: 0;
}
.social-icon a {
    text-decoration: none;
    color: #fff;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease-in-out;
}
.team-card:hover .social-icon a {
    visibility: visible;
    opacity: 1;
    transform: translateX(0%);
}
.team-card:hover .social-icon a:nth-child(1) {
    transition: all .3s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}
.team-card:hover .social-icon a:nth-child(2) {
    transition: all .4s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}
.team-card:hover .social-icon a:nth-child(3) {
    transition: all .6s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}
.team-card:hover .social-icon a:nth-child(4) {
    transition: all .8s ease-in-out;
    opacity: 1;
    transform: translateY(0px);
}
.team-content {
    text-align: start;
}
.team-detail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
}
.team-detail a {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    color: #000;
    transition: all .35s ease-in;
}
.team-detail i {
    font-size: 24px;
    cursor: pointer;
}
.team-content span {
    font-size: 16px;
    font-weight: 400;
    color: #606060;
}
.social-icon a:hover {
    background-color: #fff;
    color: #000;
    transition: all .5s ease-in-out;
}