.banner {
    width: 100%;
    height: 550px;
    margin: auto;
    max-width: 2000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px;
}

.bannerImg {
    width: 50%;
    height: 100%;
}

.bannerImg img {
    width: 100%;
    height: 100%;
}

.bannercenten p {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}

.bannerTxt {
    width: 50%;
    height: 100%;
    background-color: #fbf9ee;
    padding: 100px;
}

.bannerTxt p:nth-child(1) {
    font-size: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.bannerTxt p:nth-child(2):hover {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: gray;

}

.bannerTxt p:nth-child(1):hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bannerTxt p:nth-child(2) {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.5;
    color: gray;
}

.bannerTxt p {
    width: 100%;
    height: auto;
}

@media screen and (max-width:960px) {


    .banner {
        height: auto !important;
        background-color: #FFFFFF;
        width: 95%;
    }

    .bannerImg {
        width: 100%;
    }

    .bannerTxt {
        width: 100%;
    }

    .bannerTxt {
        padding: 10px;
    }

    .bannerTxt p:nth-child(2) {
        font-size: 14px;
    }

    .bannerTxt p:nth-child(1) {
        font-size: 20px;
        margin-top: 20px;
    }

    .bannerImg img {
        height: 260px;
    }
}