/* Шестой блок - Преимущества */
.block6 {
    position: relative;
    padding: 100px 0;
    background: #FFFFFF;
    overflow: hidden;
    top: -140px;
}

.block6-title {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 80px auto;

    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 48px;
    text-align: center;

    color: #000000;
    margin-top: -20px;
}

.block6-features {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.block6-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;

    width: 294px;
    height: auto;

    flex: none;
    order: 1;
}

.block6-feature-image {
    width: 368px;
    max-width: 400px;
    height: 300px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.block6-feature-image img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
}

.block6-feature-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;

    width: 294px;
    height: 91px;

    flex: none;
    order: 1;
}

.block6-feature-title {
    width: 294px;
    height: 53px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #000000;

    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
    margin: 0 0 10px 0;
}

.block6-feature-description {
    width: 294px;
    height: 38px;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    color: #7E7E7E;

    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .block6-features {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .block6-feature {
        width: 100%;
        max-width: 400px;
    }

    .block6-feature-content {
        width: 100%;
    }

    .block6-feature-title {
        width: 100%;
    }

    .block6-feature-description {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .block6 {
        padding: 60px 0;
    }

    .block6-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 50px;
        padding: 0 20px;
    }

    .block6-feature-image {
        height: 284.7865905761719px;
        margin-bottom: 30px;
    }

    .block6-feature-title {
        font-size: 24px;
        line-height: 24px;
        height: auto;
    }

    .block6-feature-description {
        font-size: 16px;
        line-height: 18px;
        height: auto;
    }
}