.about-us section {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 78px;
}

.about-us > section:first-child {
    margin-top: 101px;
}

.about-us section.double-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 27px;
}

.about-us h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 132%;
    margin-bottom: 7px;
}

.about-us section.double-column h1 {
    grid-column: 1 / 3;
}

.about-us ul {
    list-style-type: none;
}

.about-us ul li {
    margin-left: 10px;
    padding-left: 14px;
    position: relative;
}

.about-us ul li::before {
    content: "■";
    font-size: 5px;
    vertical-align: middle;
    position: absolute;
    left: 0;
}

.about-us .certification img {
    margin-top: 29px;
    margin-bottom: 24px;
}

.about-us .dealerships {
    position: relative;
    margin-top: 136px;
}

.about-us .dealerships-info {
    position: absolute;
    top: 55px;
    right: 47px;
    background-color: #FFF;
    border-radius: 4px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    width: 612px;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.about-us .dealerships h1 {
    margin-bottom: 3px;
}

.about-us .dealerships a {
    margin-top: 16px;
}

.dealerships .image-slider picture {
    grid-area: image;
}

.dealerships .image-slider img {
    grid-area: auto;
}

.about-us .vmv {
    margin-top: 196px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 69px;
    padding: 0 46px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.about-us .vmv video,
.about-us .vmv img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.about-us .vmv h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 132%;
    color: var(--color-accent);
    margin-bottom: 3px;
    margin-top: 27px;
}

.about-us .vmv .image-slider-navigation {
    display: none;
}

.about-us .axis {
    margin-top: 185px;
    padding-top: 69px;
    position: relative;
    height: 865px;
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: 132%;
}

.about-us .axis img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.about-us .axis h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 132%;
}

.about-us .axis-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 68px 28px;
    margin-top: 299px;
}

.about-us .axis h2 {
    font-size: 24px;
    font-weight: 700;
    line-height: 132%;
    margin-bottom: 3px;
}

.about-us .timeline {
    width: 100%;
    height: 650px;
    margin-top: 101px;
    display: grid;
    padding-bottom: 25px;
    position: relative;
    --1982-opacity: 1;
    --2024-opacity: 0;
}

.about-us .timeline img {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

.about-us .timeline img.image-1982 {
    opacity: var(--1982-opacity, 1);
}

.about-us .timeline img.image-2024 {
    opacity: var(--2024-opacity, 1);
}

.about-us .timeline-scroll {
    display: flex;
    place-items: center;
    overflow-x: auto;
}

.about-us .timeline-scroll::-webkit-scrollbar-track {
    margin: 200px;
}

.about-us .timeline-items {
    display: flex;
    place-items: start;
    padding-left: 200px;
    padding-right: 200px;
    padding-top: 100px;
}

.about-us .timeline-item {
    width: 290px;
    flex: 0 0 290px;
    border-left: 1px solid var(--color-text);
    border-top: 1px dashed var(--color-text);
    white-space: normal;
    font-size: 14px;
    font-weight: 300;
    line-height: normal;
    padding-top: 40px;
    padding-left: 10px;
    padding-right: 80px;
    position: relative;
}

.about-us .timeline-item:first-child {
    width: 201px;
    flex: 0 0 201px;
    border: none;
    padding-top: 0;
    margin-top: -15px;
}

.about-us .timeline-item:first-child svg {
    width: 123px;
    fill: var(--color-accent);
}

.about-us .timeline-item:first-child::before {
    display: none;
}

.about-us .timeline-item:last-child {
    border-top: none;
    width: auto;
    flex: auto;
    padding-right: 0;
    white-space: nowrap;
    max-width: 290px;
}

.about-us .timeline-item::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-accent);
}

.about-us .timeline-item h1 {
    font-size: 36px;
    font-weight: 300;
    line-height: normal;
    color: var(--color-accent);
}

@media (max-width: 919px) {
    .content {
        padding: 0 90px;
    }

    .about-us > section:first-child {
        margin-top: 90px;
    }

    .about-us .timeline {
        margin-top: 90px;
    }

    .about-us section.double-column {
        margin-top: 50px;
        grid-template-columns: 1fr;
    }

    .about-us section.double-column h1 {
        grid-column: auto;
    }

    .about-us .certification {
        margin-top: 37px;
    }

    .about-us .certification img {
        margin-top: 19px;
        margin-bottom: 25px;
    }

    .about-us .dealerships {
        margin-top: 239px;
    }

    .about-us .dealerships-info {
        top: -138px;
        right: 0;
        left: 0;
        margin: 0 auto;
        box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.25);
    }

    .about-us .vmv {
        margin-top: 0;
        grid-template-columns: 1fr;
        grid-template-areas: "image";
        gap: 69px;
        margin-bottom: 90px;
        padding: 90px 64px 34px;
        position: relative;
    }

    .about-us .vmv section {
        margin-top: 0;
        grid-area: image;
        opacity: 0;
        cursor: pointer;
    }

    .about-us .vmv section.active {
        opacity: 1;
        transition: opacity var(--transition-duration) linear;
    }

    .about-us .vmv video {
        display: block;
        margin: 0 auto 26px;
    }

    .about-us .vmv .image-slider-navigation {
        bottom: 0;
        display: grid;
    }

    .about-us .axis {
        margin-top: 0;
        padding-top: 73px;
        height: 929px;
    }

    .about-us .axis-list {
        gap: 73px 34px;
        margin-top: 235px;
    }

    .about-us .axis h2 {
        font-size: 24px;
        font-weight: 700;
        line-height: 132%;
        margin-bottom: 3px;
    }
}

@media (max-width: 743px) {
    .content {
        padding: 0 32px;
    }

    .about-us > section:first-child {
        margin-top: 64px;
    }

    .about-us .timeline {
        margin-top: 67px;
    }

    .about-us .timeline-items {
        padding-left: 40px;
        padding-right: 40px;
    }

    .about-us .timeline-scroll::-webkit-scrollbar-track {
        margin: 40px;
    }

    .about-us section.double-column {
        margin-top: 66px;
    }

    .about-us .certification {
        margin-top: 33px;
    }

    .about-us .certification img {
        margin-top: 10px;
    }

    .about-us .dealerships {
        margin-top: 200px;
    }

    .dealerships .image-slider img {
        height: 430px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .about-us .dealerships-info {
        top: -101px;
        right: 20px;
        left: 20px;
        width: auto;
    }

    .about-us .vmv {
        margin-bottom: 114px;
        padding: 114px 15px 34px;
    }

    .about-us .vmv section h1,
    .about-us .vmv section p {
        padding: 0 17px;
    }

    .about-us .axis {
        padding-top: 64px;
        height: 886px;
    }

    .about-us .axis-list {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 170px;
    }
}