/* Minification failed. Returning unminified contents.
(5,28): run-time error CSS1039: Token not allowed after unary operator: '-primary-white'
(26,22): run-time error CSS1039: Token not allowed after unary operator: '-box-shadow-home'
(27,25): run-time error CSS1039: Token not allowed after unary operator: '-border-radius-base'
(28,28): run-time error CSS1039: Token not allowed after unary operator: '-white'
(45,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(58,22): run-time error CSS1039: Token not allowed after unary operator: '-primary-u-white'
(81,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
 */
#features {
    float: right;
    width: 100%;
    padding: 50px 10%;
    background-color: var(--primary-white);
    background-image: url("../overlay.54db4bc9f1915e6374e6.png");
    background-position: center right;
    background-size: 70%;
}

#features .features-con {
    float: right;
    width: 100%;
}

#features .item-con {
    float: right;
    width: calc(100% / 3);
    padding: 20px;
}

#features .item-con .item {
    float: right;
    width: 100%;
    padding: 40px;
    box-shadow: var(--box-shadow-home);
    border-radius: var(--border-radius-base);
    background-color: var(--white);
    cursor: default;
    position: relative;
    z-index: 2;
}

#features .item-con .item:before {
    content: "";
    width: 60px;
    height: 8px;
    position: absolute;
    bottom: 0;
    border-radius: 0;
    opacity: 0;
    transition: all .3s;
    left: 0;
    z-index: 1;
    background-color: var(--primary);
}

#features .item-con .item:hover:before {
    width: 100%;
    opacity: 1;
    border-radius: 0;
    transition: all .3s
}

#features .item-con .item .bg {
    position: absolute;
    content: '';
    background: var(--primary-u-white);
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: .8s ease;
    z-index: -1;
}

#features .item-con .item:hover .bg {
    height: 100%;
    top: 0;
    transition: .8s ease
}

#features .item-con .item i {
    float: right;
    width: 100%;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 50px;
    color: var(--primary);
    border-radius: 50%;
    margin-bottom: 20px;
}

#features .item-con .item .title {
    float: right;
    width: 100%;
    min-height: 50px;
    line-height: 25px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0;
}

#features .item-con .item .description {
    float: right;
    width: 100%;
    line-height: 30px;
    height: 90px;
    text-align: center;
    font-size: 14px;
    font-weight: 200;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

@media (max-width: 999.98px) {
    #features .item-con {
        width: 50%;
    }

    #features {
        background-size: 250px;
        background-position: 110% 8%;
    }

    #features .cloud-bg {
        padding: 50px 5%;
        background-size: 100px;
        background-position: -2% 80%;
    }
}

@media (max-width: 699.98px) {
    #features .item-con {
        width: 100%;
    }
}

@media (max-width: 499.98px) {
    #features .cloud-bg {
        background-size: 100px;
    }

    #features {
        background-size: 200px;
        background-position: 110% 8%;
    }

    #features .item-con .item i {
        width: 70px;
        height: 70px;
        line-height: 70px;
    }
}

@media (max-width: 1299.98px) {
    #features .cloud-bg {
        padding: 50px 5%;
    }
}

@media (min-width: 1300px)  and (max-width: 1499.98px) {
    #features .cloud-bg {
        padding: 50px 10%;
    }
}

