
/** Team Start **/


/* Team Page Styles Start */
.team-container {
    text-align: center;
    width: 100%;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
}
/* center the item 
.team-grid > :first-child {
    grid-column: 1 / -1;
    justify-self: center;
} */

.team-member {
    text-align: center;
}

.photo-placeholder {
    width: 300px;
    height: 300px;
    margin: 0 auto 15px;
    position: relative;
    border: 8px solid #103249;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 12px rgb(0 0 0 / 57%);
    transition: all 0.3s ease;
    background-color: #FFFFFF;
    box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 10px;
}
.elementor img.companyinfoimg{
    box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.15);
    border: 10px solid #fff;
    border-radius: 10px;
}
.photo-placeholder::after{
    content: "";
    width: 94%;
    height: 94%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    z-index: 111;
    transition: all 0.5s ease;
}
.photo-placeholder:hover{
    box-shadow: none;
    transform: scale(1.05);
}
.photo-placeholder:hover::after{
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
}

.photo-placeholder:not([style*="background-image"])::before,
.photo-placeholder:not([style*="background-image"])::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 2px;
    background-color: #bbb;
    transform-origin: center;
}

.photo-placeholder:not([style*="background-image"])::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.photo-placeholder:not([style*="background-image"])::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.team-member h3 {
    margin: 0;
    font-size: 20px !important;
    font-weight: bold;
    text-transform: uppercase;
}

.team-member p {
    margin: 5px 0 0;
    font-size: 18px;
    color: #666;
}

.load-more-container {
    margin-top: 60px;
    text-align: center;
}
.load-more-button {
    background-color: transparent;
    border: none;
    color: #6DBE4B;
    padding: 10px 10px;
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 2px;
    transition: color 0.3s, border-color 0.3s;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
}
.load-more-button::before, 
.load-more-button::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #000;
    display: block;
    width: 50px;
}

.load-more-button:hover {
    color: #000;
    border-color: #000;
}

.load-more-button.loading {
    cursor: not-allowed;
    opacity: 0.5;
}

.member-image img{
    border-radius: 100%;
    width: 300px;
    height: inherit;
    border: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 12px rgb(0 0 0 / 57%);
    background-color: #234083;
    box-shadow: 0px 4px 64px rgba(0, 0, 0, 0.15);
    border-radius: 18px;
    padding: 10px;
}
.member-name{
    font-size: 24px;
    color: #0065ae;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 0;
}
.member-position{
    margin-bottom: 10px;
    font-weight: bold;
    font-style: italic;
}
#team-container{
    display: flex;
    gap: 50px;
}
.linkedin-view{
    background: url(../images/linkedin-top.svg) no-repeat;
    padding: 10px 40px;
    background-position: left center;
    display: block;
    width: 130px;
    padding-right: 0;
    margin: 0 auto;
    margin-top: 10px;
    color: #223f80;
    transition: all .3s ease-in-out;
}
.linkedin-view:hover{
    transform: scale(1.2);
}
/** Team End **/