.member_wrapper{
    .electon_wrap{
        text-align: center;
        padding: 10px;
        background-color: $white;
        border-radius: 16px;
        box-shadow: 0 1px 1px 1px rgba(0,0,0,.129);
        border-top: 5px solid $primaryColor;
        height: 280px;
        position: relative;
        margin-top: 18px;
            .elec_img{
                img{
                    height: 120px;
                    width: 120px;
                    border-radius: 10px;
                    object-fit: cover;
                    border-radius: 50%;
                }
            }
            h4{
                font-size: 16px;
                font-weight: 600;
                color: #333;
                line-height: 22px;
                padding-top: 10px;
            }
            h5{
                font-size: 13px;
                font-weight: 400;
                color: $primaryColor;
                line-height: 22px;
                display: inline-block;
                padding: 1px 20px;
                border-radius: 35px;
                background-color: #4967dd27;
            }
            .icon_list{
                position: absolute;
                bottom: 15px;
                left: 0;
                width: 100%;
                ul{
                    display: flex;
                    justify-content:center;
                    align-items: center;
                    li{
                        height: 28px;
                        width: 28px;
                        background-color: #3b5998;
                        margin: 0 3px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        a{
                            line-height: 0px;
                            i{
                                font-size: 15px;
                                color: #fff;
                            }
                        }
                    }
                    .twitter{
                        background-color: #00acee;
                    }
                    .insta{
                        background-color: #d65737;
                    }
                    .linkedin{
                        background-color: #0A66C2;
                    }
                }
            }
      }
}

.mamber_search{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    .search_box{
        width: 280px;
        position: relative;
        .form_controll{
             background-clip: padding-box;
             background-color: #f7f3f3ec;
             border: 1px solid #d5d5d5;
             border-radius: 10px;
             color: #333;
             display: block;
             height: 45px;
             padding: 0 10px;
             width: 100%;
        }
        i{
            font-size: 20px;
            color: #585656;
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
        }
    }
}