#about-block {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}
#about-block .btn {
    width: fit-content;
    padding-left: 35px;
    padding-right: 35px;
}
.about-block__text {
    margin-bottom: 40px;
}
.about-block__text * {
    color: var(--txt);
    font-size: var(--font-size-14-16);
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 15px;
}
.about-block__text *:last-child {
    margin-bottom: 0;
}
.about-block__left {
    max-width: 880px;
    width: 100%;
}
.about-block__text li {
    padding-left: 20px;
    position: relative;
    list-style: none;
    margin-bottom: 10px;
}
.about-block__text li::before {
    content: '';
    width: 10px;
    height: 4px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: 9px;
}
.about-block__right {
    max-width: 490px;
    width: 100%;
}
.about-block__image {
    max-width: 490px;
    max-height: 456px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1024px) {
    #about-block {
        flex-direction: column;
    }
    .about-block__right {
        max-width: 100%;
        width: 100%;
    }
    .about-block__image {
        max-width: 100%;
        width: 100%;
    }
    #about-block .btn {
        max-width: 100%;
    }
    .about-block__left {
        width: 100%;
        max-width: 100%;
    }
}