/* TO DO - RESIZE IMAGE SMALLER */
.container {
    max-width: 1440px;
    margin: 100px auto;
   
   
}

.grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    font-family: 'Source Sans Pro', sans-serif;
   
    margin-top: 200px;
}
.card {
    grid-column: 1/3;
    display: flex;

    margin: 0px 20px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.provider-description {
    margin: 30px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
   
}
.provider-description p {
    color: black ;
    line-height: 1.5;
    margin: 30px 20px;
    font-size: 1.3rem;
}
.provider-profile {
    align-self: start;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

   
}





.provider-description h4 {
    line-height: 1.5;
    margin: 0px 20px;
    font-size: 1.5rem;
     
      font-family: 'Source Sans Pro', sans-serif;
      font-weight: 700;
    
}
.provider-description h2 {
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 2rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 700;
   
   
}


.provider-profile img {
    width: 300px;
    border-radius: 300px;
    margin: 10px;
}



hr {
    margin: 100px 20px;
    grid-column: 1/3;
    color: #5C5C5C ;
}

@media (max-width:768px) {
    .provider-profile, .provider-description {
        grid-column: 1/4;
        align-self: center;
        justify-self: center;
        /* align-items: center;
        justify-content: center;
        text-align: center; */
    }

    .card {
        flex-direction: column;
    }

    .provider-profile img {
        width: 270px;
        border-radius: 300px;
        margin: 10px;
    }
}
 p a {
    color: #B1100E;
    text-decoration: none;
 }
 h4 a {
    text-decoration: none;
    color: #B1100E;
 }