.why-choose {
    padding: 105px 24px;
    background: #f7f5f4;
    color: #1d1111;
}

.why-choose__inner {
    max-width: 1480px;
    margin: 0 auto;
}

.why-choose__header {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 90px;
    align-items: start;
    margin-bottom: 78px;
}

.why-choose__title {
    margin: 0;
    font-size: clamp(48px, 5vw, 76px);
    line-height: 0.95;
    text-transform: uppercase;
    font-weight: 900;
    font-family: "refrigerator-deluxe", sans-serif;
}

.why-choose__intro {
    max-width: 720px;
    color: #3d3838;
}

.why-choose__intro p {
    margin: 0;
}

.why-choose__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 110px;
    row-gap: 58px;
}

.why-choose__item {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 28px;
    align-items: start;
}

.why-choose__number {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "refrigerator-deluxe", sans-serif;
    font-size: 34px;
    font-weight: 900;
}

.why-choose__item-title {
    margin: 0 0 8px;
    font-size: 28px;
    font-family: "refrigerator-deluxe", sans-serif;
    line-height: 1.05;
    text-transform: uppercase;
    font-weight: 900;
}

.why-choose__text {
    margin: 0;
    color: #3d3838;
}

.why-choose__logos {
    margin-top: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 54px;
    flex-wrap: wrap;
}

.why-choose__logo img {
    max-height: 96px;
    max-width: 220px;
    width: auto;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .why-choose__header,
    .why-choose__items {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .why-choose__logos {gap:20px;}
    .why-choose__item {
        grid-template-columns: 64px 1fr;
        gap: 20px;
    }
.why-choose__logo img {
    max-height: 46px;
}
    .why-choose__number {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
}