.about-us-heading {
    text-align: center;
    background:url(../images/about-herobg.svg);
    background-size: 100% auto;
    background-position: center;
    padding: 40px 0;
    background-repeat: no-repeat;
}
.about-us-heading h1 {
    margin-bottom: 30px;
}
.about-us-heading img {
    width: 340px;
    image-rendering: -webkit-optimize-contrast;
}
.about-box {
    margin-top: 120px;
    padding: 0 50px 80px;
    border-radius: 40px;
    background-image: linear-gradient(to bottom, #1D1D1D, #000000);
}
.about-box h2 {
    margin-top: 40px;
    margin-bottom: 30px;
}
.about-box img {
    width: 177px;
    margin-top: -90px;
}
.our-team {
    padding-top: 40px;
    padding-bottom: 80px;
}
.our-team-heading {
    max-width: 842px;
    margin-bottom: 50px;
}
.our-team-heading h2 {
    margin-bottom: 30px;
}
.our-team-row img {
    transition: all .3s ease; 
}
.our-team-row img:hover {
    filter: grayscale(1);
}
.our-team-row h4 {
    margin-top: 30px;
    margin-bottom: 20px;
}
.our-team-row > div {
    position: relative;
}
.our-team-row > div::before {
    position: absolute;
    content: '';
    width: calc(var(--bs-gutter-x) * .5 * 2);
    left: 100%;
    margin-left: calc(var(--bs-gutter-x) * .5 * -1);
    height: 1px;
    background-color: #3A3A3A;
    top: 87px;
    pointer-events: none;
}
.our-team-row > div:last-of-type::before {
    display: none;
}

@media(max-width:991px){
    .our-team-row > div::before {
        display: none;
    }
    .about-box {
        margin-top: 60px;
    }
    .about-box img {
        width: 120px;
        margin-top: -60px;
    }
}

@media(max-width:767px){
    .our-team {
        padding-bottom: 40px;
    }
    .about-us-heading {
        background: none;
    }
    .our-team-heading {
        margin-bottom: 20px;
    }
    .about-box img {
        width: 100px;
        margin-top: -50px;
    }
    .about-box {
        padding: 0 30px 40px;
    }
    .our-team-row h4 {
        margin: 20px 0 10px;
    }
}