.stuff{
    padding: 60px 0;
    background-color: #f3f3f3;
    position: relative;
    .round3{
        position: absolute;
        top: 0;
        right: 10%;
        img{
            animation: rotat 9s infinite linear;
        }
    }
    .round4{
        position: absolute;
        top: 50px;
        left: 20%;
        img{
            animation: rotat 9s infinite linear;
        }
    }
    .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;
            }
        }
    }
    .stuff_wrapper{
         padding-top: 70px;
        .stuff_wrap{
            background-color: #fff;
            padding: 0 0 20px 0;
            border-radius: 10px;
            box-shadow: 1px 1.732px 2px 0px rgba(0, 0, 0, 0.2);
            height: 410px;
            margin-bottom: 23px;
            cursor: pointer;
            .social_contact{
                  margin-bottom: 20px;
                  text-align: end;
                ul{
                    display: flex;
                    align-items: center;
                    justify-content: end;
                    li{
                        padding-left: 10px;
                        a{
                           i{
                            font-size: 23px;
                            color: $white;
                            background-color: #335db9;
                            height: 35px;
                            width: 35px;
                            text-align: center;
                            border: 1px solid #335db9;
                            line-height: 35px;
                            border-radius: 4px;
                           }
                           .tr{
                             color: white;
                             background-color: #00acee ;
                             border: 1px solid #00acee ;
                           }
                           .wp{
                            color: white;
                            background-color: #15cf59 ;
                            border: 1px solid #15cf59;
                           }
                        }
                    }
                }
            }
            .stuff_img{
                  height: 230px;
                  width: 230px;
                  display: flex;
                  justify-content: center !important;
                  align-items: center;
                  margin: 0 auto;
                  background-color: #08bcd8;
                  border-radius: 50%;
                  

                img{
                   max-width: 100%;
                   max-height: 100%;
                   border-radius: 50%;
                }
            }
            .stuff_info{
                  text-align: center;
                h4{
                    font-size: 22px;
                    color: #212529;
                    line-height: 30px;
                    font-weight: 600;
                    padding-top: 20px;
                    text-transform: uppercase;
                }
                h5{
                    font-size: 16px;
                    color: $primaryColor;
                    font-weight: 400; 
                    line-height: 20px; 
                }
            }
        }
    }
}