/*----- Standard Header -----*/
#standard-header{
    background: linear-gradient(to right, var(--dark-gray), var(--lighter-gray), var(--light-gray));
    height: 180px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#standard-header h1{
    text-transform: uppercase;
    font-weight: bold;
    color: var(--blue);
    font-size: 7vmin;
}

/*----- Standard Sub Header -----*/
#standard-sub-header{
    padding: 10px;
}
#standard-sub-header h1{
    text-transform: uppercase;
    text-align: center;
    font-weight: bold;
    color: var(--blue);
    font-size: 5vmin;
}
#standard-sub-header hr{
    border: 0;
    height: 1px;
    width: 90%;
    margin: auto;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

/*----- Pastors -----*/
.pastors-container{
    padding: 100px 5% 10px;
}
.pastors-card{
    background-color: var(--lighter-gray);
    min-height: 500px;
    width: 82%;
    margin-bottom: 200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.pst-image-thumbnail{
    height: 150px;
    width: 150px;
    position: absolute;
    top: -80px;
    left: calc(50% - 75px);
}
.pst-image-thumbnail img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.pst-top-text{
    text-align: center;
    padding: 90px 0 10px;
}
.pst-top-text .name{
    font-size: 17px;
    font-weight: bold;
    color: var(--blue);
}
.pst-top-text p{
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 30px;
}
.pst-top-text hr{
    border: 0; 
    width: calc(10% + 20px);
    height: 3px; 
    margin: auto;
    background-color: var(--green);
}
.pst-bottom-text{
    padding: 0 20px 10px 20px;
    margin-top: 5px;
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    color: var(--black);
}
