.about-us-section .about-us-header {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
}
.about-us-section .about-us-title {

}
.about-us-section .about-us-content {
    width: 63.4%;
    margin-left: auto;
    margin-top: 38px;
    margin-bottom: 55px;
}
.about-us-section .about-us-image {
    margin-bottom: 98px;
}
.about-us-section .about-us-image img {
    width: 100%;
}
.about-us-section .about-us-highlights {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 100px;
      margin-left: 35px;
      margin-right: 35px;
      margin-bottom: 100px;
      padding: 0 15px;
}
.about-us-section .about-us-highlight-box {
    border-top: 1px solid transparent;
    display: flex;
    gap: 15px;
    padding: 20px 15px 20px 0;
    position: relative;
    --line-progress: 0;
}
/* .about-us-section .about-us-highlight-box::after, */
.about-us-section .about-us-highlight-box::before
{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 0px;
    left: 0px;
    background: #C1C1C1;
    -webkit-transform: scaleX(var(--line-progress));
    -ms-transform: scaleX(var(--line-progress));
    transform: scaleX(var(--line-progress));
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    /* No transition - will be controlled by JavaScript */
}
/* .about-us-section .about-us-highlight-box::after{
    height: 2px;
    background: #00BBD4;
    -webkit-transition: -webkit-transform 0.6s linear;
    transition: -webkit-transform 0.6s linear;
    -o-transition: transform 0.6s linear;
    transition: transform 0.6s linear;
    transition: transform 0.6s linear, -webkit-transform 0.6s linear;
}
.about-us-section .about-us-highlight-box.counter-run:hover::after{
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
} */
.about-us-section .highlight-content{
    width: 338px;
    max-width: calc(100% - 150px);
}
.about-us-section .highlight-title {
    margin-bottom: 10px;
    font-family: Roboto Condensed;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: #3D4761;
}
.about-us-section .highlight-number {
    font-size: 80px;
    color: #00BBD4;
    margin-bottom: 14px;
}
.about-us-section .highlight-icon{
    /* width: 130px; */
    align-self: start;
    margin-left: auto;
    padding-top: 30px;
}
.about-us-section .highlight-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.about-us-section .highlight-desc {
    z-index: 2;
    position: relative;
}
@media (max-width: 1023.95px) {
    .about-us-section .about-us-highlights {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 767.95px) {
    .about-us-section .about-us-highlights {
        display: block;
        margin: auto;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 50px;
    }
    .about-us-section .about-us-highlight-box {
        margin-bottom: 30px;
    }
    .about-us-section .about-us-content{
        width: 100%;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .about-us-section .about-us-image{
        border-radius: 0;
        margin-bottom: 60px;
    }
    .about-us-section .highlight-title{
        font-family: Roboto Condensed;
        font-weight: 700;
        font-size: 20px;
        line-height: 25px;
    }
    .about-us-section .highlight-number{
        font-size: 60px;
    }
    .about-us-section .highlight-content{
        width: 100%;
        max-width: 100%;
    }
    .about-us-section .highlight-icon{
        position: absolute;
        width: 66px;
        right: 0;
        top: 40px;
    }
}