.author {
    display: flex;
    margin-top: 2rem;
    margin-bottom: 2rem;

    .author-avatar-wrap {
        width: 80px;
        height: 80px;
        border-radius: 100%;
        border: solid;
        border-color: #fff;
        overflow: hidden;
        margin-right: 1rem;

        .author-avatar {
            height: 100%;
        }
    }

    .author-about {
        display: flex;
        flex-direction: column;
        justify-content: center;

        .author-name {
            display: block;
            color: $gray-800;
            font-size: 16px;
        }

        .author-role {
            display: block;
            font-weight: bold;
            color: $primary;
        }
    }
}


.border-radius-15 {
    border-radius: 15px;
}


.service {
    background-color: rgba(255, 255, 255, .9);

    min-height: 250px;
    display: flex;
    flex-direction: row;
    justify-content: center;


    @include media-breakpoint-down(sm) {
        flex-direction: column;
        text-align: center;
    }


    &.service-item-left {
        text-align: left;

        @include media-breakpoint-down(sm) {

            text-align: left;
        }

    }

    &.service-item-right {
        //text-align: right;

        @include media-breakpoint-down(sm) {
            text-align: left;
        }


    }

    .service-icon-wrap {
        display: block;
        width: 100%;
        min-height: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        margin: auto;

        @include media-breakpoint-down(sm) {


            width: 100px;
            padding-top: 2rem;
            padding-bottom: 2rem;
        }


        * {
            display: inline-block;
            height: 90px;
            font-size: 40px;
            line-height: 50px;
        }
    }

    .service-title {
        font-size: 22px;
        line-height: 24px;
        display: block;
        color: #282f61;
        font-weight: bold;
    }

    .service-desc {

    }

}
