.team-box{
    gap: 30px;
    display: grid;
    grid-template-columns: 48.7% 48.7%;
}
.team-box-item figure{
    overflow: hidden;
    border-radius: 10px;
}
.team-box-item a:hover figure:nth-child(1) img{
    transform: scale(1.2);
}
.team-box-item figure img{
    width: 100%;
    transition: all 0.4s ease-in-out;
}
.team-content *{
    color: var(--white-color);
}
.team-content h3{
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 13px;
}
.team-content p{
    font-size: 18px;
    line-height: 24px;
}
.team-box-item{
    position: relative;
}
.team-content {
    width: 78%;
    left: 30px;
    bottom: 30px;
    position: absolute;
}
.team-builder {
    top: 15px;
    right: 15px;
    position: absolute;
}

/* ************ responsive *************** */
@media only screen and (max-width: 1440px) {}
@media only screen and (max-width: 1199px) {
    .team-box {
        gap: 24px;
    }
    .team-content h3 {
        font-size: 22px;
        line-height: 22px;
    }
}
@media only screen and (max-width: 991px) {
    .team-box {
        gap: 18px;
    }
    .team-content h3 {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 11px;
    }
    .team-content {
        width: 82%;
        left: 20px;
        bottom: 20px;
    }
    .team-content p {
        font-size: 16px;
        line-height: 22px;
    }
}
@media only screen and (max-width: 767px) {
    .team-box {
        gap: 18px;
        grid-template-columns: 70%;
        justify-content: center;
    }
    .team-content h3 {
        font-size: 18px;
        line-height: 18px;
    }
}
@media only screen and (max-width: 575px) {
    .team-box {
        gap: 15px;
        grid-template-columns: 100%;
    }
    .team-content p {
        font-size: 14px;
        line-height: 18px;
    }
    .team-content {
        text-align: center;
    }
}