 .text_1{
    font-size: 24px;
  font-weight: 600;
  /* background-image: linear-gradient(to left, #553c9a, #b393d3); */
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
    background-image: radial-gradient(#553c9a, #ee4b2b);
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
 }       
a:hover {
  color: #ffb200;
}
.teamWrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}
.container {
  --container: 1160px;
  max-width: var(--container);
  margin: auto;
}
.teamGrid {
    display: grid;
    gap: 6rem;
    /* grid-template-columns: repeat(3, 1fr); */
    column-gap: 1.5%;
    margin-top: 50px;
    
}
.teamFlex{
    display: flex;
    gap: 6rem;
    /* grid-template-columns: repeat(3, 1fr); */
    column-gap: 1.5%;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
}
@media (min-width: 600px) {
.teamGrid{
   grid-template-columns: repeat(3, 1fr);
}
}
.avatar {
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    text-align: center;
}
.teamcolinner {
    position: relative;
}
.avatar > img {
    width: 150px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid rgb(170 170 173/ 1);
    box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
}
.teamcolinner {
    position: relative;
    border: 1px dashed #ddd;
    min-height: 100px;
    background: #fff;
    z-index: 9;
}
.teamcol {
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    transition: transform 1s ease-in-out;
}
.teamcol:hover {
    transform: translateY(-30px);
    box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
    transition: transform 1s ease-in-out;
}
.teamcol:before {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    right: 0;
    top: 0;
    /* background: -webkit-linear-gradient(#087a59, #7a240c); */
    border-top-right-radius: 10px;
    transition: width 1s ease-in-out;
}
.teamcol:after {
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    /* background: -webkit-linear-gradient(#087a59, #7a240c); */
    border-bottom-left-radius: 10px;
    transition: width 1s ease-in-out;
}
.teamcol:hover::before, .teamcol:hover::after {
    width: 100%;
    transition: width 1s ease-in-out;
}
.member-name {
    margin-top: 80px;
}
.member-info {
    padding: 10px 20px;
}
.social-listing {
    align-items: center;
    justify-content: center;
    display: flex;
    list-style: none;
    padding: 0;
}
.social-listing >li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f4f5f7;
    border-radius: 50%;
    margin: 5px;
}