.section-about {}

.about-block {
    display: flex;
    justify-content: space-between;
    border-radius: 16px;
    border: 1px solid #F0F0F0;
    background: #FAFAFA;
    overflow: hidden;
}

.about-block:nth-child(odd) {}
.about-block:nth-child(even) {
    flex-direction: row-reverse;
}

.about-block:not(:last-child) {
    margin-bottom: 64px;
}

.about_text-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about_text-block .top {
    padding: 96px 64px 32px 64px;
}

.about_title {
    margin-bottom: 16px;
}

.about_text {
    color: #595959;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.about_text-block .bottom {
    min-height: 156px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #F0F0F0;
}

.about_promo {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #F0F0F0;
    color: #000;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 150%;
    /*padding: 32px 32px 32px 64px;*/
    padding: 32px 48px;
}

.about_promo .stars {
    margin-bottom: 8px;
}

.about_promo .stars svg {
    margin-right: 4px;
}

.about_btn {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 64px;
}

.about_btn .btn {
    width: 100%;
}

.about_img-block {
    width: 50%;
}

.about_img-block img {
    width: 100%;
    max-width: 100%;
}

.about_main-btn {
    margin: auto;
}

@media (max-width: 1199px) {
    .about-block {
        flex-direction: column;
    }

    .about-block:nth-child(even) {
        flex-direction: column;
    }

    .about-block:not(:last-child) {
        margin-bottom: 96px;
    }

    .about_text-block {
        width: 100%;
    }

    .about_img-block {
        width: 100%;
    }

    .about_text-block .top {
        padding: 64px;
    }
}

@media (max-width: 640px) {
    .about-block:not(:last-child) {
        margin-bottom: 64px;
    }

    .about_text-block .top {
        padding: 48px 32px 32px 32px;
    }

    .about_text-block .bottom {
        flex-direction: column;
        padding: 32px 32px 48px;
    }

    .about_promo {
        width: 100%;
        border-right: none;
        padding: 0;
        margin-bottom: 24px;
    }

    .about_btn {
        width: 100%;
        padding: 0;
    }
}

