.about-block__wrapper {
    background-color: var(--background-secondary);
}

#about-block .title-block {
    color: var(--head-primary);
}

.about-block__img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    margin-bottom: 50px;
}

.about-block__holder {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.about-block__text {
    margin-bottom: 40px;
}

.about-block__text p,
.about-block__text li {
    color: var(--head-primary);
    font-weight: 400;
    font-size: var(--primary-text);
    line-height: 150%;
    margin-bottom: 15px;
}

.about-block__text li {
    position: relative;
    list-style: none;
    padding-left: 20px;
}

.about-block__text p:last-child,
.about-block__text li:last-child {
    margin-bottom: 0;
}

.about-block__text li::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 8px;
}

.about-block__left {
    max-width: 880px;
    width: 100%;
}

.about-block-file {
    max-width: 370px;
    min-height: 370px;
    width: 100%;
    background-color: var(--background-secondary);
    border: 1px solid var(--stroke);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-block__content {
    padding: 30px;
}

.about-block__icon-file {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    object-fit: contain;
}

.about-block__file_name {
    color: var(--head-primary);
    font-weight: 600;
    font-size: var(--font-size-16-20);
    line-height: 125%;
    margin-bottom: 10px;
}

.about-block__file-text {
    font-size: var(--font-size-14-16);
    font-weight: 400;
    color: var(--primary-text);
    line-height: 155%;
    margin-bottom: 15px;
}

.about-block__bottom {
    padding: 20px 30px 11px 30px;
    background-color: var(--background);
}

.about-block__create {
    font-size: var(--font-size-14);
    font-weight: 400;
    line-height: 125%;
    color: var(--stroke);
}

.about-block__valied-periud {
    font-size: var(--font-size-14-16);
    font-weight: 400;
    color: var(--secondary-text);
    line-height: 150%;
}

@media (max-width: 1024px) {
    .about-block__content {
        padding: 15px;
    }

    .about-block-file {
        max-height: 100%;
        min-height: auto;
        height: fit-content;
    }

    .about-block__img {
        margin-bottom: 15px;
    }

    .about-block__text {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .about-block__holder {
        flex-direction: column;
    }
}