/* .title{
    text-align: center;
    text-transform: uppercase;
    color: var(--hover-eff);
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
} */

.leaders{
    width: 100%;
    /* margin: auto; */
    margin-top: 30px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: repeat(5, minmax(100px, 1fr));
    gap: 20px;
    justify-content: end;
}

.leader{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid darkgray;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.leader img{
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 10px;
}

.leader h2{
    color: var(--hover-eff);
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.leader p{
    color: var(--theme-color);
    font-size: 16px;
    text-align: center;
}

.leader p.position {
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.leader p.email {
    color: var(--theme-color);
    font-size: 11px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 90%;
    white-space: normal;
    margin: 5px auto 0;
}

@media screen and (max-width:1100px)
{
    .leaders{
        grid-template-columns: repeat(1, minmax(300px, 1fr));
    }
    
}

@media screen and (max-width:800px)
{
   
}

@media screen and (max-width:380px)
{
  
}