// Card Three
.expert-slider-one {
  .item {
    margin: 0 15px;
  }
}
.card-style-three {
  .name {
    font-weight: 500;
    font-size: 20px;
    color: #212529;
    cursor: pointer;
    &:hover {
      color: #244034;
      text-decoration: underline;
    }
  }
  .img-meta {
    margin-bottom: 20px;
    img {
      border-radius: 200px;
    }
  }
}

.card-style-three .post {
  color: rgba($color: #000000, $alpha: 0.5);
}

// Expert Section
.expert-section-one {
  .slick-arrow-one {
    position: absolute;
    right: 0;
    top: -100px;
  }
}
.slick-arrow-one {
  margin-left: -2px;
  margin-right: -2px;
  li {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #000;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    transition: all 0.2s linear;
    display: flex;
    align-items: center;
    justify-content: center;

    &:hover {
      background: #d2f34c;
    }
  }
  &.color-two li:hover {
    background: #d2f34c;
    color: #fff;
  }
}

.expert-slider-two {
  margin-left: -15px;
  margin-right: -15px;
  .slick-slide {
    margin: 0 15px;
  }
  .slick-dots {
    position: relative;
    padding: 0;
    margin: 65px 0 0;
    justify-content: center;
    bottom: 0;
    display: flex;
    &:after,
    &::before {
      content: "";
      position: absolute;
      width: 44%;
      height: 1px;
      background: #e0e0e0;
      top: 4px;
      left: 0;
    }
    &::before {
      left: auto;
      right: 0;
    }
    li {
      margin: 0;
      padding: 0;
      width: auto;
      height: auto;
      button {
        text-indent: -50000px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        margin: 0 5px;
        background: #e4e4e4;
        transition: all 0.3s ease-in-out;
      }
      &.slick-active {
        button {
          background: var( --e-global-color-accent );
        }
      }
    }
  }
}

.card-style-eight .img-meta {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  &::before {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    right: -25px;
    bottom: -25px;
    transform: rotate(45deg);
  }
img {
  width: 100%;
}
}
.card-style-eight {
  .name {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    &:hover {
      color: var( --e-global-color-accent );
    }
  }
  .post {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.7);
  }
}
