.product-search .product-search-form .product-search-form {
    position: relative;
}
.product-search .product-search-form .product-search-form input,
.product-search .search-wrapper input{
    border: none;
    border-bottom: 1px solid #e5e5e5;
    font-size: 20px;
    font-family: var(--primary-font);
    padding-right: 60px;
    color: var(--primary-color);
    padding: 0px 40px 0 20px;
    height: 45px;
}
.product-search .product-search-form .product-search-form button[type=submit]{
    position: absolute;
    right: 20px;
    left: auto;
    top: auto;
    bottom: 12px;
    background: none;
    padding: 0;
    font-size: 0;
}
.product-search .product-search-form .product-search-form button[type=submit]::after{
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    font-size: 13px;
}
.search-results.active {
    display: block;
    margin: 30px 0 0;
    float: left;
    width: 100%;
}

.search-results.active ul {
    list-style: none;
    margin:0 !important;
    padding: 0 !important;
}
.search-results.active ul::-webkit-scrollbar-track {
    background-color: #d7d7d7;
}
.search-results.active ul::-webkit-scrollbar-thumb {
    background-color: #a0a0a0;
}
.search-results.active ul::-webkit-scrollbar {
	height:2px;
}
.search-results.active ul li {
    display: block;
    padding: 0 20px;
    position: relative;
    float: left;
    width: 50%;
}

.search-results.active ul li:last-child {
    border-bottom: none;
}
.search-results.active ul li a {
    display: flex;
    width: 100%;
    align-items: center;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 0 30px;
    margin: 0 0 30px;
}
.search-results.active ul li a:hover{
    color: #111;
}
.search-results.active ul li a > * {
    display: table-cell;
    vertical-align: top;
}

.search-results.active .product-image {
    width: 15%;
    max-width: 15%;
}
.search-results.active .product-data .product-sku,
.search-results.active .product-data .product-categories{
    color: #666;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    text-align: left;
}
.search-results.active a:hover .product-data .product-sku,
.search-results.active a:hover .product-data .product-categories{
    color: #111;
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
    }
.product-data {
    padding-left: 24px;
}

.search-results.active h3 {
    display: block;
    text-align: left;
}
.search-results.active .product-data h3,
.search-results.active .product-data .product-price {
    margin: 0 0 10px;
}
.product-data div:not(.product-categories) {
    display: inline-block;
    vertical-align: middle;
}
.product-data{
    text-align: left;
}
.product-data .product-price .regular-price{
    color: #666;
}
.product-data .product-price .sale-price{
    color: #111;
    font-weight: 500;
    position: relative;
    padding: 0 0 0 12px;
    margin: 0 0 0 6px;
}
.product-data .product-price .sale-price::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 6px;
    height: 2px;
    content: '';
    background: #666;
    margin: auto;
}
.product-data .product-stock {
    padding: 4px 8px;
    background: #eeeeee;
    border-radius: 4px;
    position: absolute;
    bottom: 30px;
    right: 0;
}
.product-categories > span {
    display: inline-block;
    margin-right: 4px;
}
.product-categories > span:after {
    content: ",";
}

.product-categories > span:last-child:after {
    content: "";
}

.product-categories > span:last-child {
    margin-right:0;
}

.product-search select {
    width: 100% !important;
    min-height: 40px !important;
    margin-bottom: 16px;
}

.product-search select,
.product-search input {
    background: #ffffff;
    border:1px solid #e0e0e0;
}

.search-wrapper {
    position: relative;
}

.search-wrapper input {
    padding-right: 35px !important;
}

.search-wrapper svg {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    fill:#bdbdbd;
    animation:loading 500ms 0ms infinite normal linear;
    transform-origin: center;
    opacity: 0;
}

.search-wrapper.loading svg {
    opacity:1;
}

@keyframes loading {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}

@media(min-width: 1200px){
    .search-results.active ul {
        overflow: auto;
        height: 570px;
        scrollbar-width: thin;
    }
}

@media(max-width: 1199px){
    .product-data .product-price{
        top: 10px;
    }
    .product-data h3{
        font-size: 20px;
        margin: 0 0 15px;
    }
}
@media(max-width: 991px){
    .search-results.active ul li{
        width: 100%;
    }
}
@media(max-width: 767px){
    .search-results.active .product-image {
        width: 20%;
        max-width: 20%;
    }
    .product-search .product-search-form .product-search-form input, .product-search .search-wrapper input{
        font-size: 18px;
    }
    .product-data h3{
        margin: 0 0 12px;
    }
}
@media(max-width: 575px){
    .product-data h3{
        font-size: 16px;
        margin: 0 0 8px;
    }
    .search-results .product-data .product-sku, .search-results .product-data .product-categories{
        font-size: 13px;
        float: left;
        width: 100%;
    }
    .search-results.active ul li{
        padding: 0;
    }
    .search-results.active .product-data{
        padding-left: 15px;
    }
    .product-data .product-price,
    .product-data .product-stock{
        position: static;
    }
    .product-data .product-stock{
        font-size: 12px;
        margin: 10px 0 0;
    }
    .product-data .product-price{
        margin: 0 0 5px;
        float: left;
        width: 100%;
    }
}
@media(max-width: 480px){
    .search-results.active .product-image {
        width: 70%;
        max-width: 70%;
    }
   
}


/* main {
    padding: 2rem 0;
} */
.tiny {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
}
.swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.swiper-container:after {
    content: '';
    display: block;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, black 50%, transparent 50%);
    background-size: 10% 1px;
    background-position: -50px;
    background-repeat: repeat-x;
    position: absolute;
    left: -10%;
    top: 40%;
    animation: line-slide 60s forwards infinite linear;
    z-index: 1;
}
.swiper-container.swiper--bottom:after {
    animation-direction: reverse;
}
.swiper-wrapper {
    -webkit-transition-timing-function: linear !important;
    transition-timing-function: linear !important;
    position: relative;
}
.swiper-slide {
    text-align: center;
    /* font-size: 33px; */
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}
@keyframes line-slide {
    0% {
        background-position: -5% 0;
   }
    100% {
        background-position: 100% 0;
   }
}



.swiper-container {
    overflow: visible;
}
.swiper-pagination {
    position: absolute;
    bottom: -25px;
}










.progress-sc {
    background: #cccccc;
}
.progress-sc {
    display: inline-block;
    margin-top: 5px;
    width: 100%;
    height: 5px;
    margin-bottom: 15px;
    -webkit-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.progress-sc span {
    background: #ffbb00;
}

.progress-sc span {
    background: #ffbb00;
    display: block;
    height: 100%;
    width: 0;
}


/** Price */


body {
    font-size: 1.6rem;
    font-family: "Open Sans", sans-serif;
    color: #2d3d4f;
    background-color: #1bbc9d;
  }
  
  a {
    text-decoration: none;
  }
  
  .pricing-container {
    width: 90%;
    max-width: 1170px;
    margin: 4em auto;
  }
  
  .pricing-container {
      margin: 6em auto;
  }
  .pricing-container.full-width {
      width: 100%;
      max-width: none;
  }
  
  .pricing-switcher {
    text-align: center;
  }
  
  .pricing-switcher .fieldset {
    display: inline-block;
    position: relative;
    padding: 2px;
    border-radius: 50em;
    background-color: var(--primary-color);
    margin: 0;
  }
  
  .pricing-switcher input[type="radio"] {
    position: absolute;
    opacity: 0;
  }
  
  .pricing-switcher label {
    position: relative;
    z-index: 1;
    display: inline-block;
    float: left;
    width: 90px;
    height: 40px;
    line-height: 40px;
    cursor: pointer;
    font-size: 16px;
    color: var(--white-color);
  }
    .pricing-switcher input[type="radio"]:checked + label{
    color: var(--secondary-color);
    transition: all 400ms ease-in-out 0s;
    -webkit-transition: all 400ms ease-in-out 0s;
    -moz-transition: all 400ms ease-in-out 0s;
    -o-transition: all 400ms ease-in-out 0s;
    -ms-transition: all 400ms ease-in-out 0s;
  }
  .pricing-switcher .switch {
      position: absolute;
    top: 4px;
    left: 4px;
    height: 36px;
    width: 90px;
    background-color: var(--tertiary-color);
    border-radius: 50em;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
  }
  
  .pricing-switcher input[type="radio"]:checked + label + .switch,
  .pricing-switcher input[type="radio"]:checked + label:nth-of-type(n) + .switch {
    -webkit-transform: translateX(85px);
    -moz-transform: translateX(85px);
    -ms-transform: translateX(85px);
    -o-transform: translateX(85px);
    transform: translateX(85px);
}
  
  .no-js .pricing-switcher {
    display: none;
  }
  
  .pricing-list {
    margin: 2em 0 0;
  }
  
  .pricing-list > li {
    position: relative;
    margin-bottom: 1em;
  }
  
  @media only screen and (min-width: 768px) {
    .pricing-list {
      margin: 3em 0 0;
    }
    .pricing-list:after {
      content: "";
      display: table;
      clear: both;
    }
    .pricing-list > li {
      width: 33.3333333333%;
      float: left;
      padding-left: 5px;
      padding-right: 5px;
    }
    .has-margins .pricing-list > li {
      width: 32.3333333333%;
      float: left;
      margin-right: 1.5%;
    }
    .has-margins .pricing-list > li:last-of-type {
      margin-right: 0;
    }
  }
  
  .pricing-wrapper {
    position: relative;
  }
  
  .touch .pricing-wrapper {
    -webkit-perspective: 2000px;
    -moz-perspective: 2000px;
    perspective: 2000px;
  }
  
  .pricing-wrapper.is-switched .is-visible {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-animation: rotate 0.5s;
    -moz-animation: rotate 0.5s;
    animation: rotate 0.5s;
  }
  
  .pricing-wrapper.is-switched .is-hidden {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: rotate-inverse 0.5s;
    -moz-animation: rotate-inverse 0.5s;
    animation: rotate-inverse 0.5s;
    opacity: 0;
  }
  
  .pricing-wrapper.is-switched .is-selected {
    opacity: 1;
  }
  
  .pricing-wrapper.is-switched.reverse-animation .is-visible {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-animation: rotate-back 0.5s;
    -moz-animation: rotate-back 0.5s;
    animation: rotate-back 0.5s;
  }
  
  .pricing-wrapper.is-switched.reverse-animation .is-hidden {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    -webkit-animation: rotate-inverse-back 0.5s;
    -moz-animation: rotate-inverse-back 0.5s;
    animation: rotate-inverse-back 0.5s;
    opacity: 0;
  }
  
  .pricing-wrapper.is-switched.reverse-animation .is-selected {
    opacity: 1;
  }
  
  .pricing-wrapper > li {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
	  transition: transform 0.6s;
  }
  
  /* .pricing-wrapper > li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50px;
    pointer-events: none;
    background: -webkit-linear-gradient( right , #ffffff, rgba(255, 255, 255, 0));
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
  } */
  
  .pricing-wrapper > li.is-ended::after {
    display: none;
  }
  
  .pricing-wrapper .is-visible {
    position: relative;
    z-index: 5;
  }
.pricing-wrapper .is-hidden {
	 transform: rotateY(180deg);
  }
  
  .pricing-wrapper .is-hidden {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
   /* -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg); */
  }
  
  .pricing-wrapper .is-selected {
    z-index: 3 !important;
  }
  
  @media only screen and (min-width: 768px) {
    .pricing-wrapper > li::before {
      content: '';
      position: absolute;
      z-index: 6;
      left: -1px;
      top: 50%;
      bottom: auto;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      height: 50%;
      width: 1px;
      background-color: #b1d6e8;
    }
    .pricing-wrapper > li::after {
      display: none;
    }
    .exclusive .pricing-wrapper > li {
      box-shadow: inset 0 0 0 3px #2d3e50;
    }
    .has-margins .pricing-wrapper > li,
    .has-margins .exclusive .pricing-wrapper > li {
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    }
    :nth-of-type(1) > .pricing-wrapper > li::before {
      display: none;
    }
    .has-margins .pricing-wrapper > li {
      border-radius: 4px 4px 6px 6px;
    }
    .has-margins .pricing-wrapper > li::before {
      display: none;
    }
  }
  
  @media only screen and (min-width: 1500px) {
    .full-width .pricing-wrapper > li {
      padding: 2.5em 0;
    }
  }
  
  .no-js .pricing-wrapper .is-hidden {
    position: relative;
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
    margin-top: 1em;
  }
  
  @media only screen and (min-width: 768px) {
    .exclusive .pricing-wrapper > li::before {
      display: none;
    }
    .exclusive + li .pricing-wrapper > li::before {
      display: none;
    }
  }
  
  .pricing-header h2 {
    padding: 0.9em 0.9em 0.6em;
      font-weight: 400;
      margin-bottom: 30px;
      margin-top: 10px;
      text-transform: uppercase;
    text-align: center;
  }
  
  .pricing-header {
      height: auto;
      padding: 1.9em 0 1.6em;
      pointer-events: auto;
      text-align: center;
      color: #173d50;
      background-color: transparent;
  }
  
  .exclusive .pricing-header {
      color: #1bbc9d;
      background-color: transparent;
  }
  
  .pricing-header h2 {
      font-size: 2.8rem;
      letter-spacing: 2px;
  }
  
  .currency,
  .value {
    font-size: 3rem;
    font-weight: 300;
  }
  
  .duration {
    font-weight: 700;
    font-size: 1.3rem;
    color: #8dc8e4;
    text-transform: uppercase;
  }
  
  .exclusive .duration {
    color: #f3b6ab;
  }
  
  .duration::before {
    content: '/';
    margin-right: 2px;
  }
  
  .value {
      font-size: 7rem;
      font-weight: 300;
  }
  
  .currency, 
  .duration {
      color: #1bbc9d;
  }
  
  .exclusive .currency,
  .exclusive .duration {
      color: #2d3e50;
  }
  
  .currency {
      display: inline-block;
      margin-top: 10px;
      vertical-align: top;
      font-size: 2rem;
      font-weight: 700;
  }
  
  .duration {
      font-size: 1.4rem;
  }
  
  .pricing-body {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .is-switched .pricing-body {
    overflow: hidden;
  }
  
  .pricing-body {
      overflow-x: visible;
  }
  
  .pricing-features {
    width: 600px;
  }
  
  .pricing-features:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .pricing-features li {
    float: left;
    font-size: 1.5rem;
    text-align: center;
    overflow: hidden;
  }
  
  .pricing-features em {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .pricing-features {
      width: auto;
  }
  
  .pricing-features li {
      float: none;
      width: auto;
  }
    
  .pricing-features em {
      display: inline-block;
      margin-bottom: 0;
  }
  
  .has-margins .exclusive .pricing-features li {
      margin: 0;
  }
  
  .pricing-footer {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
  }
  
  .pricing-footer {
      position: relative;
      height: auto;
      padding: 1.8em 0;
      text-align: center;
  }
  
  .pricing-footer::after {
      display: none;
  }
  
  .has-margins .pricing-footer {
      padding-bottom: 0;
  }
  
  .select {
    position: relative;
    z-index: 1;
    display: block;
    height: 100%;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
  }
  
  .select {
      position: static;
      display: inline-block;
      height: auto;
      padding: 1.3em 2em;
      color: #1bbc9d;
      border-radius: 8px;
      border: 2px solid #1bbc9d;
      font-size: 1.4rem;
      text-indent: 0;
      text-transform: uppercase;
      letter-spacing: 2px;
    transition: all .6s;
    width: 70%;
  }
  
  .no-touch .select:hover {
      background-color: #1bbc9d;
    color: #ffffff;
  }
  
  .exclusive .select {
      background-color: #1bbc9d;
    color: #ffffff;
  }
    
  .no-touch .exclusive .select:hover {
      background-color: #24e0ba;
  }
    
  .secondary-theme .exclusive .select {
      background-color: #1bbc9d;
  }
    
  .no-touch .secondary-theme .exclusive .select:hover {
      background-color: #112e3c;
  }
    
  .has-margins .select {
      display: block;
      padding: 1.7em 0;
      border-radius: 0 0 4px 4px;
  }
  
  @-webkit-keyframes rotate {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
    }
  }
  
  @-moz-keyframes rotate {
    0% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
    70% {
      -moz-transform: perspective(2000px) rotateY(200deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(180deg);
    }
  }
  
  @keyframes rotate {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(200deg);
      -moz-transform: perspective(2000px) rotateY(200deg);
      -ms-transform: perspective(2000px) rotateY(200deg);
      -o-transform: perspective(2000px) rotateY(200deg);
      transform: perspective(2000px) rotateY(200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
      -moz-transform: perspective(2000px) rotateY(180deg);
      -ms-transform: perspective(2000px) rotateY(180deg);
      -o-transform: perspective(2000px) rotateY(180deg);
      transform: perspective(2000px) rotateY(180deg);
    }
  }
  
  @-webkit-keyframes rotate-inverse {
    0% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
  }
  
  @-moz-keyframes rotate-inverse {
    0% {
      -moz-transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
      -moz-transform: perspective(2000px) rotateY(20deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
  }
  
  @keyframes rotate-inverse {
    0% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
      -moz-transform: perspective(2000px) rotateY(-180deg);
      -ms-transform: perspective(2000px) rotateY(-180deg);
      -o-transform: perspective(2000px) rotateY(-180deg);
      transform: perspective(2000px) rotateY(-180deg);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(20deg);
      -moz-transform: perspective(2000px) rotateY(20deg);
      -ms-transform: perspective(2000px) rotateY(20deg);
      -o-transform: perspective(2000px) rotateY(20deg);
      transform: perspective(2000px) rotateY(20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
  }
  
  @-webkit-keyframes rotate-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
    }
  }
  
  @-moz-keyframes rotate-back {
    0% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
    70% {
      -moz-transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(-180deg);
    }
  }
  
  @keyframes rotate-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(-200deg);
      -moz-transform: perspective(2000px) rotateY(-200deg);
      -ms-transform: perspective(2000px) rotateY(-200deg);
      -o-transform: perspective(2000px) rotateY(-200deg);
      transform: perspective(2000px) rotateY(-200deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(-180deg);
      -moz-transform: perspective(2000px) rotateY(-180deg);
      -ms-transform: perspective(2000px) rotateY(-180deg);
      -o-transform: perspective(2000px) rotateY(-180deg);
      transform: perspective(2000px) rotateY(-180deg);
    }
  }
  
  @-webkit-keyframes rotate-inverse-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
    }
  }
  
  @-moz-keyframes rotate-inverse-back {
    0% {
      -moz-transform: perspective(2000px) rotateY(180deg);
    }
    70% {
      -moz-transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
      -moz-transform: perspective(2000px) rotateY(0);
    }
  }
  
  @keyframes rotate-inverse-back {
    0% {
      -webkit-transform: perspective(2000px) rotateY(180deg);
      -moz-transform: perspective(2000px) rotateY(180deg);
      -ms-transform: perspective(2000px) rotateY(180deg);
      -o-transform: perspective(2000px) rotateY(180deg);
      transform: perspective(2000px) rotateY(180deg);
    }
    70% {
      -webkit-transform: perspective(2000px) rotateY(-20deg);
      -moz-transform: perspective(2000px) rotateY(-20deg);
      -ms-transform: perspective(2000px) rotateY(-20deg);
      -o-transform: perspective(2000px) rotateY(-20deg);
      transform: perspective(2000px) rotateY(-20deg);
    }
    100% {
      -webkit-transform: perspective(2000px) rotateY(0);
      -moz-transform: perspective(2000px) rotateY(0);
      -ms-transform: perspective(2000px) rotateY(0);
      -o-transform: perspective(2000px) rotateY(0);
      transform: perspective(2000px) rotateY(0);
    }
  }

  .pricing-features{
    display: flex;
    flex-direction: column;
    align-items: start;
  }


/* category slider */


.swiper {
  overflow: hidden;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.clifton-categoeies > .gallery-thumbs{
  max-height: 500px;
	width: 25%;
}
.clifton-categoeies > .gallery-top{
	width: 75%;
	max-height: 587px;
}
.clifton-categoeies > .gallery-thumbs .swiper-slide.swiper-slide-visible.swiper-slide-thumb-active .cat_image{
	color: var(--tertiary-color);
}
.gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-visible.swiper-slide-thumb-active,
.gallery-thumbs .swiper-wrapper{
	position: relative;
}
.gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-visible.swiper-slide-thumb-active::after,
.gallery-thumbs::after{
	content:'';
	position: absolute;
	width: 1px;
	height: 100%;
	left: auto;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #a2a2a2;
	z-index: -1;
}
/* .clifton-categoeies > .gallery-thumbs .swiper-slide:last-child{
	display: none;
} */
.gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-visible.swiper-slide-thumb-active::after{
	background: var(--tertiary-color);
	z-index: 1;
	width: 2px;
}
.swiper.gallery-top .swiper-wrapper .swiper-slide{
    align-items: end;
    padding: 0 0 0 60px;
}
.clifton-categoeies > .gallery-thumbs .swiper-slide.swiper-slide-visible{
	background: transparent;
	padding: 0;
	opacity: 1;
	text-align: left;
}
.clifton-categoeies > .gallery-thumbs .swiper-slide.swiper-slide-visible .cat_image{
	color: var(--white-color);
	opacity: 1;
	font-weight: 500;
	font-size: 22px;
	
}
.clifton-categoeies {
  display: flex;
  flex-flow: column nowrap;
  height: auto;
  align-items: center;
}
.clifton-categoeies .swiper-wrapper .swiper-slide{
	background: transparent;
	display: flex;
	align-items: flex-start
}
.clifton-categoeies .cat_inner{
	display: flex;
	align-items: center;
	padding: 30px;
	background: var(--white-color);
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	overflow: hidden;
}
.clifton-categoeies .cat_inner .cat_content{
	padding: 0 0 0 45px;
	text-align: left;
}
.clifton-categoeies .cat_inner .cat_image,
.clifton-categoeies .cat_inner .cat_content{
	width: 50%;
}
.clifton-categoeies .cat_inner .cat_image{
	overflow: hidden;
	 border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.clifton-categoeies .cat_inner .cat_content h2{
	font-size: 26px;
	font-family: var(--primary-font);
	color: var(--secondary-color);
	font-weight: 800;
}
.clifton-categoeies .cat_inner .cat_des p{
	font-size: 16px;
	line-height: 28px;
	text-overflow: ellipsis;
			overflow: hidden;
			-webkit-line-clamp: 3;
			-webkit-box-orient: vertical;
			display: -webkit-box;
	margin-bottom: 40px;
}
 .page .site-main .cat_btn a.cat_link{
	padding: 15px 20px;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	 font-size: 14px;
	display: inline-block;
	 text-transform: uppercase;
}

@media (min-width: 480px) {
  /* .swiper {
    min-height: 320px;
 } */
}
@media (min-width: 480px) {
  .clifton-categoeies {
    flex-flow: row nowrap;
 }
}
.swiper-button-next, .swiper-button-prev {
  color: #000;
}
.swiper-slide {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-color: #fff;
 /* Center slide text vertically */
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
 /* Slide content */
}
.swiper-slide .description, .swiper-slide .title {
  display: block;
  opacity: 0;
  transition: 0.5s ease 0.5s;
}
.swiper-slide-active .description, .swiper-slide-active .title {
  opacity: 1;
}
.swiper-slide-active .title {
  margin-bottom: 0.5rem;
  font-size: 24px;
  color: #000;
  transition: opacity 0.5s ease 0.5s;
}
.swiper-slide-active .description {
  font-size: 16px;
  color: #777;
  transition: opacity 0.5s ease 0.75s;
}
.gallery-top {
  position: relative;
  width: 100%;
  height: 75vh;
}
@media (min-width: 480px) {
  .gallery-top {
    width: 80%;
    height: 100vh;
    margin-right: 10px;
 }
}
.gallery-thumbs {
  width: 100%;
  height: 25vh;
  padding-top: 10px;
}
@media (min-width: 480px) {
  .gallery-thumbs {
    width: 20%;
    height: 100vh;
    padding: 0;
 }
}
.gallery-thumbs .swiper-wrapper {
  flex-direction: column;
}
.gallery-thumbs .swiper-slide {
  width: 25%;
  flex-flow: row nowrap;
  height: 100%;
  opacity: 0.75;
  cursor: pointer;
}
@media (min-width: 480px) {
  .gallery-thumbs .swiper-slide {
    flex-flow: column nowrap;
    width: 100%;
 }
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}


/* SECTION-TITLE */
.tt-section-sab{
  position: relative;
  padding: 0 0 0 60px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--color-text);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}
.tt-section-sab::after{
  content: '';
  position: absolute;
  left: 15px;
  right: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 35px;
  height: 35px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.tt-section-sab::before{
  content: '';
  position: absolute;
  left: 0;
  right: auto;
  top: 0;
  width: 45px;
  height: 45px;
  bottom: 15px;
  margin: auto;
  z-index: 1;
  background: url(../images/sepreter.png);
  background-repeat: no-repeat;
  background-size: cover;
}


.section-heading{
  font-size: 40px;
  font-weight: 800;
  font-family: var(--primary-font);
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.tt-section-description{
  font-size: 16px;
  color: var(--body-text-color);
  line-height: 30px;
  margin-bottom: 35px;
}

/* section-counter */
.counter-containt{
  display: flex;
	line-height: normal;
  align-items: center;
  padding-bottom: 20px;
}
h5.counter-title{
  font-weight: 600;
  font-size: 22px;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  padding-left: 20px;
  margin: 0;
}
.counter{
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-number.counter-title{
  font-size: 64px;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--primary-font);
}
.counter svg{
  color: var(--primary-color);
  font-weight: 800;
  font-size: 50px;
}

/* TESTIMONIAL */
.tt-testimonial.swiper .swiper-wrapper{
  padding:  0 0 60px;
}
.swiper-pagination-bullet{
  height: 8px;
  background-color: var(--body-text-color);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.swiper-pagination-clickable .swiper-pagination-bullet{
	width: 8px;
	height: 8px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: var(--primary-color);
  width: 35px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.testimonial-wrap{
  float: left;
  width: 100%;
  padding: 0;
	background : transparent;
}
.testimonial-info-wrapper{
  text-align: start;
	background-color: var(--white-color);
  padding: 30px;
	border-radius: 12px;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
	overflow: hidden;
}
.testimonial-rating{
  position: relative;
  text-align: end;
  margin: 0 0 30px;
}
.testimonial-rating:before{
  content: '\f10d';
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 32px;
  left: 0;
  top: 0;
  bottom: 0;
  right: auto;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
}
.testimonial-rating svg{
  color: var(--rate-color);
  padding-left: 3px;
}
.testimonial-inner{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.testimonial-inner .testimonial-img{
  overflow: hidden;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.testimonial-info {
  margin-left: 10px;
}
.testimonial-info .testimonial-author{
  font-size: 22px;
  font-family: var(--primary-font);
  color: var(--secondary-color);
  font-weight: 800;
		text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.testimonial-info .testimonial-designation{
  margin: 0;
  font-size: 16px;
  color: var(--primary-color);
	font-weight: 500;
}
.testimonial-details p{
  line-height: 28px;
  font-size: 16px;
  margin-bottom: 25px;
	text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
 .up-down{
    animation: UpDown 5s infinite normal ease-in-out;
    -webkit-animation: UpDown 5s infinite normal ease-in-out;
}
  
   @-webkit-keyframes UpDown {
    0% {
      transform: translateY(0);
      -webkit-transform: translateY(0);
      -moz-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
}
    50% {
      transform: translateY(50px);
      -webkit-transform: translateY(50px);
      -moz-transform: translateY(50px);
      -ms-transform: translateY(50px);
      -o-transform: translateY(50px);
}
    100% {
      transform: translateY(0px);
      -webkit-transform: translateY(0px);
      -moz-transform: translateY(0px);
      -ms-transform: translateY(0px);
      -o-transform: translateY(0px);
}
  
  }

/* CLIENT */
.client-logo .item.swiper-slide{
	padding: 0;
	opacity: 0.5;
	transition: all 400ms ease-in-out 0s;
	-webkit-transition: all 400ms ease-in-out 0s;
	-moz-transition: all 400ms ease-in-out 0s;
	-o-transition: all 400ms ease-in-out 0s;
	-ms-transition: all 400ms ease-in-out 0s;
	background: transparent
}
.client-logo .item.swiper-slide:hover{
	opacity: 1;
}
.client-logo .swiper-wrapper{
	padding-bottom: 50px;
}

/* Categories */
.clifton-categoeies .cat_inner .sub-bcategory{
	padding: 0;
	margin-bottom: 45px;
}
.clifton-categoeies .cat_inner .sub-bcategory li{
	position: relative;
	list-style: none;
	padding-left: 30px;
	margin-bottom: 20px;
}
 .clifton-categoeies .cat_inner .sub-bcategory li::before,
 .clifton-categoeies .cat_inner .sub-bcategory li::after{
	content: '\f00c';
	position: absolute;
	left: 0;
	right: auto;
	top: 0;
	bottom: 0;
	font-size: 12px;
	  line-height: 25px;
	font-family: 'Font Awesome 5 Free' ;
	font-weight: 600;
	color: var(--primary-color);
  }
 .clifton-categoeies .cat_inner .sub-bcategory li::before{
	left: 6px;
  }