.features-boxes {
    /* padding: 32px 0; */
    position: relative;
}

.features-boxes .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 32px
}

.features-boxes .block-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.features-boxes .boxes-wrapper {
    width: calc(65% - 24px);
}

.features-boxes .image-wrapper img {
    width: 100%;
    height: auto;
}

.features-boxes .boxes-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.features-boxes .box-single {
    width: calc(33.33333333% - 12px);
    border: 5px solid var(--bg);
    transition: border .3s ease, background .3s ease;
    cursor: default;
}

.features-boxes .box-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    min-height: 438px;
}

.features-boxes .box-single:not(.no-description):hover {
    border-color: var(--input);
}

.features-boxes .box-single.no-description:hover {
    border-color: var(--content);
    background-color: var(--content);
}

.features-boxes .box-single:not(.no-description):hover .box-wrapper {
    transform: rotateY(180deg);
}

.features-boxes .box-title h3 {
    font-weight: 700;
    letter-spacing: 1.28px;
    color: var(--antracyte);
    line-height: 1.25;
    transition: color .3s ease;
}

.features-boxes .box-single.no-description:hover .box-title h3 {
    color: #fff;
}

.features-boxes .box-front,
.features-boxes .box-description {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 56px;
    justify-content: center;
    border: 0;
    padding: 32px;
}

.features-boxes .box-description {
    padding-top: 64px;
}

.features-boxes .box-icon {
    height: 100px;
    width: 100%;
    transition: filter .3s ease, transform .3s ease;
}

.features-boxes .feature-single:hover .box-icon {
    transform: rotateZ(6deg);
}

.features-boxes .box-single.no-description:hover .box-icon {
    filter: brightness(10);
}

.features-boxes .box-description {
    background: #8b5cf6;
    color: white;
    transform: rotateY(180deg);
    background: var(--Grafit, #313235);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.8px;
    overflow: auto;
}

.features-boxes .additional-features-wrapper {
    margin-top: 32px;
    padding: 32px 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px 64px;
}

.features-boxes .feature-single {
    width: calc(50% - 32px);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.features-boxes .feature-single .box-icon {
    width: 100%;
    min-width: 84px;
    max-width: 84px;
    height: auto;
}

.features-boxes .feature-single .box-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-boxes .feature-single .box-text h4 {
    font-size: 24px;
    color: #1d1d1d;
    font-weight: 700;
    text-transform: capitalize;
    font-family: 'Alegreya Sans SC';
}

@media (max-width:1440px) {
    .features-boxes .box-single .box-front {
        gap: 32px;
    }

    .features-boxes .box-icon img {
        max-width: 64px;
        height: auto;
    }

    .features-boxes .box-description {
        font-size: 16px;
    }

    .features-boxes .box-front,
    .features-boxes .box-description {
        padding: 16px;
    }

    .features-boxes .box-description {
        padding-top: 32px;
    }
}


@media (max-width:1199px) {
    .features-boxes .block-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .features-boxes .image-wrapper {
        display: flex;
        justify-content: center;
    }

    .features-boxes .image-wrapper img {
        width: auto;
        height: auto;
    }

    .features-boxes .box-wrapper {
        min-height: 300px;
        width: 100%;
    }
}

@media (max-width:991px) {

    .features-boxes .image-wrapper,
    .features-boxes .boxes-wrapper {
        width: 100%;
    }

    .features-boxes .text-content {
        gap: 16px;
    }

    .features-boxes .box-wrapper ul {
        gap: 12px;
    }

    .features-boxes .feature-single {
        width: 100%;
    }
}

@media (max-width:768px) {
    .features-boxes .box-wrapper {
        gap: 16px;
    }

    .features-boxes .box-single {
        width: calc(50% - 8px);
        border-width: 3px;
    }

    .features-boxes .box-description {
        font-size: 13px;
    }

    .features-boxes .box-title h3 {
        font-size: 18px;
    }
}

@media (max-width:479px) {
    .features-boxes .box-single .box-wrapper {
        padding: 16px 8px;
        min-height: 350px;
    }
}