.about-company-section {
    --about-company-accent: #ff681f;
    --about-company-ink: #20232a;
    --about-company-muted: #777b84;
    --about-company-line: #dedede;
    --about-company-surface: #f7f7f7;
    --about-company-pattern: none;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 66px 0 82px;
    background: var(--about-company-surface);
}

.about-company-section::before,
.about-company-section::after {
    position: absolute;
    z-index: -2;
    content: "";
    pointer-events: none;
}

.about-company-section::before {
    inset: 0 auto 0 0;
    width: min(44vw, 760px);
    opacity: 0.6;
    background-image: var(--about-company-pattern);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.about-company-section::after {
    top: -95px;
    right: -120px;
    width: 690px;
    height: 910px;
    opacity: 0.23;
    transform: rotate(-17deg);
    background:
        repeating-linear-gradient(
            90deg,
            transparent 0 22px,
            rgba(174, 174, 174, 0.36) 23px 31px,
            transparent 32px 52px
        );
    clip-path: polygon(29% 0, 77% 0, 100% 100%, 0 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0 74%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0 74%, transparent 100%);
}

.about-company-section[style*="--about-company-pattern"]::after {
    display: none;
}

.about-company-container {
    position: relative;
    z-index: 2;
}

.about-company-grid {
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 1.16fr);
    grid-template-areas: "media content";
    align-items: center;
    gap: clamp(86px, 8vw, 132px);
}

.about-company-media {
    grid-area: media;
    min-width: 0;
}

.about-company-media-stage {
    position: relative;
    width: min(100%, 530px);
    min-height: 623px;
}

.about-company-main-card,
.about-company-secondary-card {
    margin: 0;
    overflow: hidden;
    background: #ddd;
}

.about-company-main-card {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-company-main-card img,
.about-company-secondary-card img,
.about-company-video-card img {
    display: block;
    object-fit: cover;
}

.about-company-main-card img {
    object-position: center;
}

.about-company-media-accent {
    position: absolute;
    z-index: 2;
    top: 39px;
    right: -39px;
    width: 18px;
    height: 195px;
    border-radius: 999px;
    background: var(--uicolor);
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.about-company-secondary-card {
    position: absolute;
    z-index: 3;
    right: -56px;
    bottom: 66px;
    border: 10px solid var(--about-company-surface);
    border-radius: 21px;
    box-shadow: 0 16px 32px rgba(20, 23, 30, 0.06);
}

figure.about-company-secondary-card:hover::before {
    -webkit-animation: shine 1s;
    animation: shine 1s;
}

figure.about-company-secondary-card::before {
    position: absolute;
    top: 0;
    left: -100%;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    transform: skewX(-25deg);
    transition: all 0.3s ease;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.about-company-content {
    grid-area: content;
    min-width: 0;
    text-align: start;
}

.about-company-eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #8c8e93;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.28em;
    line-height: 1.2;
    text-transform: uppercase;
}

.about-company-eyebrow-icon {
    display: inline-grid;
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    place-items: center;
    color: var(--uicolor);
}

.about-company-eyebrow-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-company-title {
    max-width: 650px;
    color: var(--about-company-ink);
    font-size: 30px;
    font-weight: 700;
}

.about-company-title-accent {
    color: var(--about-company-accent);
}

.about-company-description {
    max-width: 650px;
    margin-top: 32px;
    color: var(--about-company-muted);
    font-size: 16px;
    line-height: 1.85;
}

.about-company-description > :first-child {
    margin-top: 0;
}

.about-company-description > :last-child {
    margin-bottom: 0;
}

.about-company-feature-layout {
    margin-top: 30px;
}

.about-company-feature-layout--with-video {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 192px;
    align-items: center;
    gap: 19px;
}

.about-company-features {
    min-width: 0;
}

.about-company-feature {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 17px;
    align-items: start;
    padding: 16px 0 29px;
    border-bottom: 1px solid var(--about-company-line);
}

.about-company-feature + .about-company-feature {
    padding-top: 29px;
}

.about-company-feature:last-child {
    padding-bottom: 15px;
    border-bottom: 0;
}

.about-company-feature-icon {
    position: relative;
    display: grid;
    width: 68px;
    height: 68px;
    place-items: center;
    z-index: 0;
    color: var(--uicolor);
}

.about-company-feature:hover .about-company-feature-icon svg {
    transform: rotateY(180deg);
}

.about-company-feature-icon::before {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: 2px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    content: "";
}

.about-company-feature-icon svg {
    position: relative;
    z-index: 1;
    width: 57px;
    height: 57px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: 0.6s all ease;
}

.about-company-feature-copy h3 {
    margin: 3px 0 5px;
    color: var(--about-company-ink);
    font-size: 19px;
    font-weight: 650;
    line-height: 1.35;
}

.about-company-feature-copy > div {
    color: var(--about-company-muted);
    font-size: 16px;
    line-height: 1.8;
}

.about-company-feature-copy p {
    margin: 0;
}

.about-company-video-card {
    position: relative;
    display: flex;
    overflow: hidden;
    border-radius: 15px;
    background: #222;
    text-decoration: none;
    align-items: center;
    justify-content: center;
}

.about-company-video-card::after {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.08);
    content: "";
    transition: background 180ms ease;
}

.about-company-video-card:hover::after {
    background: rgba(0, 0, 0, 0.17);
}

.about-company-play-button {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: grid;
    width: 70px;
    height: 70px;
    transform: translate(-50%, -50%);
    place-items: center;
    border-radius: 50%;
    color: #20232a;
    border: none;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    transition: transform 180ms ease;
    cursor: pointer;
}

button.about-company-play-button.automart-video-gallery__trigger i {
    font-size: 20px;
}

span.about-company-play-button i {
    font-size: 25px;
}

.about-company-video-card:hover .about-company-play-button {
    transform: translate(-50%, -50%) scale(1.06);
}

.about-company-play-button svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
    stroke: none;
}

.about-company-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 34px;
}

.about-company-primary-action {
    flex: 0 0 auto;
}

.about-company-primary-action .--Parent-URL-BTN,
.about-company-primary-action .defult-butoon-phone {
    margin: 0;
}

.about-company-primary-action a,
.about-company-primary-action button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 6px 10px 6px 29px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #0d0e10;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.about-company-primary-action a > :last-child,
.about-company-primary-action button > :last-child,
.about-company-primary-action a svg,
.about-company-primary-action button svg {
    flex: 0 0 auto;
}

.about-company-primary-action a > span:last-child,
.about-company-primary-action button > span:last-child {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--about-company-accent);
}

.about-company-contact-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-company-contact-copy a:hover {
    color: var(--about-company-accent);
}

.about-company-side-decoration {
    position: absolute;
    z-index: 1;
    top: 302px;
    left: -26px;
    animation-name: float-bob-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.about-company-side-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px)
    }

    50% {
        transform: translateY(-10px)
    }

    to {
        transform: translateY(-20px)
    }
}

@media (max-width: 1400px) {
    .about-company-side-decoration {
    display: none;
}
}

@media (max-width: 1320px) {
    .about-company-grid {
        grid-template-columns: minmax(390px, 0.9fr) minmax(500px, 1.1fr);
        gap: 78px;
    }

    .about-company-secondary-card {
        right: -38px;
    }

    .about-company-title {
        font-size: clamp(39px, 3.7vw, 50px);
    }

    .about-company-contact-copy {
        font-size: 14px;
    }
}

@media (max-width: 1120px) {
    .about-company-section {
        padding-top: 82px;
    }

    .about-company-grid {
        grid-template-columns: minmax(340px, 0.82fr) minmax(460px, 1.18fr);
        gap: 62px;
    }

    .about-company-secondary-card {
        right: -28px;
        bottom: 45px;
        border-width: 8px;
    }

    .about-company-media-accent {
        right: -27px;
        height: 175px;
    }

    .about-company-feature-layout--with-video {
        grid-template-columns: minmax(0, 1fr) 160px;
    }

    .about-company-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .about-company-contact {
        flex: 0 1 auto;
        align-self: flex-start;
    }
}

@media (max-width: 900px) {
    .about-company-section {
        padding: 72px 0;
    }

    .about-company-grid {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
            "media"
            "content";
        gap: 64px;
    }

    .about-company-media-stage {
        width: min(88%, 570px);
        margin-inline: auto;
    }

    .about-company-secondary-card {
        right: -50px;
        bottom: 62px;
    }

    .about-company-media-accent {
        right: -34px;
    }

    .about-company-content {
        max-width: 700px;
        margin-inline: auto;
    }

    .about-company-title {
        max-width: 620px;
    }

    .about-company-side-decoration {
        display: none;
    }
}

@media (max-width: 640px) {
    .about-company-section {
        padding: 20px 0 20px;
    }

    .about-company-section::after {
        right: -310px;
    }

    .about-company-grid {
        gap: 28px;
    }

    .about-company-media-stage {
        width: calc(100% - 22px);
        min-height: 290px;
    }

    .about-company-main-card {
        border-radius: 16px;
    }

    .about-company-media-accent {
        display: none
    }

    .about-company-secondary-card {
        right: -14px;
        bottom: 28px;
        border-width: 7px;
        border-radius: 16px;
    }

    .about-company-eyebrow {
        margin-bottom: 14px;
        font-size: 11px;
        letter-spacing: 0.2em;
    }

    .about-company-title {
        font-size: clamp(34px, 10.2vw, 44px);
    }

    .about-company-description {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.75;
    }

    .about-company-feature-layout {
        margin-top: 0px;
    }

    .about-company-feature-layout--with-video {
        grid-template-columns: minmax(0, 1fr);
        gap: 15px;
    }

    .about-company-feature {
        grid-template-columns: 57px minmax(0, 1fr);
        gap: 13px;
        padding-bottom: 23px;
        text-align: right;
    }

    .about-company-feature + .about-company-feature {
        padding-top: 23px;
    }

.about-company-play-button {
    width: 50px;
    height: 50px;
}

    .about-company-feature-icon {
        width: 57px;
        height: 57px;
    }

    .about-company-feature-icon svg {
        width: 49px;
        height: 49px;
    }

    .about-company-feature-copy h3 {
        font-size: 15px;
    }

    .about-company-feature-copy > div {
        font-size: 13px;
        line-height: 1.7;
    }

    .about-company-actions {
        margin-top: 28px;
    }

    .about-company-primary-action,
    .about-company-primary-action .--Parent-URL-BTN,
    .about-company-primary-action a,
    .about-company-primary-action button {
        width: 100%;
    }

    .about-company-primary-action a,
    .about-company-primary-action button {
        justify-content: space-between;
    }

    .about-company-contact {
        width: 100%;
        padding-right: 16px;
        border-radius: 22px;
    }

    .about-company-contact-copy {
        flex-wrap: wrap;
        white-space: normal;
    }
}

@media (max-width: 767px) {
    .about-company-mobile-hidden {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-company-video-card::after,
    .about-company-play-button,
    .about-company-contact-copy a {
        transition: none;
    }
}

@media (max-width: 500px) {
    .about-company-content {
    text-align: center;
}

.about-company-eyebrow {
    justify-content: center;
}

.about-company-actions {align-items: center;}
}