﻿.home-services-item {
    display: block;
    background-image: linear-gradient(127deg, #fff 0%, #fff 91%);
    box-shadow: 0 2px 48px 0 rgba(0,0,0,0.06);
    font-weight: 400;
    font-size: 14px;
    color: #6F8BA4;
    padding: 26px;
    border-radius: 40px;
    border-bottom-right-radius: 4px;
    margin-top: 30px;
    position: relative
}

    .home-services-item:before {
        content: '';
        border-radius: 40px;
        border-bottom-right-radius: 4px;
        position: absolute;
        width: 100%;
        height: 100%;
        background: red;
        top: 0px;
        left: 0px;
        z-index: 1;
        background-image: linear-gradient(127deg, #01499b 0%, #f6fbfd 91%);
        opacity: 0;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s
    }

    .home-services-item i {
        font-size: 36px !important;
        margin-bottom: 23px;
        background-image: linear-gradient(127deg, #384DFF 0%, #24CDFF 91%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        position: relative;
        z-index: 2
    }

    .home-services-item .services-title {
        font-size: 20px !important;
        font-weight: 400;
        color: #3B566E;
        margin-bottom: 23px !important;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        position: relative;
        z-index: 2
    }

    .home-services-item p {
        position: relative;
        z-index: 2;
        -webkit-transition: all 0.3s ease 0s;
        -moz-transition: all 0.3s ease 0s;
        -o-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s;
        margin-bottom: 0px !important;
        line-height: 1.6
    }

.mtop-70 {
    margin-top: 70px !important
}

.home-services-item:hover, .home-services-item.active {
    color: #F7F8FF
}

    .home-services-item:hover:before, .home-services-item.active:before {
        opacity: 1
    }

    .home-services-item:hover i, .home-services-item.active i {
        background-image: linear-gradient(127deg, #fff 0%, #fff 91%)
    }

    .home-services-item:hover .services-title, .home-services-item.active .services-title {
        color: #fff
    }


