.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%;
    }
   
}

.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;
    border: 2px solid #2d3e50;
  }
  
  .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: 1.4rem;
    color: #ffffff;
  }
  
  .pricing-switcher .switch {
    position: absolute;
    top: 2px;
    left: 2px;
    height: 40px;
    width: 90px;
    background-color: #2d3e50;
    border-radius: 50em;
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    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(90px);
    -moz-transform: translateX(90px);
    -ms-transform: translateX(90px);
    -o-transform: translateX(90px);
    transform: translateX(90px);
  }
  
  .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 {
    background-color: #ffffff;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: 1px solid transparent;
	  transition: transform 0.6s;
  }

  
  .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-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-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 li {
    width: 100px;
    float: left;
    font-size: 1.5rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .pricing-features em {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  .pricing-features {
      width: auto;
  }
  
  .pricing-features li {
      float: none;
      width: auto;
  }
  
  .exclusive .pricing-features li {
      margin: 0 3px;
  }
    
  .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;
  }

  .swiper.swiper-slider .swiper-slide{
    padding: 0;
    background-color: transparent;
  }

  /* SWIPER - DOT */
  .swiper .swiper-wrapper{
    padding:  0 0 60px;
  }
  .swiper-padding .swiper-wrapper{
    padding: 0;
  }
  .swiper-pagination-bullet{
    height: 8px;
    background-color: var(--color-text);
    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: 10px;
    height: 10px;
	  margin: 0 4px;
  }
  .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;
  }

  /* SERVICE-BOX */
  .services-left .service-box-icon,
  .services-left .service-box-containt{
    text-align: start;
    margin: 0 0 20px;
    
  }
  .service-box-icon{
    margin: 0 0 20px;
    padding: 20px;
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  .service-box-icon.text-end {
    margin-left: auto;
  }
  .service-box-icon.text-center {
    margin: 0 auto 20px;
  }
.service-box-icon:hover img{
	transform: rotateY(180deg);
}
  
  .item .service-box-containt:nth-child(2){
    margin-bottom: 60px;
  }
  .service-box-containt h4{
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 15px;
	  transition: .3s cubic-bezier(.785, .135, .15, .86);
	-webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
	-moz-transition: .3s cubic-bezier(.785, .135, .15, .86);
	-o-transition: .3s cubic-bezier(.785, .135, .15, .86);
	-ms-transition: .3s cubic-bezier(.785, .135, .15, .86);
  }
  .service-box-containt p{
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    text-transform: capitalize;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* text-carousel */

.text-carousel.swiper .swiper-wrapper{
	padding-bottom: 0;
}
.text-carousel .swiper-slide{
	width: auto !important;
}
  .text-carousel .swiper-slide{
    background: transparent;
    padding: 0;
  }
 
  .elementor-element .e-con>.e-con-inner{
    margin: 0;
  }

   
/* MARQUEE CSS */

.marquee-container {
  max-width: 100%;
  overflow: hidden;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  background-color: var(--body-bg-light);
  align-items: center;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  -webkit-animation: marquee 30s linear infinite;
}
.marquee-content-rtl {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-rtl 30s linear infinite;
  -webkit-animation: marquee-rtl 30s linear infinite;
}
.nav-ticker {
  box-sizing: border-box;
  font-weight: bold;
  white-space: nowrap;
  display: inline-block;
  padding: 0;
  width: auto !important;
  flex: 0 0 auto;
}
.text-carousel p,
.nav-ticker p{
  margin: 0;
    color: var(--dark-bg-text);
    font-family: var(--primary-font);
    font-size: 26px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    padding: 12px 25px 12px 50px;
	  position: relative;
}
.nav-ticker p::after,
.text-carousel p::after{
	content: '';
	position: absolute;
	left: 0px;
	right: auto;
	width: 26px;
	height: 2px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: var(--primary-color);
}

.nav-ticker:nth-child(odd) p::before,
.text-carousel .swiper-slide:nth-child(odd) p::before{
	content: '';
	position: absolute;
	left: 13px;
	right: auto;
	width: 2px;
	height: 26px;
	top: 0;
	bottom: 0;
	margin: auto;
	background: var(--primary-color);
}


/* Duplicate the keyframes for a smooth repeat */
@keyframes marquee {
  0% {
    transform: translateX(0); /* Start from the right of the container */
  }
  100% {
    transform: translateX(-100%); /* Move to the left outside the container */
  }
}
  @keyframes marquee-rtl {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}