// Services Single Section
.services-single-section {
    background: #FFF9FC;
    padding: 106px 0px 90px 0px;
    position: relative;
    z-index: 0;

    &.home-six {
        background: transparent;
        padding: 0;
        margin-top: 105px;
        margin-bottom: 120px;
    }

    &.style-01 {
        background: transparent;
        padding: 0;
        margin-top: 120px;
    }

    .services-shape {
        position: absolute;
        bottom: 13%;
        left: 8%;
    }

    .services-shape-02 {
        position: absolute;
        right: 14%;
        bottom: 5%;
    }

    .services-shape-03 {
        position: absolute;
        left: 34%;
        top: 22%;
    }
}

.service-single-items-wrapper {
    border: 1px solid rgba(14, 17, 90, 0.15);
    padding: 30px;

    .separator {
        border-top: 1px solid rgba(14, 17, 90, 0.15);
        padding-top: 30px;
        margin-top: 30px;

    }
}

.services-single-item {
    position: relative;
    background-color: #fff;
    border: 1px solid rgba(227, 227, 227, 0.5);
    border-radius: 5px;
    padding: 40px;
    transition: .7s all ease;
    margin-bottom: 30px;
    z-index: 0;

    &.style-01 {
        padding: 34px;
    }

    &:hover {
        background-color: var(--main-color-one);
        border-color: 0;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);

        .testimonial-carousel {
            .owl-nav {
                visibility: visible;
            }
        }

        .icon {
            color: #fff;
            border-color: #fff;
        }

        .content {
            .title {
                color: #fff;
            }

            .description {
                color: #fff;
            }
        }

        .shape-01 {
            opacity: 1;
            visibility: visible;
        }

        .btn-wrapper {
            .event-btn {
                color: #fff;
            }
        }
    }

    .content {
        .title {
            font-size: 24px;
            line-height: 30px;
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            color: #04072E;
            margin-bottom: 20px;
            transition: .7s all ease;
        }

        .description {
            font-size: 16px;
            line-height: 28px;
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            color: #505050;
            margin-bottom: 25px;
            transition: .7s all ease;
        }
    }

    .shape-01 {
        position: absolute;
        top: -3px;
        max-width: 137px;
        right: -3px;
        transition: .7s all ease;
        opacity: 0;
        visibility: hidden;
    }

    .icon {
        margin-bottom: 15px;
        width: 90px;
        height: 90px;
        line-height: 100px;
        text-align: center;
        background: transparent;
        font-size: 50px;
        color: var(--main-color-one);
        margin-right: 20px;
        position: relative;
        border: 1px dashed var(--main-color-one);
        border-radius: 50%;
        transition: .7s all ease;
    }
}

.services-single-item-02 {
    position: relative;
    background-color: #fff;
    border-left: 1px solid rgba(14, 17, 90, 0.15);
    padding: 0px 30px;
    transition: .3s all ease;
    z-index: 0;

    &.style-01 {
        border: none;
    }

    &.departmental {
        border: 1px solid rgba(201, 201, 201, 0.5);
        margin-bottom: 30px;
        padding: 30px;

        .content {
            border-bottom: 1px solid rgba(201, 201, 201, 0.5);
            text-align: left;
            margin-bottom: 20px;
            padding-bottom: 15px;

            p {
                margin-bottom: 0;
            }
        }

        .icon {
            margin: inherit;
            line-height: 90px;
        }

        .btn-wrapper {
            .boxed-btn {

                &.event-btn {
                    font-size: 14px;
                    font-weight: 500;
                    text-transform: uppercase;

                    i {
                        font-size: 15px;
                        margin-right: 10px;
                    }
                }
            }
        }
    }

    &:hover {

        .icon {
            background: var(--main-color-one);
            color: #fff;
        }
    }

    .content {
        text-align: center;

        .title {
            font-size: 24px;
            line-height: 30px;
            font-family: 'Roboto', sans-serif;
            font-weight: 700;
            color: #04072E;
            margin-bottom: 20px;
            transition: .3s all ease;
        }

        .description {
            font-size: 16px;
            line-height: 28px;
            font-family: 'Roboto', sans-serif;
            font-weight: 400;
            color: #505050;
            margin-bottom: 25px;
            transition: .3s all ease;
        }
    }

    .icon {
        width: 100px;
        height: 100px;
        line-height: 100px;
        text-align: center;
        background: transparent;
        font-size: 60px;
        color: var(--main-color-one);
        margin-right: 20px;
        position: relative;
        background: rgba(14, 17, 90, 0.07);
        transition: .3s all ease;
        margin: auto;
        margin-bottom: 30px;
    }
}