.linkedLink {
    color: white;
}

.linkedLink:hover {
    color: #007bff;
}

.core_title {
    /* letter-spacing: 1px; */
    font-weight: 900;
    color: #145889;
    margin-bottom: 10px;
    margin-top: 30px;
}

.section-team {
    font-family: "Poppins", sans-serif;
    padding: 80px 0;
}

.section-team .header-section {
    margin-bottom: 50px;
}

.section-team .header-section .small-title {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #3e64ff;
}

.section-team .header-section .title {
    font-weight: 700;
    font-size: 45px;
}

.section-team .single-person {
    margin-top: 10px;
    padding: 30px;
    background-color: #f6f9ff;
    border-radius: 5px;
    /*transition: 3s ease-in-out;*/
    transition: 0.3s;
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 1.5px solid #e1e1e1;
    min-height:380px;
}


.section-team .single-person:hover {
    background: linear-gradient(to right, #016cec, #00b5f7);
}

.section-team .single-person .person-image {
    position: relative;
    margin-bottom: 50px;
    border-radius: 50%;
    border: 4px dashed transparent;
    transition: padding .3s;
    height: 200px;
    overflow: hidden;
    width: 200px;
    display:flex;
}

.section-team .single-person:hover .person-image {
    padding: 10px;
    border: 4px dashed #fff;
}

.section-team .single-person .person-image img {
    width: 100%;
    border-radius: 50%;
}

.section-team .single-person .person-image .icon {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(to right, #016cec, #00b5f7);
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    display:none;
}

.section-team .single-person:hover .person-image .icon {
    background: none;
    background-color: #fff;
    color: #016cec;
}

.section-team .single-person:hover .person-image .icon a {
    background: none;
    background-color: #fff;
    color: #016cec;
}

.section-team .single-person .person-info .full-name {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
}

.section-team .single-person .person-info .speciality {
    font-size: 13px;
    color: #016cec;
    letter-spacing: 1px;
}

.section-team .single-person:hover .full-name,
.section-team .single-person:hover .speciality {
    color: #fff;
}