.features-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 40vw;
}

.features-box .features-box-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vw;
    background-image: url(../img/features-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(5px);
    z-index: 3;
}

.features-box .features-box-effect {
    position: absolute;
    background-color: var(--background-color);
    top: 0;
    left: 0;
    opacity: 0.8;
    width: 100%;
    height: 40vw;
    z-index: 4;
}

.features-box .features-box-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40vw;
    background-color: transparent;
    z-index: 5;
}

.features-box .features-box-container .features-box-container-boxes {
    display: flex;
    flex-direction: column;
    width: 25vw;
}

.features-box .features-box-container .features-box-container-boxes .features-box-container-boxes-title {
    display: flex;
    flex-direction: row;
    gap: 0.5vw;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3vw;
    color: var(--accent-color);
    text-shadow: 0 0 10px #ffc881b4;
}

.features-box .features-box-container .features-box-container-boxes .features-box-container-boxes-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9vw;
    opacity: 0.8;
    margin-left: 0.1vw;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-top: 1.5vw;
}


.features-box2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vw;
    background-image: url(../img/features-bg.jpg);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(5px);
    z-index: 3;
}

