@import '../../../scss/base';
.react-addon-services {
    &.services-style1 {
        position: relative;  
        cursor: default;
       .services-icon {
            background: #fff;
            width: 80px;
            height: 80px;
            line-height: 70px !important;
            text-align: center;
        }   
        .services-btn-part{
            a{
                i{
                    margin-left: 6px;
                    transition: 0.3s;
                }
            }
        }
        &:hover{
            i{
                margin-left: 10px !important;
                font-weight: bold;
            }
        }

        .services-title{
            h3{
                margin-bottom: 4px !important;
            }
            
        }

    }
    .services-part {
        position: relative;
        padding: 45px;
        .services-icon {
            padding: 5px;
            font-size: 50px;
            line-height: 50px;
            color: $primaryColor;
            transition: all ease .3s;

            i {
                transition: all ease .3s;

                &:before {
                    margin: 0;
                }
            }
           
            &:hover {
                color: $secondaryColor;
            }

            &:after {
                content: "";
                position: absolute;
                z-index: 0;
                left: 50%;
                top: 50%;
                transform: translateX(-50%) translateY(-50%);
                display: block;
                width: 90px;
                height: 90px;
                background: $primaryColor;
                border-radius: 50%;
                animation: pulse-border 1500ms ease-out infinite;
                opacity: 0;
                transition: all 0.3s ease 0s;
                visibility: hidden;
            }
        }

        .services-text {
            padding: 10px 0 0;
            position: relative;
            font-family: $bodyFont;
            max-width: 350px;
            margin: auto;
            .services-title {
                position: relative;
                span.service_number {
                    position: absolute;
                    content: "";
                    right: 0;
                    top: 0%;
                    transform: translateY(-50%);
                    font-size: 100px;
                    font-weight: 700;
                    font-family: $titleFont;
                    color: rgba(0, 0, 0, 0.05);
                }
                .title {
                    font-size: 24px;
                    margin: 0 0 10px;
                    color: $titleColor;

                    a {
                        color: $titleColor;

                        &:hover {
                            color: $hoverColor;
                        }
                    }

                }
            }

            .services-txt {
                color: $bodyColor;
                margin: 0;
                transition: 0.4s;
            }

            .services-btn-part {
                margin: 10px 0 0;

                .services-btn {
                    position: relative;
                    display: inline-block;
                    color: $secondaryColor;
                    transition: all ease .3s;

                    &:hover {
                        color: $primaryColor;
                    }

                    &.icon-after {
                        span {
                            float: left;
                        }                       
                    }

                    &.icon-before {
                        span {
                            float: right;
                        }

                        i {
                            margin-right: 10px;
                        }
                    }
                }
            }
        }
        img{
            transition: 0.4s;
            margin-top: 30px;
        } 
    }
    &.services-style2 {
        .services-part {
            position: relative;
            padding: 50px 20px 100px;
            text-align: center;
            .services-icon {
                width: 100px;
                height: 100px;
                background: #FEF6ED;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 10px;
                margin-left: auto;
                margin-right: auto;
                transition: 0.3s;
            }
            .services-text {
                .services-title {
                    margin-bottom: 10px;
                }
            }
            &:hover .services-icon {
                background: $primaryColor;   
                svg {
                    path {
                        fill: #fff;
                    }
                }         
            }
            .batch-number {
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 55px;
                height: 55px;
                background: $primaryColor;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-family: $bodyFont;
                font-weight: 700;
                font-size: 20px;
            }
        }
        &::after {
            position: absolute;
            content: "";
            left: 50%;
            top: 55%;
            transform: translate(-50%, -50%);
            height: 100%;
            width: 100%;
            background: #00000052;
            filter: blur(120px);
            border-radius: 50%;
            z-index: -1;
            opacity: 0.35;
        }
    }
}