/* ===== БАЗОВЫЕ СТИЛИ (desktop) ===== */
.about {
    padding-top: 144px;
}

.about-items {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 70px;
}

.about-items__img {
    width: 479px;
    flex-shrink: 0;
    position: relative;
}

.about-items__img img {
    display: block;
    width: 100%;
    border-radius: 20px 0 0 0;
}

.about-items__img-pattern {
    position: absolute;
    border-radius: 30px 0 0 0;
    top: -20px;
    left: -20px;
    border: 3px solid var(--button-color);
    background: none;
    width: 200px;
    height: 200px;
}

.about-item {
    max-width: 600px;
    align-self: flex-end;
}

.about-el {
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--button-color);
    padding-bottom: 15px;
    display: inline-block;
}

.about-title {
    font-weight: 400;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: 0%;
    width: 100%;
    margin-bottom: 19px;
}

.about-descr {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    color: rgba(96, 94, 93, 1);
    margin-bottom: 56px;
}

.about-item__progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.about-item__progress-el {
    font-weight: 400;
    font-size: 72px;
    line-height: 84px;
    letter-spacing: 0%;
    color: black;
}

.about-item__progress-el span {
    color: var(--button-color);
}

.about-item__progress .about-item__progress-name {
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0%;
    color: rgba(152, 152, 153, 1);
    text-align: center;
    width: 100%;
}

/* ===== АДАПТИВ ДЛЯ ПЛАНШЕТОВ (до 1200px) ===== */
@media all and (max-width: 1200px) {
    .about {
        padding-top: 100px;
    }

    .about-items {
        gap: 25px;
    }

    .about-items__img {
        width: 400px;
    }

    .about-items__img-pattern {
        width: 150px;
        height: 150px;
        top: -15px;
        left: -15px;
    }

    .about-title {
        font-size: 40px;
        line-height: 50px;
    }

    .about-item__progress-el {
        font-size: 60px;
        line-height: 70px;
    }

    .about-descr {
        font-weight: 400;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: 0%;
        color: rgba(96, 94, 93, 1);
        margin-bottom: 30px;
    }

}

/* ===== АДАПТИВ ДЛЯ ПЛАНШЕТОВ (до 992px) ===== */
@media all and (max-width: 992px) {
    .about {
        padding-top: 80px;
    }

    .about-el {
        font-weight: 400;
        font-size: 20px;
        line-height: 22px;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        color: var(--button-color);
        padding-bottom: 15px;
        display: block !important;
        width: 100%;
        text-align: center;
    }

    .about-items {
        flex-direction: column;
        gap: 20px;
    }

    .about-item {
        max-width: 600px;
        align-self: center;
    }

    .about-items__img {
        width: 350px;
    }

    .about-title {
        font-size: 36px;
        line-height: 44px;
        text-align: center;
    }

    .about-descr {
        font-size: 17px;
        line-height: 28px;
        margin-bottom: 20px;
        text-align: center;
    }

    .about-item__progress {
        margin-bottom: 40px;
    }

    .about-item__progress-el {
        font-size: 50px;
        line-height: 60px;
    }

    .about-item__progress-name {
        font-size: 16px;
    }

    .about button {
        display: block;
        margin: 0 auto;
    }
}

/* ===== АДАПТИВ ДЛЯ МОБИЛЬНЫХ (до 768px) ===== */
@media all and (max-width: 768px) {

    .about-items__img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-items__img-pattern {
        width: 120px;
        height: 120px;
        top: -12px;
        left: -12px;
    }

    .about-item {
        max-width: 100%;
    }

    .about-el {
        font-size: 18px;
    }

    .about-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .about-descr {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 35px;
    }

    .about-item__progress {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
        margin-bottom: 35px;
    }


    .about-item__progress-el {
        font-size: 48px;
        line-height: 56px;
    }

    .about-item__progress-name {
        font-size: 15px;
    }
}

/* ===== АДАПТИВ ДЛЯ МАЛЕНЬКИХ ТЕЛЕФОНОВ (до 480px) ===== */
@media all and (max-width: 480px) {

    .about-items {
        gap: 20px;
    }

    .about-items__img-pattern {
        width: 120px;
        height: 120px;
        top: -10px;
        left: -10px;
        border-width: 2px;
        border-radius: 15px 0 0 0;
    }

    .about-items__img img {
        border-radius: 10px 0 0 0;
    }

    .about-el {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .about-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .about-descr {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .about-item__progress {
        gap: 20px;
        margin-bottom: 30px;
    }

    .about-item__progress-el {
        font-size: 40px;
        line-height: 48px;
    }

    .about-item__progress-name {
        font-size: 14px;
        line-height: 18px;
    }

    .btn-1 {
        width: 100%;
        font-size: 16px;
    }
}