.features-items {
    padding: 20px 0;
    position: relative;
    background-image: url(../../assets/images/about-bcc-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.features-items .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 32px
}

.features-items .image-wrapper {
    width: calc(55% - 16px);
    position: relative;
}

.features-items .text-wrapper {
    width: calc(45% - 16px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.features-items .boxes-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.features-items .boxes-wrapper .box-single {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.features-items .box-single .box-number {
    color: var(--bcc-1);
    letter-spacing: -3.12px;
    font-size: 104px;
    font-family: 'Alegreya';
    font-weight: 500;
    line-height: 0.9;
}

.features-items .box-single .box-text h3 {
    font-size: 34px;
    font-weight: 500;
    color: #262F2E;
    line-height: 1;
    font-family: 'Alegreya Sans SC';
}

.features-items .image-wrapper-inner {
    display: flex;
    justify-content: flex-end;
}

.features-items .img-box {
    position: relative;
    line-height: 0.8;
}

.features-items .img-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.70);
    pointer-events: none;
}

.features-items .features-wrapper {
    position: absolute;
    left: 0;
    bottom: -32px;
    display: flex;
    flex-direction: column;
    max-width: 470px;
    width: 100%;
    gap: 48px;
    z-index: 4;
}

.features-items .feature-single {
    background: #FFF;
    box-shadow: 22px 40px 40px 0 rgba(0, 0, 0, 0.05);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 19px;
    font-family: 'Alegreya Sans';
    transition: background .3s ease;
}

.features-items .feature-single:hover {
    background-color: #FDF8F8;
}

.features-items .box-text-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.features-items .box-text-icon-wrapper h4 {
    color: #262F2E;
    font-family: 'Alegreya';
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2
}

.features-items .box-icon {
    display: flex;
    align-items: center;
}

@media (max-width:1199px) {
    .features-items .block-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .features-items .features-wrapper {
        position: relative;
        left: auto;
        bottom: auto;
    }

    .features-items .image-wrapper-inner {
        justify-content: center;
    }

    .features-items .img-box img {
        max-height: 600px;
        width: 100%;
    }

    .features-items .text-wrapper {
        width: 100%;
    }

    .features-items .image-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .features-items .features-wrapper,
    .features-items .boxes-wrapper {
        gap: 32px;
    }

    .features-items .box-single .box-number {
        font-size: 64px;
    }

    .features-items .box-single .box-text h3 {
        font-size: 24px;
    }

    .features-items .feature-single {
        padding: 16px;
        font-size: 16px;
    }

    .features-items .box-text-icon-wrapper {
        gap: 16px;
    }

    .features-items .box-text-icon-wrapper h4 {
        font-size: 20px;
    }
}