*,
*::before,
*::after {
    box-sizing: border-box;
}

.about-preview {
    width: 100%;
    overflow: hidden;
    color: #202429;
    background: #ffffff;
}

.about-container {
    width: min(100% - 80px, 1450px);
    margin-right: auto;
    margin-left: auto;
}

/* Хлібні крихти */

.about-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 40px 0 55px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-breadcrumbs a {
    color: #686e74;
    text-decoration: none;
}

.about-breadcrumbs a:hover {
    color: #c50913;
}

.about-breadcrumbs span:last-child {
    color: #c50913;
}

/* Перший блок */

.about-hero {
    padding-bottom: 68px;
}

.about-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 560px;
    align-items: center;
    gap: 90px;
}

.about-hero__content {
    max-width: 690px;
}

.about-hero__title {
    margin: 0 0 27px;
    color: #202429;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.about-hero__text {
    max-width: 665px;
    margin: 0;
    color: #555d64;
    font-size: 18px;
    line-height: 1.7;
}

.about-hero__image {
    height: 575px;
    overflow: hidden;
    border-radius: 11px;
}

.about-hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Другий блок */

.about-experience {
    padding: 44px 0 72px;
}

.about-experience__grid {
    display: grid;
    grid-template-columns: 640px minmax(0, 1fr);
    align-items: center;
    gap: 78px;
}

.about-experience__image {
    height: 470px;
    overflow: hidden;
    border-radius: 11px;
}

.about-experience__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience__content {
    max-width: 620px;
}

.about-experience__title {
    margin: 0 0 28px;
    color: #202429;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
}

.about-experience__content p {
    margin: 0 0 18px;
    color: #555d64;
    font-size: 16px;
    line-height: 1.7;
}

.about-experience__content strong {
    color: #202429;
}

.about-experience__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-width: 205px;
    min-height: 54px;
    margin-top: 10px;
    padding: 13px 22px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: #c50913;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.about-experience__button:hover {
    color: #ffffff;
    background: #a70911;
}

.about-experience__button svg {
    width: 27px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Цінності */

.about-values {
    padding: 58px 0 72px;
}

.about-values__title {
    margin: 0 0 34px;
    color: #202429;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.about-value-card {
    min-height: 250px;
    padding: 30px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #e7e5e3;
    border-radius: 10px;
}

.about-value-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    color: #c50913;
}

.about-value-card__icon svg {
    width: 66px;
    height: 66px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-value-card h3 {
    margin: 0 0 12px;
    color: #202429;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
}

.about-value-card p {
    margin: 0;
    color: #626970;
    font-size: 14px;
    line-height: 1.6;
}

/* Планшет */

@media (max-width: 1150px) {
    .about-container {
        width: min(100% - 50px, 1100px);
    }

    .about-hero__grid {
        grid-template-columns: minmax(0, 1fr) 440px;
        gap: 50px;
    }

    .about-hero__title {
        font-size: 44px;
    }

    .about-hero__image {
        height: 500px;
    }

    .about-experience__grid {
        grid-template-columns: 52% 48%;
        gap: 45px;
    }

    .about-experience__image {
        height: 430px;
    }
}

@media (max-width: 900px) {
    .about-hero__grid,
    .about-experience__grid {
        grid-template-columns: 1fr;
    }

    .about-hero__image {
        order: -1;
        height: 470px;
    }

    .about-experience__image {
        height: 430px;
    }

    .about-values__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Мобільна версія */

@media (max-width: 767px) {
    .about-container {
        width: min(100% - 30px, 700px);
    }

    .about-breadcrumbs {
        padding: 25px 0 32px;
    }

    .about-hero {
        padding-bottom: 45px;
    }

    .about-hero__grid,
    .about-experience__grid {
        gap: 30px;
    }

    .about-hero__image {
        height: auto;
        aspect-ratio: 1 / 1.05;
    }

    .about-hero__title {
        font-size: 35px;
    }

    .about-hero__text {
        font-size: 16px;
    }

    .about-experience {
        padding: 35px 0 48px;
    }

    .about-experience__image {
        height: auto;
        aspect-ratio: 1.35 / 1;
    }

    .about-experience__title {
        font-size: 29px;
    }

    .about-experience__content p {
        font-size: 15px;
    }

    .about-values {
        padding: 42px 0 55px;
    }

    .about-values__title {
        font-size: 30px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-value-card {
        min-height: 0;
    }
}