    /* style for style blog sidebar */
    
    .cwm-about-me-wrapper {
        max-width: 300px;
        overflow: hidden;
        background: #222;
        padding: 25px;
    }
    
    .cwm-my-img {
        overflow: hidden;
        text-align: center;
        width: 100%;
    }
    
    .cwm-my-img img {
        max-width: 150px;
        max-height: 150px;
        border-radius: 50%;
    }
    
    .cwm-about-description {
        display: block;
        overflow: hidden;
        text-align: center;
    }
    
    h2.cwm-about-title {
        text-align: center;
        margin: 10px 0;
        font-size: 25px;
        color: #fff;
        font-weight: bold;
    }
    
    .cwm-about-description p {
        margin: 0 0 10px 0;
        color: #f2f2f2;
        line-height: 1.4;
    }
    a.cwm-read-more {
        display: block;
        text-align: center;
        margin: 10px 0;
        background: #fff;
        color: #222;
        text-decoration: none;
        padding: 8px;
        border-radius: 5px;
    }
    
    .cwm-my-social-link {
        overflow: hidden;
        text-align: center;
    }
    
    a.cwm-read-more:hover {
        color: #fff;
        background: #888;
        transition: .5s;
    }
    
    .cwm-my-social-link a {
        color: #fff;
        font-size: 20px;
        padding: 0 10px;
    }
    
    .cwm-my-social-link a:hover {
        color: #ddd;
        transition: .5s;
        border-radius: 5px;
    }
    /* Author Box Style two */
    
    .cwm-about-me-wrapper.athr-box-two {
        overflow: initial;
        display: block;
        background: #2c3e50;
        position: relative;
    }
    
    .cwm-my-img.athr-box-two-img img {
        max-width: 200px;
        max-height: initial;
        border-radius: 0;
    }
    
    .cwm-about-me-wrapper.athr-box-two a.cwm-read-more {
        background: transparent;
        color: #fff;
        border: 2px solid #d3d3d3;
    }
    
    .cwm-about-me-wrapper.athr-box-two a.cwm-read-more:hover {
        background: #fff;
        color: #222;
        transition: .5s;
    }
    /* Responsive Design */
    
    @media(max-width:480px) {
        .cwm-about-me-wrapper {
            max-width: 100%;
        }
    }