/*# sourceMappingURL=style.css.map */
@media (max-width: 600px) {
    .about-holder {
        width: 370px !important;
    }

    .person-holder {
        width: 175px !important;
    }

    .person-holder .imgBox {
        width: 175px !important;
        height: 170px !important;
    }

    .title {
        width: 370px !important;
    }

    .name {
        font-size: 18px !important;
    }

    .pronouns {
        font-size: 12px !important;
    }

    .email {
        font-size: 12px !important;
    }

    .role {
        font-size: 12px !important;
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .type {
        font-size: 15px !important;
        padding-left: 10px !important;
    }

    .address {
        font-size: 13px !important;
        padding-right: 10px !important;
    }

}

@media (max-width: 400px) {

    .person-holder {
        width: 170px !important;
    }

    .person-holder .imgBox {
        width: 170px !important;
        height: 170px !important;
    }

}

.about-holder {
    width: 550px;
    flex-direction: row;
    /* or column if you want vertical alignment */
    align-items: flex-start;
}

.person-holder {
    box-shadow: rgba(0, 0, 0, 0.20) 0px 0px 10px;
    border-radius: 10px;
    margin-top: 10px;
    width: 270px;
}

.person-holder .imgBox {
    position: relative;
    display: inline-block;
    width: 270px;
    /* Set the desired width for your box */
    height: 250px;
    /* Set the desired height for your box */
    overflow: hidden;
    /* Clip the image that exceeds the container */
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.person-holder img {
    opacity: 0.9;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 0;
}

.person-holder .text-holder {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
}

.person-holder .text-holder .name {
    font-weight: 700;
    font-size: 22px;
    padding-top: 10px;
    letter-spacing: -0.5px;
    line-height: 15px;
}

.person-holder .text-holder .pronouns {
    font-weight: 400;
    font-size: 14px;
    color: #454545;
}

.person-holder .text-holder .roleBox {
    padding-top: 5px;
    line-height: 15px;
}

.person-holder .text-holder .role {
    background: #ba1f1f;
    color: white;
    font-weight: 500;
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 7px;
}

.person-holder .text-holder .email {
    font-weight: 400;
    font-size: 14px;
    color: #454545;
    padding-top: 3px;
    padding-bottom: 20px;
}

.about-txt {
    width: 550px;
    font-weight: 800;
    font-size: 60px;
    line-height: 80px;
}

.desc-txt {
    width: 550px;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.foot-txt {
    width: 550px;
    font-weight: 300;
    font-size: 15px;
    padding-top: 40px;
    padding-bottom: 10px;
}

.foot-txt a {
    color: #ba1f1f;
    font-weight: 500;
}

.foot-txt a:hover {
    color: red;
}

.contact-txt {
    width: 550px;
    font-weight: 700;
    font-size: 35px;
    line-height: 60px;
}

.staff-txt {
    width: 550px;
    font-weight: 700;
    font-size: 35px;
    line-height: 50px;
}

.contactTbl {
    width: 550px;
}

.contactTbl div {
    padding-top: 3px;
}

.contactTbl div .type {
    border-radius: 10px 0 0 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #d7d7d7;
    width: 40%;
    font-weight: 500;
    font-size: 17px;
    padding-left: 20px;
    padding-right: 15px;
}

.contactTbl div .address {
    border-radius: 0 10px 10px 0;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #efefef;
    width: 60%;
    font-weight: 500;
    font-size: 17px;
    padding-right: 20px;
    text-align: right;
    color: #ba1f1f;
}