/**
 * Macaw Tabs | Tabs jQuery Plugin
 *
 * @author    https://htmlcssfreebies.com/macaw-tabs/
 * @copyright Copyright (c) 2021  HTMLCSSFreebies.com
 * @license   MIT License, https://opensource.org/licenses/MIT
 * @version   v1.0.0
 */
/*
--------
* Macaw Tabs Plugin
* Theme: Macaw Aurora Tabs
--------
*/
.macaw-tabs.macaw-aurora-tabs {
  /*
   --------
   * Color Palette
   --------
   */
  --tab-color-white: #fff;
  --tab-color-black: #000;
  --tab-color-cadet: #292a47;
  --tab-color-fighter: #1e1e33;
  --tab-color-space: #383961;
  --tab-color-gray: #d7d9d7;
  --tab-color-english: #948238;
  /*
   --------
   * CSS Vars
   --------
   */
  --tab-bg-color: var(--tab-color-cadet);
  --tab-text-color: var(--tab-color-gray);
  --tab-border-color: var(--tab-color-space);
  --tab-active-bg-color: var(--tab-color-white);
  --tab-active-text-color: var(--tab-color-black);
  --tab-active-border-color: var(--tab-color-english);
  --tab-focus-bg-color: var(--tab-color-fighter);
  --tab-focus-text-color: var(--tab-color-white);
  --tab-focus-text-secondary-color: var(--tab-color-english);
  --tab-focus-border-color: var(--tab-color-fighter);
  /*
   --------
   * Style
   --------
   */
  display: flex;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 750px;
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] {
  position: relative;
  z-index: 3;
  display: flex;
  width: 20%;
  flex-direction: column;
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > * {
  border: none;
/*  border-bottom: 1px solid var(--tab-border-color);*/
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > *:last-child {
  border-bottom: none;
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab] {
  position: relative;
  margin: 0;
  overflow: visible;
  word-wrap: break-word;
  font-family: var(--global-heading-font-family);
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.625;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
      background: rgb(248, 248, 225);
  color: var(--tab-text-color);
  padding: 1.25rem;
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab] .icon {
  font-size: 1.5rem;
  line-height: 1;
  width: 30px;
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab] .label {
  display: none;
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab] > * {
  padding: 0;
}
/*.macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab]:hover, .macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab]:focus {
  outline: 0;
  background-color: var(--tab-focus-bg-color);
  color: var(--tab-focus-text-color);
}*/
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab][aria-selected=true] {
  background-color: var(--tab-active-bg-color);
  color: var(--tab-active-text-color);
  border-left: 5px solid #2377B1;
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab][aria-selected=true] .icon {
  color: var(--tab-focus-text-secondary-color);
  width: 40px;
  padding: 5px;
  border-radius: 50px;
  margin-right: 5px;
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab][aria-selected=true]:hover, .macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab][aria-selected=true]:focus {
  outline: 0;
  background-color: var(--tab-active-bg-color);
  color: #000;
}
.macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab]:hover, .macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab]:focus, .macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab]:active {
  outline: 0;
}
.macaw-tabs.macaw-aurora-tabs > [role=tabpanel] {
  overflow: hidden;
  position: relative;
  z-index: 2;
  font-family: var(--global-body-font-family);
  font-weight: normal;
  font-size: 1rem;
  line-height: 1.625;
  width: 80%;
  padding: 1.25rem 0.9375rem;
  background-color: var(--tab-active-bg-color);
  color: var(--tab-active-text-color);
/*  border-left: 6px solid var(--tab-active-bg-color);*/
}
.macaw-tabs.macaw-aurora-tabs > [role=tabpanel] a, .macaw-tabs.macaw-aurora-tabs > [role=tabpanel] a:visited {
  cursor: pointer;
  color: inherit;
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  text-underline-offset: 0.1875rem;
}
.macaw-tabs.macaw-aurora-tabs > [role=tabpanel] a:hover {
  text-decoration: none;
}
.macaw-tabs.macaw-aurora-tabs > [role=tabpanel] > * {
  margin-top: 24px;
  margin-bottom: 24px;
  opacity: 0;
}
.macaw-tabs.macaw-aurora-tabs > [role=tabpanel] > *:first-child {
  margin-top: 0;
}
.macaw-tabs.macaw-aurora-tabs > [role=tabpanel] > *:last-child {
  margin-bottom: 0;
}
.macaw-tabs.macaw-aurora-tabs > [role=tabpanel].active > * {
  opacity: 1;
  animation: zoomIn;
  animation-duration: 1.5s;
}
.macaw-tabs.macaw-aurora-tabs > [role=tabpanel]:focus {
  outline: 0;
/*  border-left: 6px solid var(--tab-focus-border-color);*/
}

/*
--------
* Media Queries
--------
*/

@media only screen and (min-width: 768px) {
  .macaw-tabs.macaw-aurora-tabs > [role=tablist] {
    width: 25%;
  }
  .macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab] {
    font-size: 14px;
    line-height: 1.8333333333;
    justify-content: flex-start;
    padding: 0.3rem 1.25rem;
    background: rgb(248, 248, 225);
    color: #000;
    transition: all 0.2s;
  }
  .macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab] .icon {
    font-size: 1.25rem;
    line-height: 1.8333333333;
    width: 35px;
    padding: 5px;
    border-radius: 50px;
    margin-right: 5px;
  }
  .macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab] .label {
    display: block;
  }
  .macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab] > * {
    padding-right: 0.375rem;
  }
  .macaw-tabs.macaw-aurora-tabs > [role=tablist] > [role=tab] > *:last-child {
    padding-right: 0;
  }
  .macaw-tabs.macaw-aurora-tabs > [role=tabpanel] {
    font-size: 1.125rem;
    line-height: 1.8333333333;
    width: 75%;
    padding: 1.25rem 1.25rem;
  }
}

@media only screen and (min-width: 1280px) {
  .macaw-tabs.macaw-aurora-tabs {
    max-width: 100%;
  }
}


/*-----------Testimonial---------------*/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
 #testimonial-area .section-heading h2 {
   font-size: 48px;
   line-height: 58px;
}
 .testi-wrap {
   position: relative;
   height: 520px;
   margin-top: -80px;
}
 .client-single {
   margin-top: 20px;
   text-align: center;
   position: absolute;
   -webkit-transition: all 1s ease;
   transition: all 1s ease;
}
 .client-info, .client-comment {
   -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
}
 .client-single.inactive .client-comment, .client-single.inactive .client-info {
   display: none;
}
 .client-single.inactive .client-comment, .client-single.inactive .client-info {
   opacity: 0;
   visibility: hidden;
}
 .client-single.position-1 {
   -webkit-transform: scale(0.65);
   transform: scale(0.65);
}
 .client-single.position-2 {
   left: -40px;
   top: 105px;
}
 .client-single.position-3 {
   left: -60px;
   top: 240px;
   -webkit-transform: scale(0.4) !important;
   transform: scale(0.4) !important;
}
 .client-single.position-4 {
   left: 55px;
   top: 380px;
}
 .client-single.position-5 {
   top: 30px;
   right: 55px;
}
 .client-single.position-6 {
   top: 225px;
   right: -40px;
}
 .client-single.position-7 {
   top: 400px;
   right: 45px;
   -webkit-transform: scale(0.4) !important;
   transform: scale(0.4) !important;
}
 .client-single.active {
   top: 10%;
   left: 50%;
   -webkit-transform: translateX(-50%);
   transform: translateX(-50%);
   z-index: 10;
   width: 72%;
}
 .client-single.active .client-comment, .client-single.active .client-info {
   -webkit-transition-delay: 0.6s;
   transition-delay: 0.6s;
}
 .client-single:not(.active) {
   -webkit-transform: scale(0.55);
   transform: scale(0.55);
   z-index: 99;
}
 .client-single.active .client-img {
   width: 160px;
   height: 160px;
   margin: 0 auto 24px;
   position: relative;
}
 .client-single.active .client-img:before {
   border-radius: 100%;
   content: '';
   background-image: -webkit-gradient(linear, left top, left bottom, from(#9d5bfe), to(#3890fe));
   background-image: linear-gradient(180deg, #9d5bfe 0%, #3890fe 100%);
   padding: 5px;
   width: 160px;
   height: 160px;
   top: -4px;
   left: 0px;
   position: absolute;
   z-index: -1;
}
 .client-single .client-img img {
   width: 150px;
   border-radius: 50%;
   border: 8px solid #d1e9ff;
   cursor: pointer;
}
 .client-single.active .client-img img {
   max-width: 160px;
   margin: 0 auto 24px;
   border: 0;
}
 .client-comment {
   padding: 0 30px;
}
 .client-comment h3 {
   font-size: 22px;
   line-height: 32px;
   color: #505b6d;
}
 .client-comment span i {
   font-size: 60px;
   color: #0084ff;
   margin: 40px 0 24px;
   display: inline-block;
}
 .client-info h3 {
   color: #000;
   font-weight: 600;
   margin-bottom: 4px;
}
 .client-info p {
   color: #0084ff;
   text-transform: uppercase;
}
 @media only screen and (min-width: 768px) and (max-width: 991px) {
   #testimonial-area .section-heading h2 {
     font-size: 30px;
  }
   .client-comment h3 {
     font-size: 18px;
     line-height: 28px;
  }
   .client-single.active {
     width: 60%;
  }
   .client-single:not(.active) {
     -webkit-transform: scale(0.55);
     transform: scale(0.35);
  }
   .client-single.position-3, .client-single.position-7 {
     -webkit-transform: scale(0.3) !important;
     transform: scale(0.3) !important;
  }
   .client-single.active .client-img img {
     max-width: 100px;
  }
   .client-single.active .client-img::before {
     padding: 5px;
     width: 108px;
     height: 108px;
     top: -4px;
     left: 6px;
  }
   .client-single.active .client-img {
     width: 120px;
     height: 100px;
  }
   .testi-wrap {
     height: 580px;
  }
   #testimonial-area {
     padding: 100px 0 0;
  }
}
 @media only screen and (min-width: 480px) and (max-width: 767px) {
   #testimonial-area .section-heading h2 {
     font-size: 30px;
  }
   .client-comment h3 {
     font-size: 14px;
     line-height: 26px;
  }
   .client-single.active {
     width: 60%;
  }
   .client-comment span i {
     font-size: 40px;
  }
   .client-single:not(.active) {
     -webkit-transform: scale(0.55);
     transform: scale(0.35);
  }
   .client-single.position-5, .client-single.position-7 {
     right: 0;
  }
   .client-single.position-4 {
     left: 0;
  }
   .client-single.position-3, .client-single.position-7 {
     -webkit-transform: scale(0.3) !important;
     transform: scale(0.3) !important;
  }
   .client-single.active .client-img img {
     max-width: 80px;
  }
   .client-single.active .client-img::before {
     padding: 5px;
     width: 88px;
     height: 88px;
     top: -4px;
     left: 16px;
  }
   .client-single.active .client-img {
     width: 120px;
     height: 100px;
  }
   .testi-wrap {
     height: 630px;
  }
}
 @media only screen and (min-width: 360px) and (max-width: 479px) {
   #testimonial-area .section-heading h2 {
     font-size: 30px;
     line-height: 40px;
  }
   .client-comment h3 {
     font-size: 14px;
     line-height: 26px;
  }
   .client-single.active {
     width: 70%;
  }
   .client-comment span i {
     font-size: 40px;
  }
   .client-single:not(.active) {
     -webkit-transform: scale(0.25);
     transform: scale(0.25);
  }
   .client-single.position-5, .client-single.position-7, .client-single.position-6 {
     right: -50px;
  }
   .client-single.position-4 {
     left: -60px;
  }
   .client-single.position-3 {
     left: -60px;
  }
   .client-single.position-3, .client-single.position-7 {
     -webkit-transform: scale(0.25) !important;
     transform: scale(0.25) !important;
  }
   .client-single.active .client-img img {
     max-width: 80px;
  }
   .client-single.active .client-img::before {
     padding: 5px;
     width: 88px;
     height: 88px;
     top: -4px;
     left: 16px;
  }
   .client-single.active .client-img {
     width: 120px;
     height: 100px;
  }
   .testi-wrap {
     height: 600px;
     overflow-y: auto;
  }
  .client-comment{
    padding: 0!important;
  }
}
 @media only screen and (min-width: 320px) and (max-width: 359px) {
   #testimonial-area .section-heading h2 {
     font-size: 30px;
  }
   .client-comment h3 {
     font-size: 14px;
     line-height: 26px;
  }
   .client-single.active {
     width: 80%;
  }
   .client-comment span i {
     font-size: 40px;
  }
   .client-single:not(.active) {
     -webkit-transform: scale(0.25);
     transform: scale(0.25);
  }
   .client-single.position-5, .client-single.position-7, .client-single.position-6 {
     right: -70px;
  }
   .client-single.position-4 {
     left: -60px;
  }
   .client-single.position-3 {
     left: -75px;
  }
   .client-single.position-3, .client-single.position-7 {
     -webkit-transform: scale(0.25) !important;
     transform: scale(0.25) !important;
  }
   .client-single.active .client-img img {
     max-width: 80px;
  }
   .client-single.active .client-img::before {
     padding: 5px;
     width: 88px;
     height: 88px;
     top: -4px;
     left: 16px;
  }
   .client-single.active .client-img {
     width: 120px;
     height: 100px;
  }
   .testi-wrap {
     height: 550px;
  }
}
 