main {
    overflow-x: hidden
}

.hero-about {
    background: linear-gradient(var(--gray-light), var(--gray-light)), url(https://hondasanjaya.com/1ChOITM0IU5DOwg=/img/Sanjaya%20Motor.webp) no-repeat center center;
    background-size: cover;
    padding: 6rem 0;
    color: var(--white)
}

.hero-about h1 {
    font-size: clamp(2.5rem, 1.5rem + 5vw, 4rem)
}

.hero-about .lead {
    font-size: clamp(1.2rem, 1rem + 1vw, 1.5rem);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.timeline {
    list-style: none;
    padding: 20px 0;
    position: relative
}

.timeline:before {
    top: 0;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 3px;
    background-color: var(--gray-bg);
    left: 50%;
    margin-left: -1.5px
}

.timeline>li {
    margin-bottom: 20px;
    position: relative
}

.timeline>li:after,
.timeline>li:before {
    content: " ";
    display: table
}

.timeline>li:after {
    clear: both
}

.timeline>li .timeline-panel {
    width: 46%;
    float: left;
    border: 1px solid var(--gray-d4);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    box-shadow: var(--shadow-black-05);
    background-color: var(--white)
}

.timeline>li .timeline-panel:before {
    position: absolute;
    top: 26px;
    right: -15px;
    display: inline-block;
    border-top: 15px solid transparent;
    border-left: 15px solid var(--gray-d4);
    border-right: 0 solid var(--gray-d4);
    border-bottom: 15px solid transparent;
    content: " "
}

.timeline>li .timeline-panel:after {
    position: absolute;
    top: 27px;
    right: -14px;
    display: inline-block;
    border-top: 14px solid transparent;
    border-left: 14px solid var(--white);
    border-right: 0 solid var(--white);
    border-bottom: 14px solid transparent;
    content: " "
}

.timeline>li .timeline-badge {
    color: var(--white);
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.2rem;
    text-align: center;
    position: absolute;
    top: 16px;
    left: 50%;
    margin-left: -25px;
    background-color: var(--brand-red);
    z-index: 100;
    border-radius: 50%;
    font-weight: 700
}

.timeline>li.timeline-inverted .timeline-panel {
    float: right
}

.timeline>li.timeline-inverted .timeline-panel:before {
    border-left-width: 0;
    border-right-width: 15px;
    left: -15px;
    right: auto
}

.timeline>li.timeline-inverted .timeline-panel:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto
}

.timeline-heading h4 {
    margin-top: 0;
    color: inherit;
    font-size: 1.2rem;
    font-weight: 600
}

.timeline-body>p,
.timeline-body>ul {
    margin-bottom: 0;
    color: var(--gray-text)
}

.team-member {
    text-align: center;
    margin-bottom: 2rem
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-black-1-team);
    transition: transform .3s
}

.team-member:hover img {
    transform: scale(1.05)
}

.team-member h5 {
    margin-bottom: .25rem;
    font-weight: 600;
    color: var(--dark-text)
}

.team-member p {
    color: var(--gray-text);
    font-weight: 500
}

@media (max-width:767px) {
    .timeline:before {
        left: 40px
    }

    .timeline>li .timeline-panel {
        width: calc(100% - 90px);
        width: -moz-calc(100% - 90px);
        width: -webkit-calc(100% - 90px);
        float: right
    }

    .timeline>li .timeline-panel:before {
        border-left-width: 0;
        border-right-width: 15px;
        left: -15px;
        right: auto
    }

    .timeline>li .timeline-panel:after {
        border-left-width: 0;
        border-right-width: 14px;
        left: -14px;
        right: auto
    }

    .timeline>li .timeline-badge {
        left: 15px;
        margin-left: 0;
        top: 16px
    }
}