.bannerSection {
    background: url("../images/meet_our_doctors_injury_doctors_nyc.jpg");
    background-size: cover;
    background-attachment: fixed;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bannerSection h1 {
    font-family: "Baskervville";
    font-size: 100px;
    font-weight: 100;
    line-height: .8;
    text-align: center;
    color: white;
}

.bannerSection h1 span {
    font-family: "Baskervville";
    font-size: 150px;
    font-weight: 100;
    line-height: .8;
    text-align: center;
    color: white;
}

.bannerSection h2 {
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    color: white;
    margin-top: 30px;
}

.doctorsSection {
    background: #e9e9e9;
    padding: 100px 150px;
}

.doctorsSection .row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 50px
}

.doctorsSection .card {
    background: white;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 10px 15px 5px rgba(0, 0, 0, 0.2);
    transition: .25s;
    cursor: pointer;
}

.doctorsSection .card:hover {
    transform: scale(1.05) translateY(-10px);
}

.doctorsSection .imageContain {
    height: 300px;
    position: relative;
}

.doctorsSection .card:nth-child(1) .imageContain {
    background: url("../images/location_01_background_injury_doctors_nyc.jpg");
    background-size: cover;
    background-position: center bottom;
}

.doctorsSection .card:nth-child(2) .imageContain {
    background: url("../images/location_02_background_injury_doctors_nyc.jpg");
    background-size: cover;
    background-position: center bottom;
}

.doctorsSection .card:nth-child(3) .imageContain {
    background: url("../images/location_03_background_injury_doctors_nyc.jpg");
    background-size: cover;
    background-position: center bottom;
}

.doctorsSection .card:nth-child(4) .imageContain {
    background: url("../images/location_04_background_injury_doctors_nyc.jpg");
    background-size: cover;
    background-position: center bottom;
}

.doctorsSection .card:nth-child(5) .imageContain {
    background: url("../images/location_05_background_injury_doctors_nyc.jpg");
    background-size: cover;
    background-position: center bottom;
}

.doctorsSection .card:nth-child(6) .imageContain {
    background: url("../images/location_06_background_injury_doctors_nyc.jpg");
    background-size: cover;
    background-position: center bottom;
}

.doctorsSection .imageContain img {
    position: absolute;
    z-index: 2;
    width: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid white;
    border-radius: 100%;
    box-shadow: 0px 10px 15px 5px rgba(0, 0, 0, 0.2);
    transition: .15s;
}

.doctorsSection .imageContain img:hover {
    transform: translate(-50%, -10px);
}

.doctorsSection .card:hover .imageContain img {
    border: 0px solid white;
}

.doctorsSection .divider {
    position: absolute;
    bottom: 0;
    background: white;
    width: 100%;
    height: 200px;
    transform: skewY(-20deg) translateY(50%);
    transition: .25s;
}

.doctorsSection .bioContain {
    position: relative;
    z-index: 1;
    padding: 20px;
    text-align: center;
}

.doctorsSection .bioContain h2 {
    color: #002d4e;
    font-size: 25px;
    font-weight: 600;
    transition: .25s;
}

.doctorsSection .card:hover .bioContain h2 {
    color: #ff9000;
}

.doctorsSection .bioContain .degree {
    color: #002d4e;
    font-size: 18px;
    font-weight: 600;
}

.doctorsSection .card:hover .bioContain .degree {
    color: #002d4e;
}


.doctorsSection .bioContain i {
    color: #ff9000;
    font-size: 24px;
    margin: 10px;
}

.doctorsSection .bioContain p {
    font-weight: 500;
    font-size: 14px;
}

.doctorsSection .bioContain button {
    background-color: #002d4e;
    color: white;
    border: 0;
    padding: 5px 30px;
    margin-top: 20px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: .25s;
}

.doctorsSection .bioContain button:hover {
    background-color: #ff9000;
    color: white;
}

@media (max-width: 996px) {
    .bannerSection {
        background-attachment: initial;
        height: 40vh;
    }
    .bannerSection h1 {
        font-size: 40px;
    }
    .bannerSection h1 span {
        font-size: 70px;
    }
    .bannerSection h2 {
        font-size: 15px;
        margin-top: 15px;
        padding: 0 40px;
    }
    .doctorsSection {
        padding: 30px;
    }
    .doctorsSection .row {
        grid-template-columns: 1fr;
    }
    .doctorsSection .imageContain {
        height: 250px;
    }
    .doctorsSection .divider {
        transform: skewY(-10deg) translateY(50%);
    }
    .doctorsSection .bioContain h2 {
        font-size: 22px;
    }
    .doctorsSection .bioContain .degree {
        font-size: 16px;
    }
    .doctorsSection .bioContain p {
        margin: 10px;
    }
}