// Core Features Single Items Styling Here
.core-feature-single-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 40px;
    margin-bottom: 30px;
    transition: .3s all ease;
    &:hover {
        background: var(--main-color-one);
        .icon {
            transform: rotate(45deg);
        }
    }
    .icon {
        width: 110px;
        height: 110px;
        line-height: 110px;
        text-align: center;
        background: #FFFFFF;
        border-radius: 8px;
        margin: 0 auto;
        margin-bottom: 20px;
        transition: .3s all ease;
    }
    .content {
        .title {
            font-size: 20px;
            line-height: 30px;
            font-weight: 700;
            font-family: var(--body-font);
            color: #fff;
            text-align: center;
        }
    }
}