.heading {
    margin-bottom:5%;
    display: flex;
    justify-content: start;
    max-height: 300px;    
}

.heading div {
    width: 50%;
    padding:0;
    margin:0;
    background-color: #fff;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.heading-photo img {
    width: 100%;
    height:100%;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.heading-text {
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.heading-text p {
    font-size: 30px;
    padding:12%;
}

h1 {
    font-size: 30px;
    padding: 12%;
}

h1 span {
    font-weight: 400;
}

h2 {
    color: #007bff;
    font-size: 22px;
}

@media only screen and (max-width: 796px) {
    .heading-text p {
        font-size: 22px;
        padding:12%;
    }

    .heading-text h1 {
        font-size: 24px;
        padding:12%;
    }

    h2 {
        font-size: 20px;
    }
  }