.text-dark-blue{
    color: #256093;
}

.initial{
    width: 5rem;
    height: .2rem;
    margin: 1rem auto;
    background-color: #fd9328;
    border-radius: 5rem;
}

body{
    background-color: #eaedf0;
}

.custom-card{
    background-color: #ffffff;
    height: 20rem;
    display: flex;
    gap: 1rem;
    border: none;
    border-radius: .3rem;
    overflow: hidden;
    cursor: pointer;
    transition-duration: .2s;
}

.custom-card:hover{
    scale: 1.05;
}

.img-cc{
    height: 100%;
    object-fit: cover;
}

.img-teams
{
    width: 15rem;
    height: 100%;
    object-fit: cover;
}

.max-1200{
    max-width: 1200px;
    margin: 0 auto;
}

.text-light-gray{
    color: #97a1a9;
    font-size: 14px;
}

.text-dark-gray{
    font-size: 18px !important;
    color: #595d63;
}

.div-img{
    width: 10rem;
    height: 10rem;
    overflow: hidden;
    border-radius: 50%;
    margin: 1rem auto;
}

.biography-container {
    max-height: 14rem;
    overflow: auto;
}

.rounded-photo{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.description{
    margin-top: 1rem;
    font-size: calc(1rem + .5vw) !important;
    color: #253848;
}

.header-section {
    max-width: 900px;
    margin: auto;
    padding: 10rem 0;
}

.header{
    background: linear-gradient(rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.66)), url('../img/teamwork.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (max-width: 992px) {
    .custom-card{
        display: grid;
        height: auto;
    }

    .custom-card section{
        padding: 1rem;
    }

    .img-teams{
        width: 100%;
    }

    .img-cc{
        height: 25rem;
    }

    button{
        margin-bottom: 1rem;
    }
}

@media (max-width: 700px) {
    .row-cols-1 > * {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .header-section{
        padding: 5rem 1rem;
    }
}