/*--------------------------
    
    Version: 1.0
    Author: Asif Bahauddin
    Release Date: Jun 2022
---------------------------*/

// Image bordered
.img-bordered {
  border: 3px solid $gray-500;
  padding: 3px;
}

.img-bordered-sm {
  border: 2px solid $gray-500;
  padding: 2px;
}

// Rounded and Circle Images
.img-rounded {
  @include border-radius($border-radius);
}

.img-circle {
  @include border-radius(50%);
}

// Image sizes
.img-size-64,
.img-size-50,
.img-size-32 {
  height: auto;
}

.img-size-64 {
  width: 64px;
}

.img-size-50 {
  width: 50px;
}

.img-size-32 {
  width: 32px;
}

.user-image {
    @include media-breakpoint-up(sm) {
      float: none;
      line-height: 10px;
      margin-right: .4rem;
      margin-top: -8px;
    }

    border-radius: 50%;
    float: left;
    height: $sidebar-user-image-width;
    margin-right: 10px;
    margin-top: 32px;
    width: 32px;
  }

  // Lists
  .feature-items li {
    position: relative;
    padding-left: 27px;
    font-size: 15px;
    font-weight: 700;
    color: $color-tertiary;
    margin-bottom: 9px;

    &:before {
        content: "\f00c";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 0;
        font-size: 11px;
        width: 22px;
        height: 22px;
        line-height: 22px;
        text-align: center;
        border-radius: 50%;
        color: $color-primary;
        @include prefix(transform, translateY(-50%), webkit moz ms o);
    }
}

.about-layout1 h5 {
  margin-top: 0.67em;
  margin-bottom: 0.1em;  
}

.service-item .service__icon_fa {
  color: $color-secondary;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

