section.team-section {
    padding: 130px 0px;
}
section.team-section .team-grid {
    margin: 0 auto;
    max-width: 1400px;
	display: flex;
    gap: 20px 20px;
    flex-wrap: wrap;
}
section.team-section .team-member {
    width: calc(20% - 20px);
    text-align: center;
    text-decoration: none;
     cursor: pointer;
}
section.team-section .main-title {
    margin: 0 0 30px 0;
    padding: 0;
    font-family: Albert Sans;
    font-weight: 500;
    font-size: 70px;
    line-height: 78px;
    letter-spacing: -0.044em;
    color: #000000;
	text-align:center;
}
section.team-section .image-container {
    height:265px;
	overflow:hidden;
	margin-bottom: 12px;
}
section.team-section .image-container img{
	width:100%;
	height:100%;
    object-fit: cover;
}
section.team-section .member-name {
    font-size: 30px;
    font-weight: 600;
    color: #000000;
    font-family: Albert Sans;
    margin: 20px 0px 5px;
    line-height: 37px;
}
section.team-section .member-title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    font-family: Albert Sans;
    color: rgba(0, 0, 0, 0.60);
    margin: 0 0 9px 0;
}

section.team-section .team-member .read-bio-btn-box .read-bio-btn {
    font-size: 16px;
    line-height: 26px;
    font-weight:500;
    font-family: Albert Sans;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 0 8px;
    position: relative;
      opacity:0;
    -webkit-transition: all 0.5s 
ease 0s;
    transition: all 0.5s 
ease 0s;
}
section.team-section .team-member:hover .read-bio-btn-box .read-bio-btn {
    opacity:100;
}
section.team-section .team-member .read-bio-btn-box .read-bio-btn:before {
    content: '';
    width: 100%;
    position: absolute;
    height: 1px;
    background-color: #000;
    bottom: 0;
    left: 0;
}
