.new-opportunity {
    width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 17px;
}

.new-opportunity-heading-text {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 17px 0px 0px 17px;
}

.new-opportunity-heading-text p {
    color: #D62049;
    font-size: 14px;
    margin-bottom: 0;
    font-weight: bold;
}

.new-opportunity-description {
    border-radius: 0px 17px 17px 0px;
    background-color: #0073BB;
}

.new-opportunity-description p {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0;
}

@media only screen and (max-width: 620px) {
    .new-opportunity-heading-text p {
        font-size: 10px;
    }
    .new-opportunity-description p {
        font-size: 10px;
    }
}
@media only screen and (min-width: 620px) and (max-width: 767px)  {
    .new-opportunity-heading-text p {
        font-size: 12px;
    }
}