// Core variables and mixins
@import "sub-stylesheet/_variables";
@import "sub-stylesheet/_mixins";
@import "sub-stylesheet/_global";




.testimonial-style1 {
  padding: 50px 0 0;
  @include breakpoint(md){
    padding: 100px 0 0;
  }
  @include breakpoint(lg){
    padding: 100px 0;
  }
  .testimonial-massage {
    position: relative;
    padding-bottom: 50px;
    @include breakpoint(lg){
      margin-left: 60px;
    }
    .testimonial-content {
      text-align: center;
      @include breakpoint(lg){
        padding-left: 10px;
        text-align: left;
      }
    }
    .testimonial-control-btn-group {
      width: 100px;
      height: 40px;
      position: absolute;
      left: 50%;
      margin-left: -50px;
      bottom: 25px;
      z-index: 2;
      @include breakpoint(lg){
        left: 0;
        margin-left: 0;
      }
      .testimonial-swiper-button-next, .testimonial-swiper-button-prev {
        width: 35px;
        height: 35px;
        text-align: center;
        line-height: 35px;
        border: 1px solid #c2c2c2;
        color: #c2c2c2;
        border-radius: 3px;
        margin: 3px;
        display: inline-block;
        cursor: pointer;
        background-image: none;
        opacity: 1;
        outline: none;
        @include transition(0.3s);
        &:active,&:focus,&:hover {
          border-color: #ff6360;
          color: #ff6360;
          outline: none;
        }
        &.swiper-button-disabled {
          cursor: not-allowed;
          pointer-events: unset;
        }
      }
    }
  }
  .testimonial-thumbs {
    overflow: hidden;
    width: 250px;
    margin: auto;
    padding: 30px 0;
    @include breakpoint(sm){
      width: 350px;
    }
    .swiper-slide {
      text-align: center;
    }
    .thumb {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      overflow: hidden;
      opacity: 0.6;
      margin: auto;
      cursor: pointer;
      @include transition(0.3s);
      img {
        width: 100%;
        height: 100%;
      }
      @include breakpoint(sm){
        width: 80px;
        height: 80px;
      }
    }
    .thumb-content {
      padding-top: 10px;
      opacity: 0;
      @include transition(0.3s);
      -webkit-transform: scaleY(0);
      -moz-transform: scaleY(0);
      -ms-transform: scaleY(0);
      -o-transform: scaleY(0);
      transform: scaleY(0);transform: scaleY(0);
      .name {
        margin-bottom: 0;
        line-height:1.5;
        color: $title-color;
        font-weight: 400;
        font-size: 14px;
        @include breakpoint(sm){
          font-size: 18px;
        }
      }
      .designation {
        text-transform: uppercase;
        line-height: 1;
        color: #acacac;
        font-size: 12px;
        @include breakpoint(sm){
          font-size: 14px;
        }
      }
    }
    .swiper-slide-thumb-active {
      .thumb {
        opacity: 1;
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3);
      }
      .thumb-content {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: top;
        -moz-transform-origin: top;
        -ms-transform-origin: top;
        -o-transform-origin: top;
        transform-origin: top;
      }
    }
  }
}









// testimonial style 2 

.testimonial-style2 {
  overflow: hidden;
  .testimonial-body {
    padding: 30px;
    background-color: $white;
    border: 1px solid #e9e9e9;
    @include border-radius(10px);
  }
  .author-image {
    width: 90px;
    height: 90px;
    margin: auto;
    @include border-radius(50%);
    overflow: hidden;
    img {
      width: 100%;
    }
    @include breakpoint(sm){
      margin: unset;
    }
  }

  .testimonial-content {
    width: calc(100% - 0px);
    text-align: center;
    padding-left: 20px;
    position: relative;
    .qoute-icon {
      position: absolute;
      left: 20px;
      top: -15px;
      color: $blue;
      opacity: 0.2;
      font-size: 50px;
    }
    .rating {
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
      margin-top: 15px;
      i {
        color: $blue;
      }
    }
    .text {
      margin-bottom: 10px;
    }
    .name {
      font-weight: 600;
    }
    .designation {
      font-size: 14px;
      color: #d1d1d1;
    }
    @include breakpoint(sm){
      width: calc(100% - 90px);
      text-align: left;
      .rating {
        margin-top: 0;
      }
    }
  }
}




// testimonial style3 
.testimonial-style3 {
  overflow: hidden;
  .testimonial-body {
    padding: 30px;
    background-color: $white;
    border: 1px solid #e9e9e9;
    @include border-radius(10px);
  }
  .author-image {
    width: 90px;
    height: 90px;
    margin: auto;
    @include border-radius(50%);
    overflow: hidden;
    img {
      width: 100%;
    }
    @include breakpoint(lg){
      margin: unset;
    }
  }

  .testimonial-content {
    width: calc(100% - 0px);
    text-align: center;
    padding-left: 0;
    position: relative;
    .rating {
      margin-bottom: 10px;
      margin-top: 15px;
      i {
        color: #f6c416;
      }
    }
    .text {
      margin-bottom: 25px;
    }
    .name {
      font-weight: 600;
      margin: 0;
    }
    .designation {
      font-size: 14px;
      color: #d1d1d1;
    }
    @include breakpoint(lg){
      width: calc(100% - 90px);
      text-align: left;
      padding-left: 20px;
      .rating {
        margin-top: 0;
        position: absolute;
        z-index: 1;
        right: 0;
        bottom: 0;
      }
    }
  }
}