.department {
    padding: 50px 0;
    position: relative;
    background-image: url(../images/bg-shape1.png);
    background-repeat: no-repeat;
    opacity: .90;
    .round1{
        background-image: url(../images/shape2.png);
        z-index: -1;
        position: absolute;
        right: 100px;
    }
    .sectionHeader {
        text-align: center;

        h4 {
            font-size: 26px;
            color: $primaryColor;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 5px 0;
        }

        .headingStyle {
            position: relative;
            background: transparent linear-gradient(90deg, #1E0B9B 0%, #08bcd8 100%) 0% 0% no-repeat padding-box;
            height: 5px;
            width: 90px;
            border-radius: 30px;
            margin: 15px auto;

            &::after {
                background-color: #08bcd8;
                content: "";
                position: absolute;
                left: 0;
                box-shadow: 1px 1.732px 2px 0px rgba(0, 0, 0, 0.2);
                top: -2.7px;
                height: 10px;
                width: 10px;
                border-radius: 50%;
                -webkit-animation-duration: 3s;
                animation-duration: 3s;
                -webkit-animation-timing-function: linear;
                animation-timing-function: linear;
                -webkit-animation-iteration-count: infinite;
                animation-iteration-count: infinite;
                animation-direction: alternate-reverse;
                -webkit-animation-direction: alternate-reverse;
                -webkit-animation-name: watermark-animate;
                animation-name: watermark-animate;
            }
        }
    }

    .department_wrapper {
        padding-top: 60px;
        .department_wrapper {
            box-shadow: 1px 1.732px 2px 0px rgba(0, 0, 0, 0.2);
            margin-bottom: 30px;
            padding: 50px 15px;
            height: 380px;
            text-align: center;
            background: #fff;
            border-radius: 10px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            -ms-border-radius: 10px;
            -o-border-radius: 10px;
            margin-bottom: 23px;
            cursor: pointer;

            &:hover .circle img {
                width: 60px;
                margin: 32px auto;
            }

            &:hover .circle {
                border: 15px solid #08bcd8;
            }

            .circle {
                border: 5px solid #08bcd8;
                border-radius: 50%;
                box-shadow: 0 0 0 2px #e7e8ec inset;
                color: #27ae60;
                display: inline-block;
                height: 150px;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                transition: all 0.3s ease-in-out;
                margin-bottom: 10px;
                width: 150px;

                img {
                    width: 70px;
                    margin: 32px auto;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    transition: all 0.3 s ease-in-out;
                }

            }


            .department_text {
                text-align: center;
                padding-top: 20px;

                h4 {
                    font-size: 22px;
                    color: $black;
                    font-weight: 500;
                    line-height: 30px;
                }

                p {
                    font-size: 15px;
                    color: #585858;
                    font-weight: 400;
                    line-height: 25px;
                    padding-top: 5px;
                    text-align: center;
                }
            }

        }
    }
}

@keyframes watermark-animate {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}