.hp-gray-about {
    position: relative;
    padding: 0;
    background-color: var(--gray);
    margin-top: 90px;
}
.hp-gray-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 100%;
    background-color: var(--white);
}
.hp-gray-about::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 100%;
    background-color: var(--white);
}
.hp-gray-about .container {
    padding-top: 100px;
    padding-bottom: 70px;
}
.hp-gray-about-heading {
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
}
.hp-gray-about-content p{
  color: var(--gray-text);
}
@media (max-width: 991px) {
    .hp-gray-about {
        margin-top: 40px;
        background-color:var(--white);
    }
    .hp-gray-about::before, .hp-gray-about::before {
        display: none;
    }
    .hp-gray-about .container {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .hp-gray-about-heading {
        font-size:40px;
    }
    .hp-gray-about-content {
        padding-bottom: 40px;
        border-bottom: 1px solid var(--gray-text);
    }
    .hp-gray-about-cta-row {

    }
}