/* Tiny slider CSS library */

.tns-outer {
  padding: 0 !important;
}

.tns-outer > button {
  display:none;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls],
.tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}

.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  clear: both;
  content: '';
  display: table;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  left: 0;
  position: relative;
}

.tns-gallery {
  left: 0;
  min-height: 1px;
  position: relative;
}

.tns-gallery > .tns-item {
  left: -100%;
  position: absolute;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}

.tns-gallery > .tns-slide-active {
  left: auto !important;
  position: relative;
}

.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  opacity: 0.6;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  left: -10000em;
  position: absolute;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  filter: alpha(opacity=100);
  opacity: 1;
  z-index: 0;
}

.tns-normal,
.tns-fadeOut {
  filter: alpha(opacity=0);
  opacity: 0;
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div,
.tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  height: 10px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 310px;
}

.tns-t-ct {
  position: absolute;
  right: 0;
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: calc(100% * 70 / 3);
}

.tns-t-ct:after {
  clear: both;
  content: '';
  display: table;
}

.tns-t-ct > div {
  height: 10px;
  float: left;
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
}

/* Slider */

.tns-outer {
  
  position: relative;
  margin-bottom: 1.4rem;
}

@media(max-width: 767px) {
  .tns-item {
    padding: 0;
  }
}

.tns-nav {
  bottom: -50px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
}

.tns-nav button {
  background-color: #d0d0d0;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  height: 12px;
  line-height: 0;
  margin: 0 0.25em;
  padding: 0;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  width: 12px;
}

.tns-nav button:hover,
.tns-nav button:focus {
  border: 2px solid transparent;
}

.tns-nav .tns-nav-active {
  background-color: #00D1FF;
}

/* Testimonial */

.testimonial-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.testimonial__inner-wrapper {
  background-color: #fff;
  height: 100%;
  padding: 2.1rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 209, 255, 0.40);
}

.testimonial__content {
  border: none;
  font-size: 1rem;
  margin: 0;
  padding: 0;
}

.testimonial__author-image,
.testimonial__author-name {
  display: inline-block;
  margin: 0 0.35rem;
  vertical-align: middle;
  font-weight:bold;
}

.testimonial__author-image {
  width: auto;
  max-height:50px;
  display:block;
  margin-bottom:8px;
}

.testimonial__author-name {
  font-size: 0.875rem;
  font-weight: normal;
  font-style: normal;
}
.testimonial__inner-wrapper .testimonial__author-name {
color: #00D1FF;
font-size: 24px;
font-style: normal;
font-weight: 700;
}
.testimonial-slider .testimonial {
    position: relative;
  padding-top: 30px;
}
.testimonial-slider .quote-icon {
    position: absolute;
    top: 0px;
    right: 60px;
}
@media (min-width: 680px){
 .testimonial__inner-wrapper .testimonial__author {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
   margin-top: 25px;
} 
}