br {
    height: 0px;
}

.bannerSection {
    background: url("../images/meet_our_doctors_injury_doctors_nyc.jpg");
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    height: 50vh;
}

.bannerSection .contain {
    display: grid;
    grid-template-columns: 60% 40%;
    padding: 0 150px;
    height: 100%;
}

.bannerSection .infoContain {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bannerSection .nameContain {
    width: fit-content;
}

.bannerSection .nameContain h2 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    color: white;
    margin-left: 7%;
}

.bannerSection .nameContain h1 {
    font-size: 80px;
    font-weight: 600;
    line-height: .8;
    color: white;
}

.bannerSection .nameContain h1 span {
    font-size: 100px;
}

.bannerSection .nameContain p {
    font-size: 30px;
    text-align: right;
    font-weight: 600;
    color: white;
    margin: 20px 0;
}

.bannerSection .locationContain {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.bannerSection .locationContain i {
    font-size: 30px;
    color: #ff9000;
    margin-right: 20px;
}

.bannerSection .locationContain a {
    font-size: 16px;
    font-weight: 400;
    color: white;
    transition: .25s;
}

.bannerSection .locationContain a:hover {
    color: #ff9000;
}

.bannerSection .imageContain {
    position: relative;
}

.bannerSection .imageContain img {
    width: 60%;
    border-radius: 100%;
    border: 10px solid white;
    position: absolute;
    bottom: 0;
    transform: translate(50%, 50%);
    box-shadow: 0px 10px 15px 5px rgba(0, 0, 0, 0.1);
    transition: .25s;
}

.bannerSection .imageContain img:hover {
    transform: translate(50%, 50%) scale(1.05);
}

.drbioSection {
    padding: 100px 150px;
}

.drbioSection h2{
    font-size: 30px;
    color: #002d4e;
}

.drbioSection .firstparagraph {
    width: 65%;
}

.recognitionSection {
    background: #e9e9e9;
    padding: 100px 150px;
}

.recognitionSection .contain {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.recognitionSection .recognitionTitle {
    display: flex;
    align-items: center;
    position: relative;
}

.recognitionSection .recognitionTitle img {
    width: 15%;
    border: 5px solid white;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    transition: .25s;
    cursor: pointer;
}

.recognitionSection .recognitionTitle img:hover {
    transform: scale(1.05);
}

.recognitionSection .recognitionTitle h2 {
    position: absolute;
    background: #002d4e;
    color: white;
    padding: 10px 20px 10px 120px;
    border-radius: 50px;
}

.recognitionSection .recognitionInfo li {
    margin: 10px 0;
}

@media (max-width: 996px) {
    .bannerSection {
        background-position: bottom;
        height: 50vh;
    }
    .bannerSection .contain {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    .bannerSection .infoContain {
        margin-bottom: 50px;
        align-items: center;
    }
    .bannerSection .nameContain h2 {
        font-size: 20px;
    }
    .bannerSection .nameContain h1 {
        font-size: 40px;
    }
    .bannerSection .nameContain h1 span {
        font-size: 55px;
    }
    .bannerSection .nameContain p {
        font-size: 20px;
        text-align: right;
        font-weight: 600;
        color: white;
        margin: 10px 0;
    }
    .bannerSection .locationContain {
        display: grid;
        margin-top: 0;
    }
    .bannerSection .locationContain i {
        text-align: center;
        margin: 10px 0;
    }
    .bannerSection .locationContain a {
        text-align: center;
    }
    .bannerSection .imageContain {
        position: relative;
    }
    .bannerSection .imageContain img {
        left: 50%;
        transform: translate(-50%, 75%);
    }
    .bannerSection .imageContain img:hover {
        transform: translate(-50%, 55%) scale(1.05);
    }
    .drbioSection {
        padding: 230px 20px 30px 20px;
    }
    .drbioSection h2{
        font-size: 20px;
        text-align: center;
    }
    .drbioSection .firstparagraph {
        width: 100%;
        text-align: center;
    }
    .drbioSection p {
        text-align: center;
    }
    .recognitionSection {
        padding: 30px 20px;
        font-size: 14px;
    }
    .recognitionSection .contain {
        grid-template-columns: 1fr;
    }
    .recognitionSection .recognitionTitle img {
        width: 25%;
    }
    .recognitionSection .recognitionTitle h2 {
        font-size: 15px;
    }
    .recognitionSection .recognitionInfo ul {
        padding-left: 20px;
    }
}