
/** FEATURES **/

.features > .article {
    color: #989898;
    font-size: 1.8rem;
    line-height: 2.2rem;
    padding-bottom: 5rem;
    padding-top: 15rem;
}

.features .max_width {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5%;
}

.features article {
    flex-shrink: 0;
    margin-bottom: 10rem;
    min-height: 25rem;
    -webkit-transition: color 0.5s ease;
    -moz-transition: color 0.5s ease;
    -o-transition: color 0.5s ease;
    transition: color 0.5s ease;
    width: 31%;
}

.features article:hover {
    color: #656565;
}

.features article:hover header > div {
    border-radius: 3rem;
    top: -6rem;
    height: 12rem;
    width: 12rem;
}

.features article > header {
    height: 0;
}

.features article > header > div {
    background-color: #FFFFFF;
    border: 0.2rem solid #656565;
    border-radius: 5rem;
    margin: auto;
    position: relative;
    top: -5rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    height: 10rem;
    width: 10rem;
}

.features article > section {
    background-color: #F9F9F9;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 2.5rem;
    text-align: center;
}

.features header > div {
    background-position: center;
}

.features .feature_1 {
    background-image: url("../../svg/feature_star.svg");
    background-size: 55%;
}

.features .feature_2 {
    background-image: url("../../svg/feature_setting.svg");
    background-size: 65%;
}

.features .feature_3 {
    background-image: url("../../svg/feature_truck.svg");
    background-size: 60%;
}

.features .feature_4 {
    background-image: url("../../svg/feature_idea.svg");
    background-size: 65%;
}

.features .feature_5 {
    background-image: url("../../svg/feature_hands.svg");
    background-size: 65%;
}

.features .feature_6 {
    background-image: url("../../svg/feature_store.svg");
    background-size: 55%;
}

/** RESPONSIVE **/

@media (max-width: 950px) {

    .features .max_width {
        gap: 4%;
    }

    .features article {
        width: 48%;
    }
}

@media (max-width: 650px) {

    .features .max_width {
        gap: none;
    }

    .features article {
        width: 100%;
    }
}
