/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --wallox-font: "Plus Jakarta Sans", sans-serif;
  --wallox-heading-font: "Plus Jakarta Sans", sans-serif;
  --wallox-special-font: "Outfit", sans-serif;
  --wallox-text: #7E7C76;
  --wallox-text-rgb: 126, 124, 118;
  --wallox-text-dark: #4b2958;
  --wallox-text-dark-rgb: 46, 42, 32;
  --wallox-text-gray: #89868d;
  --wallox-text-gray-rgb: 137, 134, 141;
  --wallox-text-gray2: #D9D9D9;
  --wallox-text-gray2-rgb: 217, 217, 217;
  --wallox-base: #0d93b4;
  --wallox-base-rgb: 223, 158, 66;
  --wallox-gray: #F4EDE4;
  --wallox-gray-rgb: 244, 237, 228;
  --wallox-white: #fff;
  --wallox-white-rgb: 255, 255, 255;
  --wallox-border-color: #E4DACC;
  --wallox-border-color-rgb: 228, 218, 204;
  --wallox-letter-space: 0.1em;
  --wallox-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.wallox-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: 1px solid #ECF0F1;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 15px 24px;
  transition: 500ms;
  background-color: #45B34A;
  color: #fff;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  text-transform: capitalize;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.wallox-btn:hover {
  color: #90EE90;
  background-color: #ECF0F1;
}

.wallox-btn::before {
  content: "";
  background-color: #90EE90;
  border-radius: 100px;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.wallox-btn--base {
  background: #45B34A;
  color: #F5F5F5;
}

.wallox-btn--base::before {
  background-color: #90EE90;
}

.wallox-btn--base:hover {
  color: var(--wallox-white, #fff);
}

.wallox-btn--border {
  background: transparent;
  border: 2px solid white;
}

.wallox-btn--border:hover {
  background: #B76E79 !important;
  border-color: transparent;
}

.wallox-btn:hover {
  color: white;
  background: transparent;
  transform: scale(1.05);
  will-change: transform;
}

.wallox-btn:hover::before {
  transform: translate(0, 0);
}


.sparkle-btn {
  position: relative;
  padding: 5px 70px;
  margin-left: 120px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: #45B34A;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sparkle-btn:hover {
  background: #45B34A;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.sparkle-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.sparkle-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.sparkle-btn:hover::before {
  left: 100%;
}

.sparkle-ripple {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  animation: sparkleRipple 0.6s linear;
  pointer-events: none;
}

@keyframes sparkleRipple {
  to {
    transform: scale(2.5);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #7E7C76;
  font-size: 16px;
  line-height: 2.125;
  font-weight: 500;
  background-color: #F5F5F5;
}

body.locked {
  overflow: hidden;
}

a {
  color: #0d93b4;
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Plus Jakarta Sans", serif;
  color: #333333;
}

@media (max-width: 575px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.text-start {
  text-align: left !important;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--wallox-base, #0d93b4);
}

/* tiny slider button customize */
.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--wallox-text, #7E7C76);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}

.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.html);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}

.block-title p {
  margin: 0;
  color: var(--wallox-text, #7E7C76);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}

@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}

.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: #B76E79;
  font-family: "Outfit", sans-serif;
}

@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}

@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}

.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: #2C3E50;
}

@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}

.ul-list-one li::before {
  content: "\e907";
  color: #ECF0F1;
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D3EFD9;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.dots-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 20px;
}

.dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #45B34A;
  animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: -0.32s;
}

.dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

/* For fade-out effect when page loads */
.preloader--complete {
  opacity: 0;
  pointer-events: none;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333333;
  font-weight: 800;
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: #45B34A;
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* post paginations */
.post-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.post-pagination li:last-child a:hover,
.post-pagination li:first-child a:hover {
  background: green;
  color: #fff;
}

.post-pagination a {
  width: 40px;
  height: 40px;
  background-color: #90EE90;
  color: #333333;
  text-transform: capitalize;
  text-align: center;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 400ms ease;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-pagination a:hover {
  background: transparent;
  color: var(--wallox-base, #0d93b4);
  border: 1px solid var(--wallox-base, #0d93b4);
}

.post-pagination a i {
  line-height: 1;
  font-size: 14px;
}

/* Owl Shadow */
.wallox-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}

.wallox-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.wallox-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

/* Owl Nav */
.wallox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.wallox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}

.wallox-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: #5BBD60;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F0FAF2;
  border-radius: 50%;
  font-size: 14px;
  color: #F0FAF2;
  transition: all 500ms ease;
}

.wallox-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
  background-color: #45B34A;
  color: var(--wallox-white, #fff);
}

.wallox-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.wallox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: var(--wallox-gray2, #D9D9D9);
  width: 10px;
  border-radius: 50%;
  height: 10px;
  margin: 0;
}

.wallox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span,
.wallox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: #333;
}

.wallox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled+.owl-dots {
  margin-top: 60px;
}

.wallox-owl__carousel__counter {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -80%;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 19px;
}

@media (max-width: 1199px) {
  .wallox-owl__carousel__counter {
    left: -40%;
  }
}

@media (max-width: 991px) {
  .wallox-owl__carousel__counter {
    left: -20%;
  }
}

@media (max-width: 767px) {
  .wallox-owl__carousel__counter {
    display: none;
  }
}

.wallox-owl__carousel__counter .wallox-owl__carousel__counter__total {
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  color: var(--wallox-text-dark, #4b2958);
  text-transform: uppercase;
  position: relative;
}

.wallox-owl__carousel__counter .wallox-owl__carousel__counter__total::before {
  content: "";
  position: absolute;
  top: calc(50% + 1px);
  left: -10px;
  transform: translateY(-50%) rotate(20deg);
  width: 1px;
  height: 16px;
  background-color: var(--wallox-border-color, #E4DACC);
}

.wallox-owl__carousel__counter .wallox-owl__carousel__counter__current {
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 67%;
  position: relative;
  color: var(--wallox-base, #0d93b4);
  text-transform: uppercase;
}

/* Section Title */
.sec-title {
  padding-bottom: 55px;
}

@media (max-width: 767px) {
  .sec-title {
    padding-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .sec-title {
    padding-bottom: 30px;
  }
}

.sec-title__image {
  margin-right: 10px;
  height: 30px;
}

.sec-title__tagline {
  margin: 0;
  color: #45B34A;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
}

.sec-title__title {
  margin-top: 11px;
  color: #333333;
  font-style: normal;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2666666667;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .sec-title__title {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .sec-title__title {
    font-size: 35px;
  }
}

.wallox-slick__carousel--with-shadow .slick-list {
  overflow: visible;
}

.wallox-slick__carousel--with-shadow .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.wallox-slick__carousel--with-shadow .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--wallox-text-dark, #4b2958);
  color: var(--wallox-white, #fff);
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
}

.ui-datepicker-calendar td {
  background-color: var(--wallox-gray, #F4EDE4);
  background-image: none;
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  color: var(--wallox-text, #7E7C76);
}

.ui-datepicker-calendar td a {
  border-color: var(--wallox-border-color, #E4DACC);
  background-color: var(--wallox-gray, #F4EDE4);
  background-image: none;
}

.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--wallox-border-color, #E4DACC);
  background-color: var(--wallox-gray, #F4EDE4);
  background-image: none;
  color: var(--wallox-text, #7E7C76);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--wallox-white, #fff);
  background-color: var(--wallox-base, #0d93b4);
}

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--wallox-white, #fff);
  background-color: var(--wallox-base, #0d93b4);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--wallox-white, #fff);
  color: var(--wallox-text-dark, #4b2958);
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--wallox-base, #0d93b4);
  color: var(--wallox-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  z-index: 4;
}

.team-card__social {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  transform: translateX(-200%);
  transition: all 0.4s ease-in-out;
}

.team-card__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wallox-white, #fff);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  font-size: 18px;
  color: var(--wallox-base, #0d93b4);
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.team-card__social a::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--wallox-base, #0d93b4);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.team-card__social a:hover {
  color: var(--wallox-white, #fff);
}

.team-card__social a:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.team-card:hover .team-card__thumb img {
  transform: scale(1.1);
}

.team-card:hover .team-card__thumb::after {
  transform: translateY(0%);
}

.team-card:hover .team-card__social {
  transform: translateX(0%);
}

.team-card:hover .team-card__content {
  background: var(--wallox-base, #0d93b4);
}

.team-card:hover .team-card__content .team-card__content__title,
.team-card:hover .team-card__content .team-card__content__dec {
  color: var(--wallox-white, #fff);
}

.team-card__thumb {
  position: relative;
  border-radius: 20px;
}

.team-card__thumb img {
  position: relative;
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.team-card__thumb::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  transform: translateY(-100%);
  left: 0;
  top: 0;
  background-color: rgba(var(--wallox-text-dark-rgb, 46, 42, 32), 0.7);
  transition: all 0.4s ease-in-out;
}

.team-card__content {
  border-radius: 10px;
  background: var(--wallox-white, #fff);
  padding: 23px 15px;
  position: absolute;
  transform: rotate(-180deg);
  position: absolute;
  writing-mode: vertical-rl;
  bottom: 30px;
  right: 30px;
  transition: all 0.4s ease-in-out;
  min-height: 209px;
}

.team-card__content__title {
  margin-left: 0;
  margin-right: 0;
  margin-top: -7px;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 136%;
  margin-bottom: 0px;
  padding-bottom: 0;
  color: var(--wallox-text-dark, #4b2958);
  text-transform: capitalize;
}

.team-card__content__title a {
  color: inherit;
}

.team-card__content__title a:hover {
  color: var(--wallox-text-dark, #4b2958);
}

.team-card__content__dec {
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--wallox-text, #7E7C76);
  margin-bottom: -5px;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.team-details {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #F5F5F5;
}

@media (max-width: 991px) {
  .team-details {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .team-details {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.team-details__inner {
  background: #F0FAF2;
  position: relative;
  z-index: 1;
  padding: 30px;
  border-radius: 20px;
  z-index: 1;
}

@media (max-width: 991px) {
  .team-details__inner {
    padding: 30px 20px;
  }
}

.team-details__inner::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/shapes/team-details-shape.png);
  background-position: center center;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  z-index: -1;
  opacity: 0.1;
}

.team-details__thumb {
  position: relative;
  overflow: hidden;
  margin-right: -15px;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .team-details__thumb {
    margin-right: 0;
  }
}

.team-details__thumb__image {
  position: relative;
}

.team-details__thumb__image img {
  object-fit: cover;
  width: 100%;
}

.team-details__thumb__image:hover .team-details__thumb__social {
  transform: translate(-50%, 0%);
}

.team-details__thumb__social {
  position: absolute;
  bottom: 40px;
  left: 50%;
  gap: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, 200%);
  transition: all 0.4s ease-in-out;
  text-align: center;
}

.team-details__thumb__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #D3EFD9;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  font-size: 18px;
  color: green;
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.team-details__thumb__social a::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  background: green;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.team-details__thumb__social a:hover {
  color: #D3EFD9;
}

.team-details__thumb__social a:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.team-details__content {
  margin-left: 15px;
}

@media (max-width: 991px) {
  .team-details__content {
    margin-left: 0px;
  }
}


.team-details__content__title {
  color: green;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.team-details__content__text {
  font-style: normal;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #333333;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
}

.team-details__content__text+.team-details__content__text {
  margin-top: 10px;
}

.team-details__content__signeture {
  margin-top: 35px;
  margin-bottom: 5px;
}

.team-details__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}

@media (max-width: 767px) {
  .team-details__link {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
  }
}

.team-details__link__item__inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-details__link__item__inner:hover .team-details__link__icon {
  color: var(--wallox-white, #fff);
}

.team-details__link__item__inner:hover .team-details__link__icon::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.team-details__link__icon {
  width: 45px;
  max-width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #D3EFD9;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: green;
  position: relative;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.team-details__link__icon::after {
  content: "";
  width: 0%;
  height: 0%;
  background: green;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.team-details__link a,
.team-details__link p {
  font-style: normal;
  color: #333333;
  margin-bottom: 0;
  padding-bottom: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
}

.team-details__link a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.team-details__link a:hover {
  background-size: 100% 1px;
}

.team-details__link a:hover {
  color: green;
}

/*team-details*/
.team-skills-one {
  position: relative;
  padding: 10px 0px;
  background: #F0FAF2;
}

.team-skills-one__top {
  margin-bottom: 50px;
}

.team-skills-one__top__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #B76E79;
  text-shadow: 0 0 0.1px currentColor;
  margin-bottom: 18px;
}

.team-skills-one__top__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #333333;
}

.team-skills-one__top__text+.team-skills-one__top__text {
  margin-top: 29px;
}

@media (max-width: 991px) {
  .team-skills-one__top__text+.team-skills-one__top__text {
    margin-top: 20px;
  }
}

.team-skills-one__inner {
  background: transparent;
  padding: 30px 40px;
}

@media (max-width: 991px) {
  .team-skills-one__inner {
    padding: 20px;
  }
}

.team-skills-one__inner__title {
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  color: #5BBD60;
  text-shadow: 0 0 0.1px currentColor;
  margin-bottom: 27px;
}

.team-skills-one__skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 31px;
  margin-bottom: 42px;
}

@media (max-width: 991px) {
  .team-skills-one__skills {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

/*team-Progress*/
.progress-box__title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: #333333;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
}

.progress-box__bar {
  width: 100%;
  height: 10px;
  background-color: grey;
  position: relative;
}

.progress-box__bar__inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #45B34A;
  transition: all 800ms linear;
  width: 0px;
}

.progress-box__number {
  position: absolute;
  bottom: calc(100% + 2px);
  right: 0;
  font-size: 16px;
  color: #333333;
  font-weight: 700;
  line-height: 1.875;
  text-transform: uppercase;
}

/*Blog Card One Style*/
.blog-card {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.blog-card--two {
  background: transparent;
}

.blog-card--two:hover {
  background-color: #F5F5F5;
  box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
}

@media (max-width: 1199px) and (min-width: 991px) {
  .blog-card {
    padding: 15px;
  }
}

@media (max-width: 500px) {
  .blog-card {
    padding: 15px;
  }
}

.blog-card__image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 22px;
}

.blog-card__image img {
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

.blog-card__hover__box {
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: 1;
}

.blog-card__hover__box--1 {
  left: 0;
  transition-delay: 0.105s;
}

.blog-card__hover__box--2 {
  left: 25%;
  transition-delay: 0.105s;
}

.blog-card__hover__box--3 {
  left: 50%;
  transition-delay: 0.105s;
}

.blog-card__hover__box--4 {
  left: 75%;
  transition-delay: 0s;
}

.blog-card__title {
  color: #333333;
  padding-bottom: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  margin-bottom: 13px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .blog-card__title {
    font-size: 18px;
  }
}

@media (max-width: 400px) {
  .blog-card__title {
    font-size: 18px;
  }
}

.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card__title a:hover {
  background-size: 100% 1px;
}

.blog-card__title a:hover {
  color: #2E8B57;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 27px;
}

.blog-card__meta__item {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #2C3E50;
}

.blog-card__meta__item a {
  color: inherit;
}

.blog-card__meta__item a:hover {
  color: #2C3E50;
}

.blog-card__meta__item i {
  color: #0d93b4;
  margin-right: 5px;
}

.blog-card__date {
  text-align: center;
  position: relative;
  background: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #B76E79;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.blog-card__date__day {
  padding: 3px 10px 5px 10px;
  color: #fff;
  display: block;
  background: #2C3E50;
  border-radius: 10px;
}

.blog-card__date__month {
  padding: 3px 10px 4px 10px;
  display: block;
}

.blog-card:hover {
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}

.blog-card:hover .blog-card__date {
  background: var(--wallox-gray, #F4EDE4);
}

.blog-card:hover .blog-card__hover__box {
  opacity: 1;
  transform: scale(1);
}

/*Blog Card two Style*/
.blog-card-two {
  border-bottom: 1px solid #E4DACC;
  padding-bottom: 30px;
}

.blog-card-two__image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 22px;
}

.blog-card-two__image img {
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

.blog-card-two__hover__box {
  background-color: rgba(223, 158, 66, 0.7);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: 1;
}

.blog-card-two__hover__box--1 {
  left: 0;
  transition-delay: 0.105s;
}

.blog-card-two__hover__box--2 {
  left: 25%;
  transition-delay: 0.105s;
}

.blog-card-two__hover__box--3 {
  left: 50%;
  transition-delay: 0.105s;
}

.blog-card-two__hover__box--4 {
  left: 75%;
  transition-delay: 0s;
}

.blog-card-two__date {
  text-align: center;
  position: absolute;
  top: 30px;
  left: 30px;
  background: #fff;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #4b2958;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  z-index: 2;
}

.blog-card-two__date__day {
  padding: 3px 10px 5px 10px;
  color: var(--wallox-white, #fff);
  display: block;
  background: var(--wallox-base, #0d93b4);
  border-radius: 10px;
}

.blog-card-two__date__month {
  padding: 3px 10px 4px 10px;
  display: block;
}

.blog-card-two__content {
  padding: 8px 0px 0px;
  position: relative;
  z-index: 2;
}

.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  margin-left: -5px;
}

.blog-card-two__meta__item {
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--wallox-text, #7E7C76);
}

.blog-card-two__meta__item a {
  color: inherit;
}

.blog-card-two__meta__item a:hover {
  color: var(--wallox-base, #0d93b4);
}

.blog-card-two__meta__item i {
  color: var(--wallox-base, #0d93b4);
  margin: 8px;
}

.blog-card-two__title {
  color: var(--wallox-text-dark, #4b2958);
  margin-bottom: 13px;
  padding-bottom: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
}

.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card-two__title a:hover {
  background-size: 100% 1px;
}

.blog-card-two__title a:hover {
  color: var(--wallox-base, #0d93b4);
}

.blog-card-two__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text, #7E7C76);
  margin-bottom: 24px;
}

.blog-card-two__link {
  display: inline-flex;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 0;
  color: var(--wallox-white, #fff);
  padding: 17.5px 22.5px;
  border-radius: 10px;
  background-color: var(--wallox-base, #0d93b4);
}

.blog-card-two__link__icon {
  position: relative;
  display: inline-flex;
  margin-left: 27px;
}

.blog-card-two__link__icon i {
  font-size: 20px;
}

.blog-card-two__link__icon::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
  background-color: rgba(var(--wallox-white-rgb, 255, 255, 255), 0.3);
  transition: all 400ms ease;
}

.blog-card-two__link::before {
  border-radius: 10px;
  background-color: var(--wallox-text-dark, #4b2958);
}

.blog-card-two__link:hover {
  transform: scale(1);
}

.blog-card-two:hover .blog-card-two__image img {
  transform: scale(1.1);
}

.blog-card-two:hover .blog-card__hover__box {
  opacity: 1;
  transform: scale(1);
}

/*Blog Card Three Style*/
.blog-card-three {
  position: relative;
  transition: all 0.4s ease-in-out;
}

.blog-card-three__image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.blog-card-three__image img {
  width: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: all 0.5s ease-in-out;
  border-radius: 20px;
}

.blog-card-three__hover__box {
  background-color: rgba(var(--wallox-text-dark-rgb, 46, 42, 32), 0.7);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(0);
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: 1;
}

.blog-card-three__hover__box--1 {
  left: 0;
  transition-delay: 0.105s;
}

.blog-card-three__hover__box--2 {
  left: 25%;
  transition-delay: 0.105s;
}

.blog-card-three__hover__box--3 {
  left: 50%;
  transition-delay: 0.105s;
}

.blog-card-three__hover__box--4 {
  left: 75%;
  transition-delay: 0s;
}

.blog-card-three__date {
  text-align: center;
  position: absolute;
  top: 20px;
  z-index: 1;
  left: 20px;
  background: var(--wallox-white, #fff);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--wallox-text-dark, #4b2958);
  text-transform: uppercase;
  display: inline-block;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

.blog-card-three__date__day {
  padding: 3px 10px 5px 10px;
  color: var(--wallox-white, #fff);
  display: block;
  background: var(--wallox-base, #0d93b4);
  border-radius: 10px 10px 0 0;
}

.blog-card-three__date__month {
  padding: 3px 10px 4px 10px;
  display: block;
}

.blog-card-three__content {
  position: relative;
  z-index: 1;
  margin-top: -95px;
  padding: 25px 30px 25px;
  border-radius: 20px;
  background: var(--wallox-gray, #F4EDE4);
  margin-left: 20px;
}

.blog-card-three__title {
  margin-top: -2px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 160%;
  margin-bottom: 10px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text-dark, #4b2958);
}

@media (max-width: 1400px) and (min-width: 1200px) {
  .blog-card-three__title {
    font-size: 17px;
  }
}

@media (max-width: 767px) and (min-width: 575px) {
  .blog-card-three__title {
    font-size: 16px;
  }
}

.blog-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.blog-card-three__title a:hover {
  background-size: 100% 1px;
}

.blog-card-three__title a:hover {
  color: var(--wallox-base, #0d93b4);
}

.blog-card-three__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 4px;
  margin-left: -5px;
}

.blog-card-three__meta__item {
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 133%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--wallox-text, #7E7C76);
}

.blog-card-three__meta__item a {
  color: inherit;
}

.blog-card-three__meta__item a:hover {
  color: var(--wallox-base, #0d93b4);
}

.blog-card-three__meta__item i {
  color: var(--wallox-base, #0d93b4);
  margin: 8px;
}

.blog-card-three:hover .blog-card-three__image img {
  transform: scale(1.1);
}

.blog-card-three:hover .blog-card-three__hover__box {
  opacity: 1;
  transform: scale(1);
}

.blog-one {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 991px) {
  .blog-one {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0;
  }
}

@media (min-width: 992px) {
  .blog-one__carousel .owl-nav {
    display: none;
  }
}

.blog-one--page .post-pagination {
  margin-top: 30px;
}

.blog-one--home {
  background-color: transparent;
  position: relative;
  z-index: 1;
}

.blog-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}

.blog-one__shape {
  position: absolute;
  right: 0;
  bottom: 10%;
  animation: rotated 20s infinite linear;
  z-index: -1;
}

@media (max-width: 991px) {
  .blog-one__shape {
    display: none;
  }
}

.blog-one__shape-two {
  position: absolute;
  left: 0;
  top: 10%;
  animation: topToBottom 3s ease-in-out infinite;
  animation-delay: 1s;
  z-index: -1;
}

@media (max-width: 991px) {
  .blog-one__shape-two {
    display: none;
  }
}



/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 0;
}

@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}

.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}

.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}

.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--wallox-text, #7E7C76);
  font-size: 14px;
}

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 58px;
  background-color: white;
  color: var(--wallox-text, #7E7C76);
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}

.form-one textarea {
  height: 195px;
  padding-top: 20px;
}

.form-one .bootstrap-select>.dropdown-toggle {
  display: flex;
  align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #90EE90;
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: #90EE90;
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  background-color: #5BBD60;
}

.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  mix-blend-mode: darken;
  opacity: 0.2;
  background-size: cover;
  background-position: center center;
}

.main-footer__top__inner {
  padding-top: 120px;
  display: flex;
  align-self: center;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(var(--wallox-border-color-rgb, 228, 218, 204), 0.2);
}

@media (max-width: 991px) {
  .main-footer__top__inner {
    padding-top: 100px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .main-footer__top__inner {
    padding-top: 80px;
  }
}

.main-footer__logo .footer-logo {
  display: flex;
}

.main-footer__form {
  width: 100%;
  margin-left: 70px;
}

@media (max-width: 991px) {
  .main-footer__form {
    margin-left: 0px;
  }
}

.main-footer__form__newsletter {
  display: flex;
  position: relative;
  width: 100%;
  background-color: var(--wallox-white, #fff);
  border-radius: 10px;
}

.main-footer__form__newsletter__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--wallox-text, #7E7C76);
}

.main-footer__form__newsletter input[type=text] {
  border-radius: 10px 11px 11px 10px;
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 55px;
  background-color: var(--wallox-white, #fff);
  color: var(--wallox-text, #7E7C76);
  font-size: 16px;
  font-weight: 500;
  padding-left: 60px;
  padding-right: 20px;
  transition: all 500ms ease;
  margin-bottom: 1px;
}

.main-footer__form__newsletter input[type=text]:focus {
  color: var(--wallox-text, #7E7C76);
}

.main-footer__form__newsletter input[type=text]::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 19px;
  color: var(--wallox-text, #7E7C76);
  text-transform: capitalize;
}

.main-footer__form__newsletter button[type=submit] {
  background-color: var(--wallox-base, #0d93b4);
  width: auto;
  height: 100%;
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  right: -1px;
  margin-bottom: -1px;
  transform: translateY(-50%);
  transition: all 500ms ease;
  border-radius: 10px;
  font-weight: 700;
}

.main-footer__form__newsletter button[type=submit]:hover {
  background-color: var(--wallox-text-dark, #4b2958);
  color: var(--wallox-white, #fff);
}

.main-footer__form__newsletter button[type=submit]::before {
  display: none;
}

.main-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #45B34A;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  color: #45B34A;
}

.main-footer__social a:hover {
  color: #333;
  border: 1px solid #333;
  background: #90EE90;
}

.main-footer .container {
  position: relative;
}

.main-footer__middle {
  background-color: #E0F0E2;
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 1199px) {
  .main-footer__middle {
    padding-bottom: 20px;
  }
}

.main-footer__bottom {
  text-align: center;
  background-color: #5BBD60;
}

.main-footer__bottom__inner {
  padding: 15px 0;
  border-top: 1px solid rgba(var(--wallox-white-rgb, 255, 255, 255), 0.1);
}

.main-footer__copyright {
  margin: 0;
  color: #F5F5F5;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 88%;
  text-align: center;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .footer-widget {
    margin-bottom: 30px;
  }
}

.footer-widget__title {
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.277;
  color: #333333;
  padding-bottom: 13px;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.footer-widget__title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, rgb(128, 118, 104) 0%, rgba(128, 118, 104, 0) 100%);
}

.footer-widget__links {
  margin-top: -12px;
  margin-left: 0;
  margin-bottom: 0;
}

.footer-widget__links li {
  position: relative;
  padding-left: 15px;
}

.footer-widget__links li a {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 212%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: #333333;
  position: relative;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.footer-widget__links li a:hover {
  background-size: 100% 1px;
}

.footer-widget__links li a:hover {
  color: #2E8B57;
}

.footer-widget__links li i {
  font-size: 6px;
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  transform: scale(1);
  transition: all 0.4s ease-out;
}

.footer-widget__links li:hover i {
  transform: scale(0);
}

.footer-widget__text {
  margin-top: -7px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 188%;
  padding-bottom: 0;
  text-transform: capitalize;
  color: #ECF0F1;
  max-width: 325px;
  width: 100%;
  margin-bottom: 30px;
}

.footer-widget__info li {
  display: flex;
  align-items: start;
  gap: 8px;
}

.footer-widget__info li i {
  font-size: 15px;
  color: #333333;
}

.footer-widget__info li+li {
  margin-top: 24px;
}

.footer-widget__contact__text,
.footer-widget__contact__link {
  margin-top: -5px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #333333;
  transition: all 0.4s ease-in-out;
}

.footer-widget__contact__link {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.footer-widget__contact__link:hover {
  background-size: 100% 1px;
}

.footer-widget__contact__link:hover {
  color: green;
}

.footer-widget__btn {
  color: #D9D9D9;
  border: 1px solid #D9D9D9;
  background-color: transparent;
  padding: 10px 20px;
  border-radius: 20px;
}

.footer-widget__btn:hover {
  color: #D9D9D9;
  background-color: #B76E79;
}

.footer-widget--about .wallox-btn {
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  text-transform: capitalize;
  color: #2C3E50;
  border: 1px solid rgba(228, 218, 204, 0.15);
  background-color: transparent;
  padding: 11px 14px;
}

.footer-widget--about .wallox-btn i {
  font-size: 12px;
  margin-left: 7px;
}

.footer-widget--about .wallox-btn:hover {
  color: var(--wallox-white, #fff);
}

.footer-widget--links {
  margin-left: 39px;
}

@media (max-width: 1199px) {
  .footer-widget--links {
    margin-left: 0;
  }
}

.footer-widget--service {
  margin-left: -30px;
}

@media (max-width: 1199px) {
  .footer-widget--service {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  padding: 20px 0px;
}

@media (max-width: 991px) {
  .contact-one {
    padding: 20px 0px;
  }
}

@media (max-width: 767px) {
  .contact-one {
    padding: 20px 0px;
  }
}

.contact-one__item+.contact-one__item {
  margin-top: 30px;
}

.contact-one__item {
  background: #F5F5F5;
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 37px 20px 37px 30px;
  border: 1px solid var(--wallox-border-color, #E4DACC);
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media (max-width: 575px) {
  .contact-one__item {
    padding: 30px 15px 30px 20px;
  }
}

.contact-one__item__icon {
  max-width: 84px;
  width: 100%;
  height: 84px;
  border-radius: 50%;
  background: var(--wallox-white, #fff);
  border: 10px solid var(--wallox-border-color, #E4DACC);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #333333;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
}

@media (max-width: 575px) {
  .contact-one__item__icon {
    max-width: 70px;
    height: 70px;
  }
}

.contact-one__item__icon::after {
  content: "";
  position: absolute;
  top: 0%;
  height: 0;
  width: 0;
  left: 50%;
  background-color: #F5F5F5;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: -1;
}

.contact-one__item__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 80%;
  margin-bottom: 11px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: #333333;
  text-shadow: 0 0 0.1px currentColor;
}

.contact-one__item__call,
.contact-one__item__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 0;
  color: var(--wallox-text, #7E7C76);
  padding-bottom: 0;
  display: block;
}

.contact-one__item__call {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.contact-one__item__call:hover {
  background-size: 100% 1px;
}

.contact-one__item__call:hover {
  color: #45B34A;
}

.contact-one__item:hover .contact-one__item__icon {
  color: #333333;
}

.contact-one__item:hover .contact-one__item__icon i {
  animation: top-bottom 0.4s ease-in-out;
}

.contact-one__item:hover .contact-one__item__icon::after {
  top: 0%;
  height: 100%;
  width: 100%;
  left: 0%;
}

.contact-one__item:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #F0FAF2;
  color: #333333;
}

.contact-one__inner {
  position: relative;
  background: #F0FAF2;
  padding: 30px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
}

.contact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.15;
}

.contact-one__form__thumb {
  position: relative;
  z-index: 1;
  margin-right: 12px;
}

@media (max-width: 991px) {
  .contact-one__form__thumb {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .contact-one__form__thumb {
    display: none;
  }
}

.contact-one__form__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.contact-one__form {
  margin-left: -12px;
}

@media (max-width: 991px) {
  .contact-one__form {
    margin-left: 0px;
  }
}

.contact-one__form input[type=text],
.contact-one__form input[type=email] {
  border-radius: 10px;
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--wallox-white, #fff);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  color: var(--wallox-text, #7E7C76);
  display: block;
}

.contact-one__form input[type=text]::placeholder,
.contact-one__form input[type=email]::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--wallox-text, #7E7C76);
  text-transform: capitalize;
}

.contact-one__form textarea {
  border-radius: 10px;
  height: 150px;
  width: 100%;
  border: none;
  background-color: var(--wallox-white, #fff);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-weight: 400;
  font-size: 16px;
  color: var(--wallox-text, #7E7C76);
  display: block;
}

.contact-one__form textarea::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: var(--wallox-text, #7E7C76);
  text-transform: capitalize;
}

.contact-one__form .wallox-btn__submite {
  display: flex;
  align-items: center;
}

.contact-one .wallox-btn::before {
  border-radius: 10px;
}

.contact-one .wallox-btn__submite {
  border-radius: 10px;
  color: var(--wallox-white, #fff);
}

.contact-one .wallox-btn__submite i {
  margin-left: 20px;
  font-size: 14px;
}


.gradient-btn {
  position: relative;
  padding: 10px 60px;
  border: none;
  border-radius: 50px;
  background: #45B34A;
  background-size: 200% 200%;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s ease;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gradient-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background-position: 100% 100%;
  background: transparent;
  color: #333333;
}

.gradient-btn:active {
  transform: translateY(1px);
}

.gradient-btn .icon-right-arrow {
  transition: transform 0.3s ease;
}

.gradient-btn:hover .icon-right-arrow {
  transform: translateX(5px);
}

.gradient-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: transparent;
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.gradient-btn:active::after {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }

  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  position: relative;
  z-index: 1;
  background: #ECF0F1;
}

.vendor-login-btn1 {
  display: inline-block;
  white-space: nowrap;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-align: center;
  vertical-align: middle;
  border-radius: 50px;
  color: #fff;
  background: #45B34A;
  transition: all 0.3s ease-in-out;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vendor-login-btn1:hover {
  background: #45b34a;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.header-buttons1 {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.topbar-one__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1px 0px;
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
}

.topbar-one__info {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 0;
}

.topbar-one__info__item {
  display: flex;
  align-self: center;
  gap: 10px;
}

.topbar-one__info__icon {
  font-size: 7px;
  color: #2E8B57;
  line-height: 1;
}

.topbar-one__info__icon i {
  line-height: 2;
}

.topbar-one__info__content,
.topbar-one__info__location {
  font-style: normal;
  font-weight: 800;
  font-size: 10px;
  line-height: 1.25;
  color: #2E8B57;
  margin-bottom: 0;
}

.topbar-one__info__content {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.topbar-one__info__content:hover {
  background-size: 100% 1px;
}

.topbar-one__info__content:hover {
  color: #333333;
}

@media (max-width: 991px) {

  .topbar-one {
    display: none;
  }

  /* .topbar-one__info {
    display: none;
  } */
}

.topbar-one__social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.topbar-one__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(228, 218, 204), 0.2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  color: #ECF0F1;
  background-color: #6a7b71;
}

.topbar-one__social a:hover {
  color: #fff;
  border: 1px solid rgba(223, 158, 66), 0.2;
  background: #333333;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  background: #fff;
}

.main-header .container-fluid {
  max-width: 1550px;
}

.main-header__inner {
  display: flex;
  align-items: center;
  padding: 10px 0;
  position: relative;
}

@media (max-width: 767px) {
  .main-header__inner {
    padding: 10px 0;
  }
}

.main-header__logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .main-header__logo {
    width: auto;
  }
}

@media (min-width: 768px) {
  .main-header__logo .mobile-nav__btn {
    margin-left: 30px;
  }
}

.scrollable-dropdown {
  max-height: 350px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrollable-dropdown::-webkit-scrollbar {
  display: none;
}

.scrollable-dropdown::-webkit-scrollbar-track {
  background: #2E8B57;
}

.scrollable-dropdown::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.scrollable-dropdown::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.main-header__right {
  display: flex;
  align-items: center;
}

.main-header__right__info {
  display: flex;
  align-items: center;
}

.main-header__right__info__item {
  font-size: 16px;
  color: #2d3945;
  font-weight: 900;
}

.main-header__right__info__item:hover {
  color: #ECF0F1;
}

.main-header__right__info__item+.main-header__right__info__item {
  margin-left: 40px;
}

@media (max-width: 575px) {
  .main-header__right__info__item+.main-header__right__info__item {
    margin-left: 20px;
  }
}

@media (max-width: 1300px) and (min-width: 1199px) {
  .main-header__right__info__item+.main-header__right__info__item {
    margin-left: 25px;
  }
}
/* 
.main-header__right__info+.main-header__right__link {
  margin-left: 60px;
}

@media (max-width: 1300px) and (min-width: 1199px) {
  .main-header__right__info+.main-header__right__link {
    margin-left: 30px;
  }
}

.main-header__right__link {
  padding: 15px 0px 15px 24px;
  border-radius: 100px 0px 0px 100px;
  background-color: var(--wallox-base, #0d93b4);
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .main-header__right__link {
    display: none;
  }
}

.main-header__right__link::after {
  content: "";
  background-color: var(--wallox-base, #0d93b4);
  width: 999px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 99%;
  z-index: -2;
}

@media (max-width: 767px) {
  .main-header__right__link::after {
    display: none;
  }
}

.main-header__right__link::before {
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  width: 410px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0%;
  z-index: -1;
  mix-blend-mode: multiply;
  transform: matrix(1, 0, 0, -1, 0, 0);
  opacity: 0.3;
}

@media (max-width: 767px) {
  .main-header__right__link::before {
    display: none;
  }
} */

.btn1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5px, 1vw, 1px) clamp(10px, 3vw, 14px);
  font-size: clamp(12px, 3vw, 14px);
  color: #45B34A;
  font-weight: 800;
  background: #ECF0F1;
  background-size: 100% 200%;
  background-position: 5% 30%;
  border: 2px solid #45B34A;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  min-width: max-content;

}

.btn1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  background-position: 0% 100%;
  background-color: #90EE90;
  color: #333;
}

.btn1:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 1);
}

.btn1 i {
  margin-left: clamp(4px, 1vw, 8px);
  /* Responsive margin */
  transition: transform 0.3s ease;
}

.btn1:hover i {
  transform: translateX(3px);
}

/* Optional: Media query for very small screens if needed */
@media (max-width: 480px) {
  .btn1 {
    padding: 0.5px 10px;
    font-size: 12px;
  }
}

.main-header__nav {
  margin-left: auto;
  margin-right: 60px;
}

@media (max-width: 575px) {
  .main-header__nav {
    margin-right: 0px;
  }
}

.main-header--two {
  background: #fff;

}

.main-header--two .main-header__right__link::before,
.main-header--two .main-header__right__link::after {
  display: none;
}

.main-header--two .main-header__logo {
  position: relative;
  z-index: 1;
}

.main-header--two .main-header__logo a {
  background: #F0FAF2;
  padding: 15px 71px 15px 0px;
  clip-path: polygon(80% 0, 100% 45%, 100% 100%, 0 100%, 0 0);

}

@media (max-width: 991px) {
  .main-header--two .main-header__logo a {
    padding: 10px 30px 10px 0px;
  }
}

.main-header--two .main-header__logo::after {
  content: "";
  background: #F0FAF2;
  width: 999px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 99%;
  z-index: -2;
}

/* .main-header--two .main-header__logo::before {
  content: "";
  background-color: green;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  clip-path: polygon(80% 0, 100% 45%, 100% 100%, 0 100%, 0 0);
  z-index: -2;
} */

@media (max-width: 767px) {
  .main-header--two .main-header__logo::before {
    display: none;
  }
}

.main-header--two .mobile-nav__btn span {
  background-color: #333333;
}

.main-header--two .main-header__inner {
  padding: 0 0;
}

.main-header--two .main-menu .main-menu__list>li {
  padding-top: 20px;
  padding-bottom: 20px;
}

.main-header--two .main-header__right__link {
  padding: 0;
  margin: 0;
  background: transparent;
}

.main-header--two .main-menu .main-menu__list>li>a,
.main-header--two .main-header__right__info__item {
  color: #333333;
}

@media (max-width: 1420px) {
  .main-header--two .main-menu .main-menu__list>li+li {
    margin-left: 20px;
  }
}

@media (max-width: 1420px) {
  .main-header--two .main-header__nav {
    margin-right: 40px;
  }
}

@media (max-width: 575px) {
  .main-header--two .main-header__nav {
    margin-right: 0px;
  }
}

.main-header--two .main-header__right__bar {
  font-size: 16px;
  color: #fff;
  margin-left: 60px;
  cursor: pointer;
}

@media (max-width: 1420px) {
  .main-header--two .main-header__right__bar {
    margin-left: 40px;
  }
}

@media (max-width: 1199px) {
  .main-header--two .main-header__right__bar {
    display: none;
  }
}

.main-header--two .btn1 {
  margin-left: 60px;
}

@media (max-width: 1500px) and (min-width: 1199px) {
  .main-header--two .btn1 {
    display: none;
  }
}

@media (max-width: 1420px) {
  .main-header--two .btn1 {
    margin-left: 40px;
  }
}

.main-header--three {
  background-color: #2E8B57;
}

.main-header--three .main-menu .main-menu__list>li {
  padding-top: 27.25px;
  padding-bottom: 27.25px;
}

.main-header--three .main-header__inner {
  padding: 0;
}

@media (max-width: 1199px) {
  .main-header--three .main-header__inner {
    padding: 10px 0px;
  }
}

.main-header--three .mobile-nav__btn span {
  background-color: #fff;
}

.main-header--three .main-header__right__link {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
}

.main-header--three .main-header__right__link::after,
.main-header--three .main-header__right__link::before {
  display: none;
}

.main-header--three .main-header__nav {
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 1199px) {
  .main-header--three .main-header__nav {
    margin-left: 70px;
  }
}

@media (max-width: 575px) {
  .main-header--three .main-header__nav {
    margin-left: 0px;
  }
}

.main-header--three .main-header__logo {
  display: none;
}

@media (max-width: 1199px) {
  .main-header--three .main-header__logo {
    display: block;
  }
}

.main-header--three .main-menu .main-menu__list>li>a,
.main-header--three .main-header__right__info__item {
  color: #fff;
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: #fff;
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--wallox-text-dark-rgb, 46, 42, 32), 0.3);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}

.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.main-header--two.active {
  background: #fff;
}

.main-header--three.active {
  background: #2E8B57;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: 40px;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  .mobile-nav__btn {
    margin-left: 30px;
    margin-right: 10px;
  }
}

@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}

.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: #2C3E50;
}

.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}


.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}

.main-menu .main-menu__list>li {
  padding-top: 36.25px;
  padding-bottom: 36.25px;
  position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
  position: relative;
}

.main-menu .main-menu__list>li+li {
  margin-left: 40px;
}

@media (max-width: 1400px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 30px;
  }
}

@media (max-width: 1300px) {
  .main-menu .main-menu__list>li+li {
    margin-left: 20px;
  }
}

.main-menu .main-menu__list>li>a {
  display: flex;
  align-items: center;
  color: #333333;
  text-transform: capitalize;
  position: relative;
  font-size: 14px;
  transition: all 500ms ease;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-shadow: 0 0 0.01px currentColor;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
  color: green;
  text-shadow: 0 0 0.5px currentColor;
}

.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--wallox-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--wallox-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>.megamenu {
  position: static;
}

.main-menu .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}

.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li>a {
  font-size: 14px;
  line-height: 26px;
  color: #2C3E50;
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  font-weight: 600;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}

.main-menu .main-menu__list li ul li>a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--wallox-base, #0d93b4);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a {
  background-color: var(--wallox-gray, #F4EDE4);
  color: var(--wallox-text-dark, #4b2958);
}

.main-menu .main-menu__list li ul li.current>a::after,
.main-menu .main-menu__list li ul li:hover>a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.main-menu .main-menu__list li ul li>ul {
  top: 0;
  left: calc(100% + 20px);
}

.main-menu .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {

  .main-menu__list li:nth-last-child(1) ul li>ul,
  .main-menu__list li:nth-last-child(2) ul li>ul {
    left: auto;
    right: calc(100% + 20px);
  }
}

/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--wallox-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}

.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--wallox-text-dark, #4b2958);
}

@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--wallox-base, #0d93b4);
}

.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Side Bar Head
--------------------------------------------------------------*/
/*Header Right Menu Style*/
.header-right-sidebar {
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: left center;
  transition: transform 600ms ease 600ms, visibility 600ms ease 600ms;
  position: fixed;
  visibility: hidden;
  background: transparent;
}

.header-right-sidebar__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2E8B57;
  opacity: 0.66;
  cursor: url(../images/close.png), auto;
}

.header-right-sidebar__content {
  max-width: 460px;
  z-index: 10;
  position: relative;
  height: 100%;
  margin-left: auto;
  background-color: #2C3E50;
  margin-right: 0;
  overflow-y: auto;
  padding: 50px 44px;
  overflow: hidden;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 600ms ease 0ms, visibility 600ms ease 0ms, transform 600ms ease 0ms;
}

.header-right-sidebar__close {
  font-size: 22px;
  color: #fff;
  position: absolute;
  padding: 30px;
  top: 0px;
  right: 30px;
  cursor: pointer;
}

.header-right-sidebar__logo-box {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--wallox-border-color-rgb, 228, 218, 204), 0.5);
}

.header-right-sidebar__container {
  padding-top: 40px;
}

.header-right-sidebar__container__about {
  padding-bottom: 40px;
}

.header-right-sidebar__container__title {
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 36px;
  color: var(--wallox-white, #fff);
  text-transform: capitalize;
  margin-bottom: 22px;
}

.header-right-sidebar__container__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--wallox-text, #7E7C76);
}

.header-right-sidebar__container__list {
  padding-bottom: 40px;
}

.header-right-sidebar__container__list__item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-right-sidebar__container__list__item+.header-right-sidebar__container__list__item {
  margin-top: 25px;
}

.header-right-sidebar__container__list__title {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text, #7E7C76);
}

.header-right-sidebar__container__list a,
.header-right-sidebar__container__list p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--wallox-gray, #F4EDE4);
}

.header-right-sidebar__container__list a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.header-right-sidebar__container__list a:hover {
  background-size: 100% 1px;
}

.header-right-sidebar__container__list a:hover {
  color: var(--wallox-base, #0d93b4);
}

.header-right-sidebar__container__icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border-radius: 50%;
  color: var(--wallox-base, #0d93b4);
  background: var(--wallox-gray, #F4EDE4);
}

.header-right-sidebar__container .newsletter-box input[type=email] {
  width: 100%;
  border: none;
  border-radius: 6px;
  outline: none;
  height: 55px;
  background-color: var(--wallox-white, #fff);
  color: var(--wallox-text, #7E7C76);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  padding-left: 30px;
  padding-right: 60px;
  transition: all 500ms ease;
}

.header-right-sidebar__container .newsletter-box input[type=email]:focus {
  color: var(--wallox-white, #fff);
}

.header-right-sidebar__container .newsletter-box input[type=email]::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: var(--wallox-text, #7E7C76);
}

.header-right-sidebar__container .newsletter-box button {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  background: var(--wallox-base, #0d93b4);
  width: 100%;
  margin-top: 10px;
  border: none;
  border: 1px solid transparent;
  padding: 15px;
  border-radius: 10px;
}

.header-right-sidebar__container .newsletter-box button:hover {
  color: var(--wallox-base, #0d93b4);
  background-color: transparent;
  border-color: var(--wallox-base, #0d93b4);
}

.header-right-sidebar__container .newsletter-box button::before {
  background: transparent;
}

.header-right-sidebar.isActive {
  visibility: visible;
  transform: translateX(0%);
}

.header-right-sidebar.isActive .header-right-sidebar__content {
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-contact {
  padding: 120px 0px;
  position: relative;
  background: #F5F5F5;
}

@media (max-width: 991px) {
  .testimonials-contact {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .testimonials-contact {
    padding: 80px 0px;
  }
}

.testimonials-contact--home {
  position: relative;
  z-index: 1;
}

.testimonials-contact--home .sec-title__title {
  color: #333333;
}

.testimonials-contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: overlay;
}

.testimonials-contact__right {
  margin-left: 30px;
}

.testimonials-contact__right .sec-title {
  padding-bottom: 40px;
}

.testimonials-contact__carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.testimonials-contact__carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50% !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.testimonials-contact__carousel .owl-nav button span {
  border: 1px solid #45B34A;
  outline: none;
  overflow: hidden;
  width: 50px;
  height: 50px;
  background-color: #D9D9D9;
  display: flex;
  justify-content: center;
  align-items: center;
  color: grey;
  border-radius: 50%;
  font-size: 14px;
  color: grey;
  transition: all 500ms ease;
}

.testimonials-contact__carousel .owl-nav button span:hover {
  background-color: #45B34A;
  color: var(--wallox-white, #fff);
}

.testimonials-contact__carousel--two .owl-nav {
  position: relative;
}

.testimonials-contact__carousel--two .owl-nav button {
  background-color: transparent;
}

.testimonials-contact__carousel--two .owl-nav button span {
  background-color: #45B34A;
  color: var(--wallox-white, #fff);
  border: 1px solid transparent;
}

.testimonials-contact__carousel--two .owl-nav button span:hover {
  background-color: transparent;
  color: #45B34A;
  border: 1px solid #45B34A;
}

.testimonials-contact__carousel--two .owl-nav::after,
.testimonials-contact__carousel--two .owl-nav::before {
  content: "";
  width: 35%;
  height: 0.7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(var(--wallox-border-color-rgb, 228, 218, 204), 0.3);
  left: 0;
}

.testimonials-contact__carousel--two .owl-nav::after {
  right: 0;
  left: auto;
}

.testimonials-contact__item {
  position: relative;
  padding: 40px;
  background-color: #ecebeb;
  border-radius: 20px;
}

.testimonials-contact__item__text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 175%;
  margin-bottom: -4px;
  padding-bottom: 0;
  color: grey;
  text-transform: capitalize;
  text-shadow: 0 0 0.1px currentColor;
}

.testimonials-contact__author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  position: relative;
}

.testimonials-contact__author__image {
  max-width: 100px;
  height: 100px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-contact__author__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
}

.testimonials-contact__author__name {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  color: #45B34A;
  margin-bottom: 5px;
  padding-bottom: 0;
  text-transform: capitalize;
  text-shadow: 0 0 0.1px currentColor;
}

.testimonials-contact__author__deg {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  margin-bottom: 0px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text, #7E7C76);
}

.testimonials-contact__author__star {
  font-size: 15px;
  color: goldenrod;
}

.testimonials-contact__author__star i:last-child {
  color: var(--wallox-text, #7E7C76);
}

.testimonials-contact__author__quite {
  font-size: 30px;
  color: #2E8B57;
  position: absolute;
  top: 0px;
  right: 0;
  line-height: 0;
}

.testimonials-contact__left {
  position: relative;
  z-index: 1;
  background: #F5F5F5;
  border-radius: 20px;
  padding: 60px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

@media (max-width: 767px) {
  .testimonials-contact__left {
    padding: 40px;
  }
}

@media (max-width: 575px) {
  .testimonials-contact__left {
    padding: 30px;
  }
}

.testimonials-contact__left .contact-one__form {
  margin-left: 0;
}

.testimonials-contact__left .form-one__control label {
  margin-top: -8px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  display: block;
  margin-bottom: 9px;
  padding-bottom: 0;
  color: #333333;
  text-transform: capitalize;
}

.testimonials-contact__left .form-one__control textarea {
  height: 110px;
}

.testimonials-contact__left .sec-title {
  padding-bottom: 20px;
}

.testimonials-contact__left .sec-title__tagline {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #45B34A;
}

.testimonials-contact__left .sec-title__title {
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 153%;
  color: #333333;
}

.testimonials-contact__left .wallox-btn__submite {
  border-radius: 6px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  transform: scale(1);
}

.testimonials-contact__left .wallox-btn__submite::before {
  background: #90EE90;
  border-radius: 6px;
}

.testimonials-contact__left .wallox-btn__submite:hover {
  color: #333333;
  transform: scale(1);
}

.testimonials-contact__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.15;
}

.testimonials-card {
  padding: 30px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .testimonials-card {
    padding: 20px;
    border: 2px solid #D3EFD9;
    border-radius: 20px;
  }
}

@media (max-width: 991px) {
  .testimonials-card {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .testimonials-card {
    padding: 20px;
    border: 2px solid var(--wallox-border-color, #E4DACC);
    border-radius: 20px;
  }
}

.testimonials-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.testimonials-card__image {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-card__image img {
  object-fit: cover;
  width: 100%;
}

.testimonials-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/shapes/testi-border.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .testimonials-card::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .testimonials-card::after {
    display: none;
  }
}

.testimonials-card__text {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 30px;
  padding-bottom: 0;
  color: var(--wallox-text, #7E7C76);
}

.testimonials-card__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 150px;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .testimonials-card__content {
    margin-right: 0;
  }
}

@media (max-width: 575px) {
  .testimonials-card__content {
    margin-right: 0;
  }
}

.testimonials-card__author__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  text-transform: capitalize;
  color: #333333;
  padding-bottom: 0;
  margin-bottom: 4px;
}

.testimonials-card__author__dec {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 138%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text, #7E7C76);
  display: block;
}

.testimonials-card__rating {
  color: goldenrod;
  letter-spacing: 0.1em;
}

.testimonials-card__rating i:last-child {
  color: var(--wallox-text, #7E7C76);
}

.testimonials-card__quite {
  position: absolute;
  bottom: 20px;
  right: 30px;
  line-height: 0;
  font-size: 45px;
  color: #D3EFD9;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .testimonials-card__quite {
    display: none;
  }
}

@media (max-width: 575px) {
  .testimonials-card__quite {
    display: none;
  }
}

.testimonials-card:hover .testimonials-card__quite {
  color: #45B34A;
}

.testimonials-one {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 991px) {
  .testimonials-one {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .testimonials-one {
    padding: 80px 0px;
  }
}

/**testimonials-Two**/
.testimonials-two {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 991px) {
  .testimonials-two {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .testimonials-two {
    padding: 80px 0px;
  }
}

/**testimonials-three**/
.testimonials-three {
  padding: 120px 0px;
  position: relative;
  background-color: #F5F5F5;
}

@media (max-width: 991px) {
  .testimonials-three {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .testimonials-three {
    padding: 80px 0px;
  }
}

.testimonials-three__inner {
  position: relative;
  border-radius: 30px;
  padding: 60px 40px;
  z-index: 1;
}

.testimonials-three__inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  z-index: -1;
  overflow: hidden;
}

.testimonials-three__inner__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #D3EFD9;
  border-radius: 30px;
}

.testimonials-three__carousel__left {
  background-color: var(--wallox-white, #fff);
  border-radius: 50%;
  max-width: 528px;
  width: 100%;
  padding: 70px 40px;
  position: relative;
}

@media (max-width: 575px) {
  .testimonials-three__carousel__left {
    padding: 40px 20px;
  }
}

.testimonials-three__carousel__left::after {
  content: "";
  width: 115px;
  height: 82px;
  background-color: var(--wallox-white, #fff);
  position: absolute;
  bottom: 30%;
  right: -10%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

@media (max-width: 575px) {
  .testimonials-three__carousel__left::after {
    display: none;
  }
}

.testimonials-three__item__quite {
  text-align: center;
  margin-bottom: 50px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.testimonials-three__item__text {
  margin-top: -10px;
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  padding-bottom: 0;
  text-transform: capitalize;
  color: #333333;
  max-width: 440px;
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
}

@media (max-width: 575px) {
  .testimonials-three__item__text {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.testimonials-three__item__name {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 0;
  color: green;
}

@media (max-width: 575px) {
  .testimonials-three__item__name {
    font-size: 14px;
  }
}

.testimonials-three__item__dec {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 200%;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0px;
  padding-bottom: 0;
}

@media (max-width: 575px) {
  .testimonials-three__item__dec {
    font-size: 12px;
  }
}

.testimonials-three__item__star {
  text-align: center;
  color: goldenrod;
}

.testimonials-three__carousel__right {
  position: relative;
  z-index: 1;
  max-width: 374px;
  width: 100%;
  height: 374px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .testimonials-three__carousel__right {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .testimonials-three__carousel__right {
    height: 300px;
    width: 300px;
  }
}

.testimonials-three__carousel__right::after {
  position: absolute;
  left: -30px;
  top: -30px;
  right: -30px;
  bottom: -30px;
  margin: auto;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  content: "";
  border-style: dashed;
  border-width: 2px;
  border-color: var(--wallox-white, #fff);
  border-radius: 50%;
  animation-duration: 1500ms;
  animation: rotated 20s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
}

.testimonials-three__thumb__carousel {
  position: relative;
}

.testimonials-three__thumb__carousel .slick-button--prev,
.testimonials-three__thumb__carousel .slick-button--next {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  background-color: transparent;
}

.testimonials-three__thumb__carousel .slick-button--prev span,
.testimonials-three__thumb__carousel .slick-button--next span {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--wallox-base, #0d93b4);
  border-radius: 50%;
  font-size: 14px;
  transition: all 500ms ease;
  border: 1px solid var(--wallox-white, #fff);
}

.testimonials-three__thumb__carousel .slick-button--prev span:hover,
.testimonials-three__thumb__carousel .slick-button--next span:hover {
  border-color: var(--wallox-base, #0d93b4);
  background-color: var(--wallox-base, #0d93b4);
  color: var(--wallox-white, #fff);
}

.testimonials-three__thumb__carousel .slick-button--next {
  right: 20px;
  left: auto;
}

@media (max-width: 575px) {
  .testimonials-three__thumb__item {
    width: 300px;
    height: 300px;
    border-radius: 50%;
  }

  .testimonials-three__thumb__item img {
    object-fit: cover;
    width: 100%;
  }
}

.testimonials-three__thumb__item img {
  border-radius: 50%;
}

.testimonials-three__left {
  position: absolute;
  top: 6%;
  left: 50%;
  animation: topToBottom 3s ease-in-out infinite;
}

@media (max-width: 991px) {
  .testimonials-three__left {
    display: none;
  }
}

.testimonials-three__right {
  position: absolute;
  bottom: 5%;
  right: 4%;
  animation: topToBottom 3s ease-in-out infinite;
  animation-delay: 1s;
}

@media (max-width: 991px) {
  .testimonials-three__right {
    display: none;
  }
}

.testimonials-three__element {
  position: absolute;
  top: 20%;
  left: 0;
  animation: topToBottom 4s ease-in-out infinite;
}

.testimonials-three__element-two {
  position: absolute;
  bottom: 20%;
  right: 0;
  animation: rotated 10s ease-in-out infinite;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
  padding-top: 60px;
  padding-bottom: 80px;
}

.gallery-one .container-fluid {
  width: 100%;
  max-width: 1572px;
}

.gallery-one--page {
  padding-top: 100px;
}

.gallery-one .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}

@media (min-width: 992px) {
  .gallery-one__carousel .owl-nav {
    display: none;
  }
}

.gallery-one__filter__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-one__filter__list li {
  cursor: pointer;
}

.gallery-one__filter__list li span {
  display: block;
  font-size: 14px;
  background-color: var(--wallox-gray, #F4EDE4);
  transition: all 500ms ease;
  text-transform: capitalize;
  font-weight: 600;
  padding: 12px 20px;
  line-height: 1.2em;
  letter-spacing: 0;
}

.gallery-one__filter__list li.active span,
.gallery-one__filter__list li:hover span {
  background-color: var(--wallox-base, #0d93b4);
  color: var(--wallox-white, #fff);
}

.gallery-one__card {
  position: relative;
  overflow: hidden;
  background-color: var(--wallox-text-dark, #4b2958);
}

.gallery-one__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}

.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  align-items: end;
  transform: translateY(100%);
  transition: transform 300ms ease;
  transform-origin: bottom center;
}

.gallery-one__card__hover .img-popup {
  position: relative;
}

.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.gallery-one__card:hover .gallery-one__card__hover {
  transform-origin: top center;
  transform: translateY(0);
}

.gallery-one__card__hover a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(41, 41, 41, 0.3);
  transition: background 0.3s ease;
}

.gallery-one__card__hover a:hover {
  background: rgba(26, 26, 26, 0.6);
}

.gallery-one__card__hover i {
  font-size: 18px;
  color: white;
}

.gallery-one__card__icon {
  width: 23px;
  height: 23px;
  display: block;
  position: relative;
}

.gallery-one__card__icon::after,
.gallery-one__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
}

.gallery-one__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-one__card__icon:hover::after,
.gallery-one__card__icon:hover::before {
  background-color: #2C3E50;
}

.gallery-two {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
}

.gallery-two .container-fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

@media (max-width: 767px) {
  .gallery-two .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.gallery-two .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}

.gallery-two__col-one {
  width: 65%;
}

@media (max-width: 1199px) {
  .gallery-two__col-one {
    width: 100%;
  }
}

.gallery-two__col-two {
  width: 35%;
}

@media (max-width: 1199px) {
  .gallery-two__col-two {
    width: 100%;
  }
}

.gallery-two__card {
  position: relative;
  overflow: hidden;
  background-color: var(--wallox-text-dark, #4b2958);
}

.gallery-two__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}

.gallery-two__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--wallox-text-dark-rgb, 46, 42, 32), 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.gallery-two__card__hover .img-popup {
  position: relative;
}

.gallery-two__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.gallery-two__card:hover .gallery-two__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.gallery-two__card a {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--wallox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-two__card a:hover .gallery-two__card__icon::after,
.gallery-two__card a:hover .gallery-two__card__icon::before {
  background-color: var(--wallox-base, #0d93b4);
}

.gallery-two__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}

.gallery-two__card__icon::after,
.gallery-two__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--wallox-text-dark, #4b2958);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}

.gallery-two__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-two__info {
  position: relative;
  background-color: var(--wallox-base, #0d93b4);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 50px 0 100px;
  height: 100%;
}

@media (min-width: 1200px) {
  .gallery-two__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
}

@media (max-width: 1500px) {
  .gallery-two__info {
    padding-left: 40px;
    padding-right: 30px;
  }
}

@media (max-width: 1199px) {
  .gallery-two__info {
    padding: 80px 50px;
  }
}

@media (max-width: 767px) {
  .gallery-two__info {
    padding: 50px 30px;
  }
}

.gallery-two__info__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}

.gallery-two__info__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-two__info__title {
  color: var(--wallox-white, #fff);
  font-size: 44px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 1200px) and (max-width: 1300px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 42px;
  }
}

@media (max-width: 767px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 45px;
  }
}



.popular .container-fluid {
  width: 100%;
  max-width: 1572px;
}

.popular--page {
  padding-top: 100px;
}

.popular .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}

@media (min-width: 992px) {
  .popular__carousel .owl-nav {
    display: none;
  }
}

.popular__filter__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.popular__filter__list li {
  cursor: pointer;
}

.popular__filter__list li span {
  display: block;
  font-size: 14px;
  background-color: var(--wallox-gray, #F4EDE4);
  transition: all 500ms ease;
  text-transform: capitalize;
  font-weight: 600;
  padding: 12px 20px;
  line-height: 1.2em;
  letter-spacing: 0;
}

.popular__filter__list li.active span,
.popular__filter__list li:hover span {
  background-color: var(--wallox-base, #0d93b4);
  color: var(--wallox-white, #fff);
}

.popular__card {
  position: relative;
  overflow: hidden;
  background-color: #2C3E50;
  border-radius: none;
}

.popular__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}

.popular__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(20, 20, 90, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}

.popular__card__hover .img-popup {
  position: relative;
}

.popular__card:hover img {
  transform: scale(1.05);
}

.popular__card:hover .popular__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}

.popular__card__icon {
  width: 53px;
  height: 53px;
  display: block;
  position: relative;
}

.popular__card__icon::after,
.popular__card__icon::before {
  content: "";
  width: 20px;
  height: 100%;
  background-color: #ECF0F1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
}

.popular__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.popular__card__hover .fas,
.popular__card__hover .icon-heart {
  font-size: 30px;
  color: #fff;
}

.popular__card__hover .icon-heart:hover,
.popular__card__hover .fa-heart:hover {
  font-size: 28px;
  color: #ff4757;
  text-shadow: 0 0 10px rgba(255, 71, 87, 0.5);
  transform: scale(1.2);
  animation: pulse 0.5s ease;
}


/* Pagination styles */
.post-pagination {
  display: flex;
  align-items: center;
  margin-top: 40px;
  gap: 10px;
}

.post-pagination li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #90EE90;
  color: #333333;
  border-radius: 50%;
  font-weight: 600;
  transition: all 500ms ease;
}

.post-pagination li.active a,
.post-pagination li a:hover {
  background-color: green;
  color: #ECF0F1;
}

.post-pagination__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Masonry layout adjustment */
.masonry-layout {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 200px;
}

@media (max-width: 767px) {
  .masonry-layout {
    grid-gap: 15px;
  }
}


.tooltip {
  font-family: inherit;
}

.tooltip-inner {
  background-color: #2C3E50;
  font-size: 14px;
  padding: 5px 10px;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 40px;
}

@media (min-width: 1200px) {
  .comments-one {
    margin-top: 55px;
  }
}

.comments-one__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 25px;
  margin-top: -4px;
  margin-bottom: -4px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: var(--wallox-text-dark, #4b2958);
}

@media (min-width: 992px) {
  .comments-one__title {
    font-size: 30px;
  }
}

.comments-one__list {
  margin: 0;
  margin-top: 40px;
}

.comments-one__card {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--wallox-border-color, #E4DACC);
}

@media (min-width: 768px) {
  .comments-one__card {
    display: flex;
    align-items: flex-start;
  }
}

.comments-one__card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comments-one__card__image {
  margin-right: 20px;
}

.comments-one__card__image img {
  border-radius: 50%;
}

.comments-one__card__title {
  margin: 0;
  text-transform: capitalize;
  color: var(--wallox-text-dark, #4b2958);
  margin-top: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  margin-bottom: 15px;
}

.comments-one__card__date {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--wallox-text, #7E7C76);
}

.comments-one__card__text {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  color: var(--wallox-text, #7E7C76);
  margin-bottom: -13px;
  padding-bottom: 0;
  text-transform: capitalize;
}

.comments-one__card__reply {
  padding: 10.5px 12px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 114%;
  border-radius: 6px;
  color: var(--wallox-white, #fff);
}

.comments-one__card__reply::before {
  border-radius: 6px;
}

.comments-one__card__content {
  position: relative;
}

.comments-form {
  margin-top: 40px;
}

@media (min-width: 1200px) {
  .comments-form {
    margin-top: 55px;
  }
}

.comments-form__title {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 123%;
  margin-top: -4px;
  margin-bottom: -4px;
  color: #333;
}

@media (min-width: 992px) {
  .comments-form__title {
    font-size: 30px;
  }
}

.comments-form input[type=text],
.comments-form input[type=email] {
  background-color: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid grey;
  border-radius: 10px;
  padding-left: 10px;
  padding-right: 10px;
}

.comments-form input[type=text]::placeholder,
.comments-form input[type=email]::placeholder {
  color: #7E7C76;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.comments-form textarea {
  margin-top: 10px;
  border-radius: 6px;
}

.comments-form textarea::placeholder {
  color: #7E7C76;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.comments-form__form {
  margin-top: 23px;
}

.comments-form .wallox-btn {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  padding: 11.5px 23.5px;
  border-radius: 6px;
  color: #fff;
}

.comments-form .wallox-btn::before {
  border-radius: 6px;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
}

.product__sidebar {
  position: relative;
  margin-top: 85px;
}

@media (max-width: 991px) {
  .product__sidebar {
    margin-top: 0;
  }
}

.product__sidebar--title {
  font-style: normal;
  color: #ECF0F1;
  font-weight: 700;
  font-size: 18px;
  line-height: 89%;
  padding-bottom: 0;
  margin-top: -5px;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.product__search-box {
  background: #2C3E50;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
}

.product__search {
  position: relative;
  border-radius: 0;
  position: relative;
}

.product__search input[type=text] {
  width: 100%;
  height: 59px;
  background-color: #fff;
  padding-left: 15px;
  padding-right: 50px;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #7E7C76;
  border: 1px solid #E4DACC;
  outline: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 6px;
  line-height: 114%;
  outline: none;
  position: relative;
}

.product__search input[type=text]::placeholder {
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  color: var(--wallox-text, #7E7C76);
  text-transform: capitalize;
}

.product__search button[type=submit] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0%;
  right: 10px;
  transform: translateY(80%);
  width: auto;
  font-size: 20px;
  line-height: 0;
  color: var(--wallox-base, #0d93b4);
}

.product__price-ranger {
  background-color: #2C3E50;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.product__price-ranger .price-ranger {
  background: #ECF0F1;
  border: 1px solid #E4DACC;
  padding: 0px 22px 0px 10px;
  border-radius: 6px;
}

.product__price-ranger #slider-range {
  margin: 22px 0 0 0px;
  background: var(--wallox-white, #fff);
  border: 1px solid #0d93b4 !important;
  border-radius: 10px !important;
  border: none;
  height: 7px;
  border-radius: 0;
  position: relative;
}

.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: #0d93b4;
}

.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -6px;
  background: #0d93b4;
  border: 0;
  height: 18px;
  width: 18px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(2) {
  display: none;
}

.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3)::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin: 3px 0 0 0px;
}

.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: #7E7C76;
  font-size: 12px;
  font-weight: 500;
  width: 40px;
  line-height: 20px;
  border: none;
  outline: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 0;
  text-align: center;
  background-color: transparent;
}

.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--wallox-text, #7E7C76);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  left: -2px;
}

.product__categories {
  background-color: #2C3E50;
  padding: 30px;
  border-radius: 10px;
}

.product__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -20px;
}

.product__categories ul li {
  position: relative;
  margin: 0 0 4px;
}

.product__categories ul li a {
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  z-index: 1;
  padding: 11px 15px 11px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: #ECF0F1;
}

.product__categories ul li a i {
  position: relative;
  display: inline-block;
  font-size: 12px;
  color: #7E7C76;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.product__categories ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #0d93b4;
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}

.product__categories ul li:hover a,
.product__categories ul li.active a {
  color: #fff;
  padding-left: 27px;
}

.product__categories ul li:hover a i,
.product__categories ul li.active a i {
  color: #fff;
}

.product__categories ul li:hover a::before,
.product__categories ul li.active a::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}

.product__categories ul li.active a {
  font-weight: 600;
}

.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .product__info-top {
    margin-top: 50px;
  }
}

@media (max-width: 767px) {
  .product__info-top {
    display: block;
    margin-top: 40px;
  }
}

.product__showing-text {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  padding-bottom: 0;
  color: var(--wallox-text, #7E7C76);
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 10px;
  }
}

.product__showing-sort {
  margin: 0;
  font-size: 18px;
}

.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 200px !important;
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
}

@media (max-width: 360px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 300px !important;
  }
}

.product__showing-sort .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 56px;
  outline: none !important;
  border-radius: 6px;
  border: 0;
  background-color: #2C3E50 !important;
  margin: 0;
  padding: 0;
  padding-left: 15px;
  padding-right: 15px;
  color: #ECF0F1 !important;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 56px;
  text-transform: capitalize;
}

.product__showing-sort .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  font-family: "icomoon" !important;
  content: "\e90b";
  font-weight: 900;
  font-size: 14px;
  color: #ECF0F1 !important;
}

.product__showing-sort .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid var(--wallox-border-color, #E4DACC);
}

.product__showing-sort .bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  color: #ECF0F1;
  background-color: #2C3E50;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-transform: capitalize;
}

.product__showing-sort .bootstrap-select .dropdown-menu>li:hover>a,
.product__showing-sort .bootstrap-select .dropdown-menu>li.selected>a {
  background: #B76E79;
  color: #ECF0F1;
  border-color: #0d93b4;
}

.product__item {
  position: relative;
  background-color: var(--wallox-white, #fff);
  transition: all 500ms ease;
}

.product__item:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.product__item__img {
  background-color: var(--wallox-gray, #F4EDE4);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
  height: 50vh;
}

.product__item__img img {
  text-align: center;
  height: 50vh;
  width: 100% !important;
  mix-blend-mode: multiply;
  transition: all 500ms ease;
  transform: scale(1);
}

.product__item__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}

.product__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--wallox-white, #fff);
  border-radius: 50%;
  color: var(--wallox-text-dark, #4b2958);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
}

.product__item__btn a:hover {
  background-color: var(--wallox-base, #0d93b4);
  color: var(--wallox-white, #fff);
}

.product__item__btn a:nth-child(1) {
  -webkit-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -moz-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -ms-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -o-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
  -moz-transform: translate3d(30px, 0, 0);
  -webkit-transform: translate3d(30px, 0, 0);
  -ms-transform: translate3d(30px, 0, 0);
  -o-transform: translate3d(30px, 0, 0);
}

.product__item__btn a:nth-child(2) {
  -webkit-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -moz-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -ms-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -o-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
  -moz-transform: translate3d(30px, 0, 0);
  -webkit-transform: translate3d(30px, 0, 0);
  -ms-transform: translate3d(30px, 0, 0);
  -o-transform: translate3d(30px, 0, 0);
}

.product__item__btn a+a {
  margin-top: 10px;
}

.product__item:hover .product__item__img img {
  transform: scale(1.05);
}

.product__item:hover .product__item__btn a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}

.product__item__content {
  position: relative;
  text-align: center;
  padding: 30px 20px;
  border-top: none !important;
  border: 1px solid var(--wallox-border-color, #E4DACC);
}

.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--wallox-base, #0d93b4);
  letter-spacing: 2.5px;
  margin-bottom: 17px;
}

.product__item__title {
  margin: 0;
  margin-bottom: 13px;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: var(--wallox-text-dark, #4b2958);
  text-transform: uppercase;
}

.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.product__item__title a:hover {
  background-size: 100% 1px;
}

.product__item__title a:hover {
  color: var(--wallox-base, #0d93b4);
}

.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--wallox-text, #7E7C76);
  font-style: normal;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 23px;
}

.product__item__link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  border-radius: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 133%;
  text-transform: uppercase;
  color: var(--wallox-white, #fff);
  transform: scale(1);
  padding: 12px 16px;
}

.product__item__link__icon {
  position: relative;
  display: inline-flex;
  margin-left: 30px;
  font-size: 16px;
}

.product__item__link__icon i {
  color: inherit;
}

.product__item__link__icon::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  background-color: rgba(var(--wallox-white-rgb, 255, 255, 255), 0.3);
  transition: all 400ms ease;
}

.product__item__link::before {
  border-radius: 0;
}

.product__item__link:hover .product__item__link__icon::before {
  background-color: rgba(var(--wallox-base-rgb, 223, 158, 66), 0.2);
}

.product__item__link:hover {
  background: transparent;
}

.product-one {
  padding: 120px 0;
  background-color: #ECF0F1;
}

@media (max-width: 767px) {
  .product-one {
    padding: 80px 0;
  }
}

@media (min-width: 992px) {
  .product-one__carousel .owl-nav {
    display: none;
  }
}

.product-one .post-pagination {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  background-color: #ECF0F1;
}

@media (max-width: 991px) {
  .product-details {
    padding: 0 0;
  }
}

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

.product-details__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-details__img img {
  max-width: 100vw;
  height: 100vh !important;
  object-fit: cover !important;
}

.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-family: var(--wallox-heading-font, "Plus Jakarta Sans", serif);
  margin-bottom: 22px;
}



.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.product-details__buttons a {
  text-transform: uppercase;
  display: inline-flex;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
  padding: 16.5px 14px;
  border-radius: 0;
  transform: scale(1);
  color: #F5F5F5;
}

.product-details__buttons a:hover {
  color: #333333;
}

.product-details__buttons a::before {
  border-radius: 0;
}

.product-details__buttons a:last-child {
  padding: 16.5px 14px;
  background: #45B34A;
  color: #F5F5F5;
}

.product-details__buttons a:last-child:hover {
  color: #333333;
}

.product-details__buttons__icon {
  position: relative;
  display: inline-flex;
  margin-left: 29px;
  font-size: 18px;
}

.product-details__buttons__icon i {
  font-size: 18px;
}

.product-details__buttons__icon::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255), 0.2;
  transition: all 400ms ease;
}

.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.product-details__socials__title {
  text-transform: capitalize;
  margin: 0;
  margin-right: 10px;
  flex: 0 0 100%;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--wallox-text, #7E7C76);
}

@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}

.product-details__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 16px;
  color: var(--wallox-text, #7E7C76);
  transition: all 500ms ease;
  border: 1px solid var(--wallox-border-color, #E4DACC);
}

.product-details__socials a:hover {
  background-color: #90EE90;
  color: #333333;
  border: 1px solid #333333;
}

.product-details__description {
  position: relative;
  margin: 55px 0 58px;
  border-bottom: 1px solid var(--wallox-border-color, #E4DACC);
}

@media (max-width: 991px) {
  .product-details__description {
    margin: 45px 0 30px;
  }
}

.product-details__description__title {
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 18px;
  font-weight: bold;
  line-height: 31px;
}

.product-details__description__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
}

.product-details__description__text+.product-details__description__text {
  margin-top: 23px;
  padding-bottom: 20px;
}

.product-details__description__lists {
  margin: 0 0 30px;
  padding: 0;
}

.product-details__description__lists li {
  display: block;
  position: relative;
  padding: 0 0 0 36px;
  font-size: 16px;
  line-height: 30px;
  font-weight: 600;
  color: var(--wallox-text-dark, #4b2958);
}

.product-details__description__lists li span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: var(--wallox-base, #0d93b4);
}

.product-details__review-title {
  margin-bottom: 44px;
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  line-height: 154%;
}

.product-details__comment-title {
  margin: 0;
  text-transform: capitalize;
  font-size: 25px;
  margin-top: -4px;
  margin-bottom: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  color: var(--wallox-text-dark, #4b2958);
}

@media (min-width: 992px) {
  .product-details__comment-title {
    margin-bottom: 56px;
  }
}

.product-details__comment__list {
  margin: 0;
  margin-top: 35px;
}

.product-details__comment__card {
  margin-bottom: 30px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--wallox-border-color, #E4DACC);
}

@media (min-width: 768px) {
  .product-details__comment__card {
    display: flex;
    align-items: flex-start;
  }
}

.product-details__comment__card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-details__comment__card__image {
  margin-right: 20px;
}

.product-details__comment__card__image img {
  border-radius: 50%;
}

.product-details__comment__card__title {
  margin: 0;
  text-transform: capitalize;
  color: var(--wallox-text-dark, #4b2958);
  margin-top: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  margin-bottom: 15px;
}

.product-details__comment__card__date {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--wallox-text, #7E7C76);
  text-shadow: 0 0 0.2px currentColor;
}

.product-details__comment__card__text {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  color: var(--wallox-text, #7E7C76);
  margin-bottom: -7px;
  padding-bottom: 0;
}

.product-details__comment__card__star {
  color: goldenrod;
  font-size: 16px;
  letter-spacing: 2px;
}

.product-details__comment__card__content {
  position: relative;
}

.product-details__form {
  position: relative;
  margin: 51px 0 0;
}

@media (max-width: 767px) {
  .product-details__form {
    margin: 30px 0 0;
  }
}

.product-details__form .row {
  --bs-gutter-x: 20px;
}

.product-details__form-title {
  margin-bottom: 14px;
  font-weight: bold;
  font-style: normal;
  font-size: 24px;
  line-height: 154%;
  text-transform: none;
}

.product-details__form-text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 27px;
  padding-bottom: 0;
  text-transform: capitalize;
}

.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 16px;
  color: goldenrod;
  margin: 0 0 15px;
}

.product-details__form-ratings__label {
  display: inline-block;
  letter-spacing: 0;
  color: var(--wallox-text-dark, #4b2958);
  margin: 0 17px 0 0;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
}

.product-details__form-ratings span {
  color: var(--wallox-text, #7E7C76);
}

.product-details__form__form {
  margin-top: 30px;
}

.product-details__form__form input[type=text],
.product-details__form__form input[type=email] {
  background-color: #fff;
  color: #7E7C76;
  font-size: 16px;
  font-weight: 500;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid #E4DACC;
  outline: none;
  padding-left: 10px;
  padding-right: 10px;
}

.product-details__form__form input[type=text]::placeholder,
.product-details__form__form input[type=email]::placeholder {
  color: #7E7C76;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.product-details__form .wallox-btn {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  padding: 12.5px 22.5px;
  color: #fff;
  border-radius: 6px;
}

.product-details__form .wallox-btn::before {
  border-radius: 6px;
}


.product-details__form-ratings .fa-star {
  cursor: pointer;
  color: #ccc;
  transition: color 0.2s;
  font-size: 20px;
  margin-right: 5px;
}

.product-details__form-ratings .fa-star:hover {
  color: #ffc107;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  padding: 120px 0;
}

@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0;
  }
}

.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 60px;
}

@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}

.cart-page__table thead tr th {
  color: #333;
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  padding: 0 0 24px;
  font-family: var(--wallox-heading-font, "Plus Jakarta Sans", serif);
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #E4DACC !important;
  box-shadow: none;
}

.cart-page__table thead tr th:last-child {
  text-align: right;
}

.cart-page__table tbody tr td {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  color: #333;
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--wallox-border-color, #E4DACC);
  border-bottom: 1px solid var(--wallox-border-color, #E4DACC);
  padding: 30px 0;
  letter-spacing: 0;
}

.cart-page__table tbody tr td:last-child {
  text-align: right;
}

.cart-page__table__meta {
  display: flex;
  align-items: center;
}

.cart-page__table__meta-img {
  width: 70px;
  height: 70px;
  background-color: var(--wallox-gray, #F4EDE4);
  margin-right: 10px;
}

.cart-page__table__meta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  border-radius: 6px;
}

.cart-page__table__meta-title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  text-transform: capitalize;
  color: #333;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cart-page__table__meta-title a {
  color: inherit;
}

.cart-page__table__meta-title a:hover {
  color: var(--wallox-base, #0d93b4);
}

.cart-page__table__remove {
  display: block;
  color: var(--wallox-text, #7E7C76);
  font-size: 13px;
  padding-right: 20px;
}

.cart-page__table__remove:hover {
  color: var(--wallox-base, #0d93b4);
}

.cart-page__table .product-details__quantity {
  margin-bottom: 0;
}

.cart-page__table .product-details__quantity .quantity-box input {
  font-size: 16px;
  font-weight: bold;
}

.cart-page__coupone__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .cart-page__coupone__box {
    margin-top: 20px;
    justify-content: start;
    flex-direction: column;
    gap: 30px;
    align-items: start;
  }
}

.cart-page__coupone__box__btn {
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 6px;
  color: #fff;
  border: 1px solid #333333;
  background: #45B34A;
}

.cart-page__coupone__box__btn::before {
  border-radius: 6px;
}

.wallox-btn::before {
  content: "";
  background-color: #90EE90;
  border-radius: 100px;
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-100%, 0) rotate(10deg);
  transform-origin: top left;
  transition: 0.2s transform ease-out;
  will-change: transform;
  z-index: -1;
}

.cart-page__coupone__box__btn:hover {
  background-color: #90EE90;
  color: #333333;
  border: 1px solid #333333;
  transition: all 0.3s ease;
}

.cart-page__coupone {
  margin-bottom: 50px;
}

.cart-page__coupone__title {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  color: #333;
  text-shadow: 0 0 0.2px currentColor;
}

.cart-page__coupone__form {
  position: relative;
  display: flex;
}

@media (max-width: 767px) {
  .cart-page__coupone__form {
    display: block;
    width: 100%;
  }
}

.cart-page__coupone__form input[type=text] {
  height: 58px;
  width: 268px;
  border: none;
  background-color: transparent;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  border: 1px solid var(--wallox-border-color, #E4DACC);
  font-size: 16px;
  color: var(--wallox-text, #7E7C76);
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  display: block;
  font-weight: 500;
  margin-right: 10px;
  border-radius: 6px;
}

.cart-page__coupone__form input[type=text]::placeholder {
  text-transform: capitalize;
  font-size: 16px;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .cart-page__coupone__form input[type=text] {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .cart-page__coupone__form input[type=text] {
    width: 100%;
    margin: 0 0 10px;
  }
}

.cart-page__coupone__form button {
  text-transform: uppercase;
  border-radius: 6px;
  color: var(--wallox-white, #fff);
}

.cart-page__coupone__form button::before {
  border-radius: 6px;
}

.cart-page__coupone__list {
  max-width: 315px;
  margin-left: auto;
  margin-right: 0;
  width: 100%;
}

.cart-page__cart-total__title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 39px;
  border-bottom: 1px solid var(--wallox-border-color, #E4DACC);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.cart-page__cart-total {
  margin-bottom: 10px;
}

.cart-page__cart-total__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-transform: capitalize;
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  color: var(--wallox-text-dark, #4b2958);
}

.cart-page__cart-total__item:first-child {
  margin-bottom: 15px;
}

.cart-page__cart-total__item:last-child {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--wallox-border-color, #E4DACC);
}

.cart-page__cart-total__item:last-child span {
  color: darkslategray;
}

.cart-page__cart-total__item span {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: var(--wallox-text-dark, #4b2958);
}

.cart-page__cart-total__item p {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cart-page__buttons {
  display: flex;
  justify-content: end;
}

.cart-page__buttons a {
  padding: 17px 28px;
  text-transform: uppercase;
  border-radius: 6px;
  color: var(--wallox-white, #fff);
}

.cart-page__buttons a::before {
  border-radius: 6px;
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  padding: 120px 0;
  background-color: transparent;
}

@media (max-width: 767px) {
  .checkout-page {
    padding: 80px 0;
  }
}

.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}

.checkout-page__billing-address {
  position: relative;
}

.checkout-page__billing-address__title {
  text-transform: capitalize;
  margin: 0 0 34px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  color: #2C3E50;
}

@media (max-width: 767px) {
  .checkout-page__billing-address__title {
    font-size: 20px;
  }
}

.checkout-page__shipping-address {
  position: relative;
}

@media (max-width: 991px) {
  .checkout-page__shipping-address {
    margin: 50px 0 0;
  }
}

.checkout-page__shipping-address .checkout-page__form {
  margin-top: 50px;
}

.checkout-page__shipping-address__title {
  text-transform: capitalize;
  margin: 0 0 18px;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
}

@media (max-width: 767px) {
  .checkout-page__shipping-address__title {
    font-size: 20px;
  }
}

.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}

.checkout-page__input-box label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
  color: #333333;
  text-shadow: 0 0 0.2px currentColor;
  margin-bottom: 13px;
}

.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel] {
  border-radius: 6px;
  height: 45px;
  width: 100%;
  border: none;

  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 14px;
  color: #7E7C76;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: block;
  font-weight: 500;
}

.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle::after {
  display: none;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle {
  position: relative;
  height: 45px;
  outline: none !important;
  border-radius: 6px;
  border: 0;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--wallox-text, #7E7C76) !important;
  font-size: 14px;
  line-height: 45px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  text-transform: capitalize;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}

.checkout-page__input-box .bootstrap-select>.dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "icomoon" !important;
  content: "\e90b";
  font-weight: 900;
  font-size: 14px;
  color: var(--wallox-text, #7E7C76);
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid #E4DACC;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: 1px solid grey;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li>a {
  font-size: 14px;
  font-weight: 500;
  padding: 15px 30px;
  color: #2d3945;
  background-color: #ECF0F1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.checkout-page__input-box .bootstrap-select .dropdown-menu>li:hover>a,
.checkout-page__input-box .bootstrap-select .dropdown-menu>li.selected>a {
  background: #5BBD60;
  color: #ECF0F1;
  border-color: #0d93b4;
}

.checkout-page__input-box textarea {
  color: #7E7C76;
  height: 177px;
  width: 100%;
  background-color: #F4EDE4;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 20px 30px 30px;
  border: none;
  border-radius: 6px;
  outline: none;
  margin-bottom: 0px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 162%;
  text-transform: capitalize;
}

.checkout-page__your-order {
  position: relative;
  margin: 32px 0 0;
}

.checkout-page__your-order__title {
  text-transform: capitalize;
  margin-bottom: 27px;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  color: var(--wallox-text-dark, #4b2958);
}

.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}

.checkout-page__order-table thead tr th {
  font-size: 20px;
  color: var(--wallox-text-dark, #4b2958);
  text-transform: capitalize;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  font-family: var(--wallox-heading-font, "Plus Jakarta Sans", serif);
  margin: 0;
  padding: 28px 0;
  text-shadow: 0 0 0.1px currentColor;
  border: none;
  border-top: 1px solid var(--wallox-border-color, #E4DACC);
  border-bottom: 1px solid var(--wallox-border-color, #E4DACC);
}

.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}

.checkout-page__order-table tbody tr td {
  color: var(--wallox-text, #7E7C76);
  margin: 0;
  padding: 0 0 30px;
  border: none;
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  text-transform: capitalize;
}

.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}

.checkout-page__order-table tbody tr:last-child {
  border-top: 1px solid var(--wallox-border-color, #E4DACC);
}

.checkout-page__order-table tbody tr:last-child td {
  padding-top: 20px;
  color: var(--wallox-text-dark, #4b2958);
  text-shadow: 0 0 0.1px currentColor;
}

.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}

.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 26px;
}

.checkout-page__payment {
  background-color: #ECF0F1;
  padding: 30px;
  min-height: 295px;
}

.checkout-page__payment__item {
  position: relative;
}

.checkout-page__payment__title {
  display: flex;
  text-transform: capitalize;
  margin: 0;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
  color: var(--wallox-text-dark, #4b2958);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 21px;
}

.checkout-page__payment__title::before {
  content: "\f111";
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid var(--wallox-text, #7E7C76);
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  display: flex;
  justify-content: center;
  color: var(--wallox-text, #7E7C76);
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: all 500ms ease;
}

.checkout-page__payment__item--active .checkout-page__payment__title::before {
  background-color: transparent;
  border-color: var(--wallox-base, #0d93b4);
  content: "\f111";
  color: var(--wallox-base, #0d93b4);
}

.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 30px;
}

.checkout-page__payment .wallox-btn {
  margin-top: 40px;
  text-transform: uppercase;
  padding: 17px 28px;
  border-radius: 6px;
  color: #fff;
}

.checkout-page__payment .wallox-btn::before {
  border-radius: 6px;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/

.login-page {
  padding: 120px 0px;
  position: relative;
  background-color: #ECF0F1;
}

.login-page__left {
  position: relative;
  z-index: 1;
}

.login-page__thumb {
  position: relative;
  z-index: 1;
  margin-right: 100px;
}

.login-page__thumb img {
  width: 100%;
  object-fit: cover;
  z-index: 1;
  position: relative;
}

.login-page__thumb-two {
  position: absolute;
  right: 0;
  bottom: 70px;
  z-index: 1;
}

.login-page__thumb-two img {
  border: 10px solid #fff;
  border-radius: 20px;
}

.login-page__login-box {
  position: relative;
  background: #F0FAF2;
  padding: 55px 60px;
  border-radius: 30px;
}

.login-page__login-box1 {
  position: relative;
  background: #F0FAF2;
  padding: 55px 60px;
  border-radius: 30px;
  box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.5);
}


.login-page__content {
  max-width: 557px;
  margin-left: auto;
  margin-right: auto;
}

.login-page__logo {
  display: flex;
  width: 100%;
  margin-bottom: 32px;
}

.login-page__title {
  color: #333333 !important;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 10px;
  padding-bottom: 0;
  text-transform: capitalize;
  text-shadow: 0 0 0.1px currentColor;
}

.login-page__input-box {
  position: relative;
}

.login-page__input-box--bottom {
  padding-top: 20px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login-page__input-box__inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.login-page__input-box__inner .remember-policy {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  letter-spacing: 0.3px;
  color: #333333;
}

.remember-policy a {
  color: #2C3E50;
  text-decoration: none;
}

.login-page__input-box__toggle {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 40px;
  height: 20px;
  display: inline-block;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  outline: none;
  border: none;
  cursor: pointer;
  background-color: #E4DACC;
  transition: background-color ease 0.3s;
}

.login-page__input-box__toggle::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  width: 16px;
  height: 16px;
  background: #fff;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
}

.login-page__input-box__toggle:checked {
  background-color: #0d93b4;
}

.login-page__input-box__toggle:checked::before {
  left: 22px;
}

.login-page__input-box label {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 86%;
  letter-spacing: 0.3px;
  color: #333333;
  text-shadow: 0 0 0.1px currentColor;
  text-transform: capitalize;
}

.login-page__input-box input[type=text],
.login-page__input-box input[type=password] {
  margin-top: -3px;
  height: 48px;
  width: 100%;
  background-color: #fff;
  padding-left: 15px;
  padding-right: 30px;
  outline: none;
  font-size: 15px;
  color: #7E7C76;
  font-family: "Plus Jakarta Sans", sans-serif;
  display: block;
  font-weight: 500;
  border-radius: 6px;
  border: none;
}

.login-page__input-box input[type=text]::placeholder,
.login-page__input-box input[type=password]::placeholder {
  color: #7E7C76;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 133%;
  text-transform: none;
}

.login-page__input-box span {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(50%);
  z-index: 1;
  font-size: 16px;
  color: #7E7C76;
  transition: all 400ms ease;
}

.login-page__input-box span:hover {
  color: #0d93b4;
}

.login-page__input-box__btn button {
  width: 100%;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
}

.login-page__input-box__btn .wallox-btn {
  border-radius: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-self: center;
  gap: 10px;
  justify-content: center;
}

.login-page__input-box__btn .wallox-btn::before {
  border-radius: 6px;
}

.login-page__input-box__btn .wallox-btn--base {
  border-radius: 6px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.login-page__input-box__btn .wallox-btn--base::before {
  border-radius: 6px;
}

.login-page__input-box__btn:last-child button {
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 167%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #F5F5F5;
}

.login-page__input-box__btn:last-child button:hover {
  color: #333;
}

.login-page__input-box__btn.login-page__input-box__btn {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--wallox-border-color, #E4DACC);
}

.login-page .login-page__input-box+.login-page__input-box {
  margin-top: 5px;
}

.login-page__form__forgot {
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  text-align: right;
  color: blue;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
}

.login-page__form__forgot:hover {
  color: #2C3E50;
}

.login-page__form__text {
  margin-top: 24px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  letter-spacing: 0.3px;
  color: #1A1A1A;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0;
}

.login-page__form__text a {
  color: var(--wallox-base, #0d93b4);
  margin-left: 5px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.login-page__form__text a:hover {
  background-size: 100% 1px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.gutter-x-60 {
  --bs-gutter-x: 60px;
}

.login-page__type-selector {
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
}

.login-page__type-selector .login-type-btn {
  flex: 1;
  padding: 10px 15px;
  text-align: center;
  border: 1px solid var(--wallox-base);
  background: transparent;
  color: var(--wallox-base);
  cursor: pointer;
}

.login-page__type-selector .login-type-btn.active {
  background-color: var(--wallox-base);
  color: white;
}

.login-form,
.signup-form {
  display: none;
}

.login-form.active,
.signup-form.active {
  display: block;
}

.form-toggle {
  text-align: center;
  margin-top: 20px;
}

.form-toggle a {
  color: #2C3E50;
  font-weight: 600;
  cursor: pointer;
}

.form-toggle a:hover {
  text-decoration: underline;
  color: blue;
}

.signup-form .login-page__input-box {
  margin-bottom: 15px;
}

.login-page2 {
  background: #F0FAF2;
  overflow-y: hidden;

}

.login-page2 {
  margin: 0;
  padding: 0;
}

.login-page2__input-box {
  margin: 0;
  padding: 0;
}

.login-page2::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.login-page2::-webkit-scrollbar {
  display: none;
}

form {
  margin-top: 0;
  padding-top: 0;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
  padding-bottom: 120px;
  text-align: center;
  padding-top: 120px;
}

@media (max-width: 991px) {
  .error-404 {
    padding: 100px 0px;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 80px 0px;
  }
}

.error-404__thumb {
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.error-404__thumb__item {
  margin-bottom: 60px;
}

.error-404__thumb__item img {
  width: 100%;
  height: auto;
}

.error-404__thumb__item__moon {
  position: absolute;
  top: 0%;
  left: 15%;
  animation: scale2 4s ease-in-out infinite;
}

.error-404__thumb__item__moon img {
  width: 100%;
  height: auto;
}

.error-404__thumb__item__earth {
  position: absolute;
  bottom: 5%;
  right: 5%;
  animation: svgRotate 7s ease-in-out infinite;
}

.error-404__thumb__item__earth img {
  width: 100%;
  height: auto;
}

.error-404__thumb__item__roket {
  position: absolute;
  bottom: 4%;
  left: 4%;
  animation: topAniLong 4s ease-in-out infinite;
}

.error-404__thumb__item__roket img {
  width: 100%;
  height: auto;
}

.error-404__sub-title {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  text-transform: capitalize;
  padding-bottom: 0;
  margin-bottom: 13px;
  color: var(--wallox-text-dark, #4b2958);
  text-shadow: 0 0 0.1px currentColor;
}

.error-404__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  text-align: center;
  text-transform: capitalize;
  color: var(--wallox-text, #7E7C76);
  max-width: 470px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 33px;
}

.error-404__btns .wallox-btn {
  border-radius: 10px;
  text-transform: uppercase;
  padding: 13px 25px;
  color: #fff;
}

.error-404__btns .wallox-btn::before {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-page-search {
  padding: 120px 0px;
  background-color: var(--wallox-white, #fff);
  position: relative;
}

@media (max-width: 991px) {
  .faq-page-search {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .faq-page-search {
    padding: 80px 0px;
  }
}

.faq-page-search__inner {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.faq-page-search__top__title {
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--wallox-text-dark, #4b2958);
  font-style: normal;
  font-weight: 700;
  font-size: 45px;
  line-height: 133%;
  text-align: center;
  letter-spacing: -0.03em;
  text-transform: capitalize;
}

.faq-page-search__form {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
  margin-top: 25px;
  border: 1px solid var(--wallox-border-color, #E4DACC);
  border-radius: 10px;
}

.faq-page-search__form input[type=text] {
  border: none;
  outline: none;
  display: block;
  background-color: var(--wallox-white, #fff);
  color: var(--wallox-text, #7E7C76);
  font-size: 16px;
  width: 100%;
  padding-left: 30px;
  height: 55px;
  border-radius: 10px;
}

.faq-page-search__form input[type=text]::placeholder {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--wallox-text, #7E7C76);
}

.faq-page-search__form__btn {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-size: 18px;
  transition: all 0.4s ease-in-out;
  color: var(--wallox-base, #0d93b4);
}

@media (min-width: 768px) {
  .faq-page-search__form__btn {
    font-size: 20px;
  }
}

.faq-page-search__form__btn:hover {
  color: var(--wallox-text-dark, #4b2958);
}

.faq-page {
  padding: 120px 0px;
  background-color: var(--wallox-gray, #F4EDE4);
}

@media (max-width: 991px) {
  .faq-page {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .faq-page {
    padding: 80px 0px;
  }
}

.faq-page__thumb {
  margin-right: 30px;
  margin-bottom: 30px;
}

.faq-page__thumb img {
  border-radius: 100px;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 1199px) {
  .faq-page__thumb {
    margin-right: 0;
  }
}

.faq-page__list {
  display: flex;
  align-items: start;
  gap: 20px;
}

.faq-page__list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 80px;
  width: 100%;
  height: 80px;
  border-radius: 50%;
  background: var(--wallox-white, #fff);
  color: var(--wallox-base, #0d93b4);
  font-size: 35px;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
}

.faq-page__list__icon::after {
  content: "";
  position: absolute;
  top: 0%;
  height: 0;
  width: 0;
  left: 50%;
  background-color: var(--wallox-base, #0d93b4);
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: -1;
}

.faq-page__list__title {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 13px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text-dark, #4b2958);
  text-shadow: 0 0 0.1px currentColor;
}

.faq-page__list__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--wallox-text, #7E7C76);
  max-width: 410px;
  width: 100%;
}

.faq-page__list:hover .faq-page__list__icon {
  color: var(--wallox-white, #fff);
}

.faq-page__list:hover .faq-page__list__icon::after {
  top: 0%;
  height: 100%;
  width: 100%;
  left: 0%;
}

.faq-page__list+.faq-page__list {
  margin-top: 30px;
}

.faq-page__accordion .accrodion {
  background: white;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}

.faq-page__accordion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-page__accordion .accrodion.active {
  border-radius: 20px;
}

.faq-page__accordion .accrodion-title {
  padding: 25px 20px 25px 13px;
  padding-left: 75px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .faq-page__accordion .accrodion-title {
    padding-left: 75px;
  }
}

.faq-page__accordion .accrodion-title .accrodion-title__text {
  text-transform: capitalize;
  color: #333333;
  margin: 0;
  transition: all 500ms ease;
  position: relative;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  position: relative;
}

.faq-page__accordion .accrodion-title__icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  background: #45B34A;
  left: -60px;
  transform: translateY(-50%);
  z-index: 1;
}

.faq-page__accordion .accrodion-title__icon::after,
.faq-page__accordion .accrodion-title__icon::before {
  width: 2px;
  height: 16px;
  position: absolute;
  background-color: white;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.faq-page__accordion .accrodion-title__icon::after {
  width: 16px;
  height: 2px;
}

.faq-page__accordion .active .accrodion-title h4 {
  color: #2C3E50;
}

.faq-page__accordion .active .accrodion-title h4::after {
  width: 109%;
}

.faq-page__accordion .active .accrodion-title__icon {
  background: #2C3E50;
}

.faq-page__accordion .active .accrodion-title__icon::after,
.faq-page__accordion .active .accrodion-title__icon::before {
  background-color: #2C3E50;
  opacity: 0;
}

.faq-page__accordion .active .accrodion-title__icon::after {
  opacity: 1;
}

.faq-page__accordion .accrodion-content .inner {
  padding: 7px 30px 24px 20px;
}

.faq-page__accordion .accrodion-content p {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 188%;
  color: #fff;
  margin-bottom: -3px;
  text-transform: capitalize;
}

.faqs-two {
  padding: 120px 0px;
  position: relative;
  background-color: #fff;
}

@media (max-width: 991px) {
  .faqs-two {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .faqs-two {
    padding: 80px 0px;
  }
}

.faqs-two .faq-page__accordion--faqs-two .accrodion {
  background: #ECF0F1;
}

.faqs-two .faq-page__accordion--faqs-two .active {
  background: #45B34A;
}

.faqs-two .faq-page__accordion--faqs-two .active .accrodion-title__icon {
  background: #ECF0F1;
}

.faqs-two .faq-page__accordion--faqs-two .active .accrodion-title__icon::after,
.faqs-two .faq-page__accordion--faqs-two .active .accrodion-title__icon::before {
  background-color: #B76E79;
  opacity: 0;
}

.faqs-two .faq-page__accordion--faqs-two .active .accrodion-title__icon::after {
  opacity: 1;
}

.faqs-two .faq-page__accordion--faqs-two .active .accrodion-title h4 {
  color: #F5F5F5;
}

.faqs-two .faq-page__accordion--faqs-two .active .accrodion-content p {
  color: #ECF0F1;
}

.faqs-two .faq-page__accordion--faqs-two .active .accrodion-title__icon::after {
  background-color: #2C3E50;
}

.faqs-two .sec-title {
  padding-bottom: 20px;
}

.faqs-two__top__text {
  margin-bottom: 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  text-transform: capitalize;
  color: var(--wallox-text, #7E7C76);
}

.faqs-two__list {
  margin-bottom: 0;
}

.faqs-two__list__item {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: #2C3E50;
  text-shadow: 0 0 0.1px currentColor;
}

.faqs-two__list__item i {
  color: var(--wallox-base, #0d93b4);
  font-size: 14px;
  margin-right: 10px;
}

.faqs-two__list__item+.faqs-two__list__item {
  margin-top: 10px;
}

.faqs-two__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 51px;
}

.faqs-two__element {
  position: absolute;
  top: 45%;
  right: 0;
  animation: topToBottom 3s ease-in-out infinite;
}

@media (max-width: 991px) {
  .faqs-two__element {
    display: none;
  }
}

.faqs-two__element-two {
  position: absolute;
  top: 30%;
  left: 0;
  animation: topToBottom 3s ease-in-out infinite;
  animation-delay: 1s;
}

@media (max-width: 991px) {
  .faqs-two__element-two {
    display: none;
  }
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes rotated {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes textScrolling {
  0% {
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    transform: translate3d(0%, 0, 0);
  }
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes squareMover {

  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes messageMove {

  0%,
  100% {
    transform: translateX(0);
  }

  25%,
  75% {
    transform: translateX(5px);
  }

  50% {
    transform: translateX(10px);
  }
}

@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes topAniLong {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes svgRotate {
  8% {
    -webkit-transform: perspective(500px) rotateX(0deg);
    transform: perspective(500px) rotateX(0deg);
  }

  100% {
    -webkit-transform: perspective(500px) rotateX(360deg);
    transform: perspective(500px) rotateX(360deg);
  }
}

@keyframes scale2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes top-bottom {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes topToBottom {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(16px);
  }

  100% {
    transform: translateY(0px);
  }
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.5);
    transform: translateY(1200px) scale(0.5);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.5);
    transform: translateY(0px) scale(0.5);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.real-image {
  visibility: hidden;
  position: relative;
  width: auto;
  height: 100%;
  overflow: hidden;
}

.real-image img {
  height: auto;
  width: 100%;
  object-fit: cover;
  transform-origin: bottom;
}

.real-image--right {
  visibility: hidden;
  position: relative;
  width: auto;
  height: 100%;
  overflow: hidden;
}

.real-image--right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: right;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--wallox-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--wallox-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #45B34A;
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: #fff;
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: #333333;
  cursor: pointer;
}

.mobile-nav__close:hover {
  color: green;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--wallox-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li>a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--wallox-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li>a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #333333;
  font-size: 15px;
  font-family: var(--wallox-font, "Plus Jakarta Sans", sans-serif);
  text-transform: capitalize;
  font-weight: 600;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--wallox-base, #0d93b4);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: #45B34A;
  border: none;
  outline: none;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: black;
  color: #333333;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: #333333;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 20px;
}

.mobile-nav__social a:hover {
  color: #90EE90;
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--wallox-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
  color: #333333;
}

.mobile-nav__contact li a:hover {
  color: green;
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #45B34A;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--wallox-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}

.search-popup__content {
  position: fixed;
  width: 0;
  border-radius: 10px;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--wallox-white, #fff);
  font-size: 16px;
  font-weight: 600;
  color: var(--wallox-text, #7E7C76);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  border-radius: 10px;
}

.search-popup__form input[type=search]::placeholder,
.search-popup__form input[type=text]::placeholder {
  font-size: 16px;
  color: var(--wallox-text, #7E7C76);
  font-weight: 600;
  text-transform: capitalize;
}

.search-popup__form .wallox-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 18px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  transform: scale(1);
}

.search-popup__form .wallox-btn i {
  margin: 0;
}

.search-popup__form .wallox-btn::before {
  background-color: var(--wallox-text-dark, #4b2958);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-radius: 0;
}

.search-popup__form .wallox-btn:hover {
  transform: scale(1);
}

.search-popup.active {
  z-index: 9999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}

.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}

.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 570px;
  width: 100%;
  mix-blend-mode: luminosity;
}

.google-map__contact {
  overflow: hidden;
  background-color: var(--wallox-gray, #F4EDE4);
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel__inner {
  padding: 20px 30px;
  border-radius: 20px;
  border: 1px solid var(--wallox-border-color, #E4DACC);
}

@media (max-width: 991px) {
  .client-carousel__inner {
    padding: 20px;
  }
}

.client-carousel__inner--two {
  background: var(--wallox-white, #fff);
}

.client-carousel__left {
  flex: 35%;
}

.client-carousel__right {
  flex: 65%;
}

.client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  position: relative;
  background-color: transparent;
  border-radius: 50px;
  max-width: 90px;
  width: auto;
  height: 80px;
}

.client-carousel__one__item img {
  transition: all 500ms ease;
  width: auto !important;
  cursor: pointer;
}

.client-carousel__one__item:hover .client-carousel__one__hover-image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  visibility: visible;
  opacity: 1;
}

.client-carousel__one__item:hover .client-carousel__one__image {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
}

.client-carousel__one__hover-image {
  transition: all 500ms ease;
  display: block;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
  visibility: hidden;
  opacity: 0;
  max-width: 90px;
}

.client-carousel__one__image {
  transition: 500ms;
  max-width: 122px;
  width: auto;
  transition: all 500ms ease;
}

.client-carousel__left {
  border-right: 1px solid var(--wallox-border-color, #E4DACC);
}

@media (max-width: 767px) {
  .client-carousel__left {
    border-right: 1px solid transparent;
    margin-bottom: 30px;
  }
}

.client-carousel__text {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 991px) {
  .client-carousel__text {
    font-size: 18px;
  }
}

.client-carousel__text a i {
  color: var(--wallox-base, #0d93b4);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  overflow: hidden;
}

.main-slider-one__carousel {
  position: relative;
  width: 100%;
  counter-reset: my-sec-counter;
}

.main-slider-one__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  position: absolute;
  margin: auto;
  left: 33px;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  z-index: 2;
}

@media (max-width: 767px) {
  .main-slider-one__carousel .owl-dots {
    width: 100%;
    justify-content: center;
    flex-direction: row;
    top: auto;
    gap: 10px;
    transform: translateY(0%);
    bottom: 30px;
  }
}

@keyframes bottomTop {
  0% {
    transform: translateY(0%) translateX(20%);
    opacity: 1;
  }

  100% {
    transform: translateY(50px) translateX(20%);
    opacity: 0;
  }
}

@keyframes topBottom {
  0% {
    transform: translateY(0%) translateX(20%);
    opacity: 1;
  }

  100% {
    transform: translateY(-50px) translateX(20%);
    opacity: 0;
  }
}

.main-slider-one__carousel .owl-dots::before {
  content: "";
  width: 16px;
  height: 60px;
  background-image: url(../images/shapes/long-arrow-bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  position: absolute;
  bottom: -60px;
  transform: translateX(20%);
  left: 0;
  animation: bottomTop 3s ease-in-out infinite;
}

@media (max-width: 767px) {
  .main-slider-one__carousel .owl-dots::before {
    display: none;
  }
}

.main-slider-one__carousel .owl-dots::after {
  content: "";
  width: 16px;
  height: 60px;
  background-image: url(../images/shapes/long-arrow-top.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  position: absolute;
  top: -60px;
  transform: translateX(20%);
  left: 0;
  animation: topBottom 3s ease-in-out infinite;
}

@media (max-width: 767px) {
  .main-slider-one__carousel .owl-dots::after {
    display: none;
  }
}

.main-slider-one__carousel .owl-dots .owl-dot {
  display: inline-flex;
  margin: 0 3px;
}

.main-slider-one__carousel .owl-dots .owl-dot span {
  background-color: transparent;
  margin: 0;
  transition: all 300ms ease;
  counter-increment: my-sec-counter;
  position: relative;
  width: auto 0;
}

.main-slider-one__carousel .owl-dots .owl-dot span::before {
  content: counters(my-sec-counter, ".", decimal-leading-zero);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--wallox-text, #7E7C76);
}

.main-slider-one__carousel .owl-dots .owl-dot:hover span::before,
.main-slider-one__carousel .owl-dots .owl-dot.active span::before {
  color: var(--wallox-base, #0d93b4);
}

.main-slider-one__item {
  position: relative;
  padding-top: 115px;
  padding-bottom: 158px;
  height: 803px;
  background-color: var(--wallox-gray, #F4EDE4);
}

@media (max-width: 1350px) {
  .main-slider-one__item {
    height: auto;
  }
}

@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 180px;
    padding-bottom: 200px;
  }
}

.main-slider-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
}

.main-slider-one__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(99.87deg, #F4EDE4 0%, rgba(244, 237, 228, 0.84) 28.96%, rgba(244, 237, 228, 0) 100.49%);
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 1550px) {
  .main-slider-one .container {
    max-width: 1550px;
    margin-left: auto;
    margin-right: auto;
  }
}

.main-slider-one__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.main-slider-one__sub-title {
  color: var(--wallox-text, #7E7C76);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 15px;
  padding: 5px 20px;
  border-radius: 100px;
  background-color: var(--wallox-white, #fff);
  display: inline-block;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
  letter-spacing: 0.15em;
}

.main-slider-one__sub-title span {
  color: var(--wallox-base, #0d93b4);
}

@media (max-width: 575px) {
  .main-slider-one__sub-title {
    font-size: 14px;
    letter-spacing: 0.01em;
  }
}

.main-slider-one__title {
  margin: 0 0 38px;
}

.main-slider-one__title__box {
  overflow: hidden;
}

.main-slider-one__title__box .main-slider-one__title__text {
  display: block;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
  color: var(--wallox-text-dark, #4b2958);
  text-transform: uppercase;
  font-style: normal;
  font-weight: 800;
  font-size: 80px;
  line-height: 112%;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: capitalize;
}

@media (max-width: 1350px) {
  .main-slider-one__title__box .main-slider-one__title__text {
    font-size: 60px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .main-slider-one__title__box .main-slider-one__title__text {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .main-slider-one__title__box .main-slider-one__title__text {
    font-size: 50px;
  }
}

.main-slider-one__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 4px;
}

.main-slider-one__btn a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 15px 25px;
  border: 2px solid transparent;
}

.main-slider-one__btn a:last-child {
  border-color: var(--wallox-base, #0d93b4);
  color: var(--wallox-base, #0d93b4);
}

.main-slider-one__btn a:last-child:hover {
  border-color: transparent;
  color: var(--wallox-white, #fff);
}

.main-slider-one__btn a:last-child:hover::before {
  background-color: var(--wallox-base, #0d93b4);
}

.main-slider-one__btn a:hover {
  border-color: var(--wallox-base, #0d93b4);
  color: var(--wallox-base, #0d93b4);
}

.main-slider-one__btn a:hover::before {
  background-color: transparent;
}

.main-slider-one__thumb {
  position: relative;
  z-index: 1;
}

.main-slider-one__thumb__item {
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
}

.main-slider-one__thumb__box__bg {
  max-width: 508px;
  height: 508px;
  width: 100%;
  border-radius: 50%;
  background-color: var(--wallox-base, #0d93b4);
  position: absolute;
  bottom: 40%;
  transform: translateY(50%) scale(0.3);
  right: 0px;
  z-index: -1;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
}

@media (max-width: 1466px) {
  .main-slider-one__thumb__box__bg {
    right: -80px;
  }
}

@media (max-width: 1199px) {
  .main-slider-one__thumb__box__bg {
    max-width: 380px;
    height: 380px;
    right: -60px;
  }
}

@media (max-width: 450px) {
  .main-slider-one__thumb__box__bg {
    display: none;
  }
}

.main-slider-one__thumb__box__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  mix-blend-mode: multiply;
  background-image: url(../images/shapes/hero-1-4.png);
}

.main-slider-one__thumb__box__bg::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  top: -22px;
  left: -22px;
  bottom: -22px;
  right: -22px;
  border-width: 2px;
  border-style: solid;
  border-color: var(--wallox-base, #0d93b4);
}

.main-slider-one__element-one {
  position: absolute;
  top: 10%;
  left: 2%;
  z-index: 1;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(700px);
  opacity: 0;
}

.main-slider-one__element-one .main-slider-one__element__item {
  animation: topToBottom 3.5s ease-in-out infinite;
}

.main-slider-one__element-two {
  position: absolute;
  bottom: 10%;
  right: 45%;
  z-index: 1;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-700px);
  opacity: 0;
}

.main-slider-one__element-two .main-slider-one__element__item {
  animation: topToBottom 3s ease-in-out infinite;
}

.main-slider-one__element-three {
  position: absolute;
  top: 10%;
  left: 50%;
  z-index: 1;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-800px);
  opacity: 0;
}

.main-slider-one__element-three .main-slider-one__element__item {
  animation: scale2 3s ease-in-out infinite;
}

.main-slider-one .active .main-slider-one__bg {
  opacity: 1;
  transform: translateX(0) scaleX(1);
  filter: blur(0);
  transition-delay: 1000ms;
}

.main-slider-one .active .main-slider-one__sub-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.main-slider-one .active .main-slider-one__title__box h2 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}

.main-slider-one .active .main-slider-one__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}

.main-slider-one .active .main-slider-one__element-one {
  transform: translateX(0px);
  opacity: 1;
  transition-delay: 1500ms;
}

.main-slider-one .active .main-slider-one__element-two {
  transform: translateX(0px);
  opacity: 1;
  transition-delay: 1500ms;
}

.main-slider-one .active .main-slider-one__element-three {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 1500ms;
}

.main-slider-one .active .main-slider-one__thumb__box__bg {
  transform: translateY(50%) scale(1);
  opacity: 1;
  transition-delay: 1100ms;
}

.main-slider-one .active .main-slider-one__thumb__item {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1200ms;
}

.hero-slider-two {
  position: relative;
}

.hero-slider-two__carousel {
  position: relative;
  width: 100%;
}

.hero-slider-two__carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .hero-slider-two__carousel .owl-nav {
    top: auto;
    bottom: 60px;
    left: 50%;
    flex-direction: row;
    transform: translateY(0) translateX(-50%);
  }
}

.hero-slider-two__carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
}

.hero-slider-two__carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 54px;
  height: 54px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--wallox-text, #7E7C76);
  border-radius: 50%;
  font-size: 16px;
  transition: all 500ms ease;
}

.hero-slider-two__carousel .owl-nav button span:hover {
  background-color: green;
  color: #fff;
}

@media (max-width: 991px) {
  .hero-slider-two__carousel .owl-nav .owl-prev span {
    transform: rotate(265deg);
  }
}

@media (max-width: 991px) {
  .hero-slider-two__carousel .owl-nav .owl-next span {
    transform: rotate(265deg);
  }
}

.hero-slider-two__social {
  background-color: #5BBD60;
  padding: 15px;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  z-index: 3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 55px;
}

@media (max-width: 1200px) {
  .hero-slider-two__social {
    display: none;
  }
}

.hero-slider-two__social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  border: 1px solid #ECF0F1;
  color: #ECF0F1;
  position: relative;
  z-index: 1;
}

.hero-slider-two__social a:hover {
  color: #333333;
  border-color: #333333;
  background-color: #90EE90;
}

.hero-slider-two__item {
  position: relative;
  z-index: 1;
  padding-top: 83px;
  padding-bottom: 83px;
  height: 885px;
}

@media (max-width: 1600px) {
  .hero-slider-two__item {
    height: auto;
  }
}

@media (max-width: 991px) {
  .hero-slider-two__item {
    padding-bottom: 200px;
  }
}

@media (max-width: 676px) {
  .hero-slider-two__item {
    padding-bottom: 100px;
  }
}

.hero-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
}

.hero-slider-two__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(244, 237, 228, 0.9) 0%, rgba(244, 237, 228, 0.8) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.hero-slider-two__content {
  position: relative;
  z-index: 3;
}

.hero-slider-two__content__border {
  position: absolute;
  top: 15px;
  left: -32px;
  opacity: 0;
  transition: opacity 1000ms ease;
}

@media (max-width: 991px) {
  .hero-slider-two__content__border {
    display: none;
  }
}

@media (min-width: 1600px) {
  .hero-slider-two .container {
    max-width: 1630px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-slider-two__sub-title {
  margin: 0 0 16px 55px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
  opacity: 0;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  color: #2E8B57;
  padding: 5px 20px;
  display: inline-block;
  border-radius: 100px;
  border: 1px solid #0d93b4;
}

@media (max-width: 991px) {
  .hero-slider-two__sub-title {
    margin: 0 0 16px 0px;
  }
}

.hero-slider-two__title {
  margin: 0 0 60px;
}

@media (max-width: 991px) {
  .hero-slider-two__title {
    margin: 0 0 40px;
  }
}

.hero-slider-two__title__box {
  position: relative;
}

.hero-slider-two__title__box:nth-child(1) .hero-slider-two__title__text,
.hero-slider-two__title__box:nth-child(4) .hero-slider-two__title__text {
  overflow: hidden;
  display: block;
  font-style: normal;
  font-weight: 800;
}

.hero-slider-two__title__box:nth-child(2) .hero-slider-two__title__text {
  overflow: hidden;
  display: block;
  font-style: normal;
  font-weight: 500;
}

.hero-slider-two__title__box:nth-child(3) .hero-slider-two__title__text {
  color: transparent;
  -webkit-text-stroke: 1.5px #333333;
  position: relative;
}

.hero-slider-two__title__box .hero-slider-two__title__text {
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
  display: block;
  display: inline-block;
  font-style: normal;
  font-weight: 800;
  font-size: 80px;
  line-height: 106%;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  position: relative;
  margin: 0;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 1600px) {
  .hero-slider-two__title__box .hero-slider-two__title__text {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .hero-slider-two__title__box .hero-slider-two__title__text {
    font-size: 50px;
  }
}

@keyframes opesityIn {
  0% {
    opacity: 0;
    width: 20px;
  }

  80% {
    opacity: 1;
    width: 100%;
  }

  100% {
    opacity: 0;
    width: 20px;
  }
}

.hero-slider-two__title__element {
  position: absolute;
  right: 10%;
  z-index: 2;
  bottom: -50%;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}

.hero-slider-two__title__element img {
  animation: opesityIn 4s ease-in-out infinite;
}

@media (max-width: 991px) {
  .hero-slider-two__title__element {
    right: 0%;
  }
}

@media (max-width: 575px) {
  .hero-slider-two__title__element {
    display: none;
  }
}

.hero-slider-two__btn {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
  z-index: 5;
  overflow: hidden;
  padding: 4px;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}

.hero-slider-two__btn .wallox-btn:last-child {
  border-color: #B76E79;
  color: #2d3945;
}

.hero-slider-two__btn .wallox-btn:last-child:hover {
  color: #D9D9D9;
  border-color: transparent;
}

.hero-slider-two__thumb {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  margin-left: -40px;
  z-index: 1;
}

.hero-slider-two__thumb__item {
  border-radius: 235px;
  background: linear-gradient(99.87deg, #F4EDE4 0%, rgba(244, 237, 228, 0.84) 28.96%, rgba(244, 237, 228, 0) 100.49%);
  padding: 10px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
}

@media (max-width: 575px) {
  .hero-slider-two__thumb__item {
    display: none;
  }
}

.hero-slider-two__thumb__item img {
  border-radius: 235px;
  object-fit: contain;
  width: 100%;
}

.hero-slider-two__thumb__item--two {
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(-200px);
}

.hero-slider-two__thumb__element {
  position: absolute;
  width: 989px;
  height: 302px;
  border-radius: 100%;
  background: linear-gradient(to right, #45B34A, #CCCCCC);
  z-index: -1;
  left: 0;
  transform: scale(0.3) rotate(-31.71deg);
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
}

@media (max-width: 1600px) {
  .hero-slider-two__thumb__element {
    width: 689px;
  }
}

@media (max-width: 1199px) {
  .hero-slider-two__thumb__element {
    width: 600px;
  }
}

@media (max-width: 676px) {
  .hero-slider-two__thumb__element {
    display: none;
  }
}

.hero-slider-two__thumb__element::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  background-image: url(../images/shapes/hero-2-1.png);
  opacity: 0.15;
  transform: rotate(0deg);
  border-radius: 100%;
}

.hero-slider-two__thumb__element::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: -30px;
  left: 0;
  transform: rotate(0deg);
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #2d3945;
}

.hero-slider-two .active .hero-slider-two__bg {
  opacity: 1;
  transform: translateX(0) scaleX(1);
  filter: blur(0);
  transition-delay: 1000ms;
}

.hero-slider-two .active .hero-slider-two__sub-title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.hero-slider-two .active .hero-slider-two__title__box .hero-slider-two__title__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1500ms;
}

.hero-slider-two .active .hero-slider-two__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}

.hero-slider-two .active .hero-slider-two__thumb__item {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1500ms;
}

.hero-slider-two .active .hero-slider-two__thumb__item--two {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1700ms;
}

.hero-slider-two .active .hero-slider-two__thumb__element {
  transform: scale(1) rotate(-31.71deg);
  opacity: 1;
  transition-delay: 1500ms;
}

.hero-slider-two .active .hero-slider-two__title__element {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 1500ms;
}

.hero-slider-two .active .hero-slider-two__content__border {
  opacity: 1;
  transition-delay: 1500ms;
}

.hero-three {
  position: relative;
}

.hero-three__carousel {
  position: relative;
  width: 100%;
}

.hero-three__carousel .slick-dots {
  margin: auto 0;
  position: absolute;
  right: 33px;
  text-align: left;
  top: 50%;
  transform: translateY(-10%);
  width: auto;
}

@media (max-width: 1400px) {
  .hero-three__carousel .slick-dots {
    width: auto;
    right: 20px;
  }
}

@media (max-width: 1199px) {
  .hero-three__carousel .slick-dots {
    width: 40px;
  }
}

@media (max-width: 767px) {
  .hero-three__carousel .slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin-top: -100px;
    left: 0;
    top: auto;
    bottom: 40px;
  }
}

.hero-three__carousel .slick-dots li {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: relative;
}

.hero-three__carousel .slick-dots li::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--wallox-white, #fff);
  transition: all 0.4s ease-in-out;
}

.hero-three__carousel .slick-dots button {
  display: none;
  margin: 2px 0;
}

@media (max-width: 767px) {
  .hero-three__carousel .slick-dots button {
    margin: 0 2px;
  }
}

.hero-three__carousel .slick-dots li:hover,
.hero-three__carousel .slick-dots li.slick-active {
  background-color: transparent;
  border: 2px solid var(--wallox-white, #fff);
}

.hero-three__carousel .slick-dots li:hover::after,
.hero-three__carousel .slick-dots li.slick-active::after {
  background-color: var(--wallox-base, #0d93b4);
}

.hero-three__carousel .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.hero-three__item {
  background-color: var(--wallox-text-dark, #4b2958);
  position: relative;
  z-index: 3;
  padding-top: 245px;
  padding-bottom: 245px;
  height: 800px;
}

@media (max-width: 991px) {
  .hero-three__item {
    padding-top: 120px;
    padding-bottom: 120px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .hero-three__item {
    padding-top: 100px;
    padding-bottom: 120px;
  }
}

.hero-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(50%) scaleX(2);
  opacity: 0;
  z-index: -1;
}

.hero-three__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(var(--wallox-text-dark-rgb, 46, 42, 32), 0.8);
  width: 100%;
  height: 100%;
  content: "";
}

.hero-three__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
}

.hero-three__sub-title {
  display: inline-block;
  color: var(--wallox-base, #0d93b4);
  text-transform: uppercase;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--wallox-base, #0d93b4);
}

.hero-three__title {
  color: var(--wallox-white, #fff);
  overflow: hidden;
  margin: 10px 0 38px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
  font-style: normal;
  font-weight: 800;
  font-size: 80px;
  line-height: 112%;
  text-transform: capitalize;
}

@media (max-width: 1199px) {
  .hero-three__title {
    font-size: 70px;
  }
}

@media (max-width: 991px) {
  .hero-three__title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .hero-three__title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .hero-three__title {
    font-size: 40px;
  }
}

.hero-three__title::after {
  content: "";
  width: 101%;
  height: 101%;
  position: absolute;
  top: 0px;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}

.hero-three__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  z-index: 5;
  padding-top: 4px;
  padding-bottom: 4px;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
  z-index: 1;
}

@media (max-width: 400px) {
  .hero-three__btn {
    flex-direction: column;
  }
}

.hero-three__btn a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  padding: 15px 25px;
  border: 1px solid transparent;
}

.hero-three__btn a:last-child {
  border-color: var(--wallox-white, #fff);
}

.hero-three__btn a:last-child:hover {
  border-color: transparent;
}

.hero-three__btn a:last-child:hover::before {
  background-color: var(--wallox-base, #0d93b4);
}

.hero-three__btn a:hover {
  border-color: var(--wallox-white, #fff);
}

.hero-three__btn a:hover::before {
  background-color: transparent;
}

.hero-three .slick-active .hero-three__bg {
  opacity: 1;
  transform: translateX(0) scaleX(1);
  filter: blur(0);
  transition-delay: 1000ms;
}

.hero-three .slick-active .hero-three__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}

.hero-three .slick-active .hero-three__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}

.hero-three .slick-active .hero-three__title::after {
  transform: translateX(1%);
  transition-delay: 1500ms;
}

.hero-three .slick-active .hero-three__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}

.hero-three__counter__carousel {
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: rotate(90deg) translate(-50%, 40%);
}

@media (max-width: 767px) {
  .hero-three__counter__carousel {
    display: none;
  }
}

.hero-three__counter__carousel .slick-current.slick-active+.slick-active span {
  color: var(--wallox-base, #0d93b4);
  text-shadow: 0 0 0.3px currentColor;
}

.hero-three__counter__item span {
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: var(--wallox-text, #7E7C76);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 991px) {
  .about-one {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .about-one {
    padding: 80px 0px;
  }
}

.about-one__thumb {
  position: relative;
  z-index: 1;
  margin-right: 30px;
}

@media (max-width: 991px) {
  .about-one__thumb {
    margin-right: 0;
  }
}

.about-one__thumb img {
  position: relative;
  object-fit: cover;
  width: 100%;
  border-radius: 100px 20px;
}

.about-one .sec-title {
  padding-bottom: 20px;
}

.about-one__top__text {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 24px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text, #7E7C76);
}

.about-one__list {
  margin-bottom: 0;
}

.about-one__list__item {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: #2C3E50;
  text-shadow: 0 0 0.1px currentColor;
}

.about-one__list__item i {
  color: var(--wallox-base, #0d93b4);
  font-size: 14px;
  margin-right: 10px;
}

.about-one__list__item+.about-one__list__item {
  margin-top: 10px;
}

.about-one__video {
  position: relative;
}

.about-one__video img {
  position: relative;
  object-fit: cover;
  width: 100%;
  border-radius: 30px;
}

.about-one__video-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-one__video-popup a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--wallox-base, #0d93b4);
  background-color: var(--wallox-white, #fff);
  transition: all 0.4s ease-in-out;
}

.about-one__video-popup a:hover {
  background: #10b981;
  color: var(--wallox-white, #fff);
}

.about-one__funfact {
  border-radius: 100px;
  background-color: #45B34A;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 270px;
  bottom: 40px;
  left: 40px;
  transform: rotate(-180deg);
  position: absolute;
  writing-mode: vertical-rl;
}

.about-one__count {
  margin-bottom: 0;
  padding-bottom: 0;
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 38px;
  text-transform: capitalize;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 91px;
  height: 113px;
  background: #FFFFFF;
  border-radius: 100px;
  margin: 0;
  text-shadow: 0 0 0.1px currentColor;
}

.about-one__funfact__text {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 23px;
  text-transform: capitalize;
  color: #F5F5F5;
  margin-bottom: 0;
  padding-bottom: 0;
  margin: 0;
}

.about-one__client {
  border-top: 1px solid var(--wallox-border-color, #E4DACC);
  margin-top: 30px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) and (min-width: 991px) {
  .about-one__client {
    flex-direction: column;
    gap: 20px;
    justify-content: start;
    align-items: start;
  }
}

@media (max-width: 575px) {
  .about-one__client {
    flex-direction: column;
    gap: 20px;
    justify-content: start;
    align-items: start;
  }
}

.about-one__client__item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-one__client__thumb img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid var(--wallox-white, #fff);
  margin-left: -20px;
}

.about-one__client__thumb img:first-child {
  margin-left: 0;
}

.about-one__client__star {
  font-size: 16px;
  color: goldenrod;
  letter-spacing: 0.1px;
  margin-bottom: 0;
}

.about-one__client__text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 114%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text, #7E7C76);
}

.about-one__shape {
  position: absolute;
  left: 0;
  bottom: 35%;
  animation: topToBottom 3s ease-in-out infinite;
  z-index: -1;
}

.about-one__shape-two {
  position: absolute;
  right: 0;
  bottom: 20%;
  animation: rotated 10s infinite linear;
  z-index: -1;
}

/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/
/** project-page**/
.project-page {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 991px) {
  .project-page {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .project-page {
    padding: 80px 0px;
  }
}

.project-page--home {
  background-color: var(--wallox-gray, #F4EDE4);
}

.project-page__carousel {
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .project-page__carousel {
    padding-bottom: 100px;
  }
}

@media (max-width: 767px) {
  .project-page__carousel {
    padding-bottom: 80px;
  }
}

.project-page .project-carousel .owl-nav {
  display: none;
}

.project-page__item {
  position: relative;
  overflow: hidden;
}

.project-page__item__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.project-page__item__image img {
  object-fit: cover;
  width: 100%;
}

.project-page__item__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--wallox-white, #fff);
  border-radius: 20px;
  display: flex;
  gap: 100px;
  align-items: start;
  transform: translateY(200%);
  transition: all 0.6s ease-in-out;
}

.project-page__item__content__inner {
  padding: 25px 0px 25px 30px;
}

.project-page__item__content__subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: var(--wallox-base, #0d93b4);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.project-page__item__content__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  text-transform: capitalize;
  color: var(--wallox-text-dark, #4b2958);
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-page__item__content__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.project-page__item__content__title a:hover {
  background-size: 100% 1px;
}

.project-page__item__content__link {
  padding: 35px 30px;
  background: var(--wallox-text-dark, #4b2958);
  border-radius: 20px 20px 20px 80px;
  line-height: 0;
  font-size: 20px;
  color: var(--wallox-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-page__item__content__link i {
  line-height: 0;
  font-size: 600;
  transform: rotate(0);
  transition: all 0.4s ease-in-out;
}

.project-page__item__content__link:hover {
  background: var(--wallox-base, #0d93b4);
}

.project-page__item__content__link:hover i {
  transform: rotate(45deg);
}

.project-page__item:hover .project-page__item__content {
  transform: translateY(0%);
}

.project-page__top {
  padding-bottom: 55px;
}

.project-page__top .sec-title {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .project-page__top {
    padding-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .project-page__top {
    padding-bottom: 30px;
  }
}

.project-page__top .project-page__top__nav {
  text-align: end;
  display: flex;
  justify-content: end;
  gap: 10px;
}

@media (max-width: 991px) {
  .project-page__top .project-page__top__nav {
    display: none;
  }
}

.project-page__top .project-page__top__nav .project-page__top__nav--left,
.project-page__top .project-page__top__nav .project-page__top__nav--right {
  border: none;
  outline: none;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  background-color: transparent;
}

.project-page__top .project-page__top__nav .project-page__top__nav--left span,
.project-page__top .project-page__top__nav .project-page__top__nav--right span {
  outline: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 16px;
  transition: all 500ms ease;
  background-color: transparent;
  color: var(--wallox-base, #0d93b4);
  border: 1px solid var(--wallox-border-color, #E4DACC);
  font-weight: 900;
}

.project-page__top .project-page__top__nav .project-page__top__nav--left span:hover,
.project-page__top .project-page__top__nav .project-page__top__nav--right span:hover {
  background-color: var(--wallox-base, #0d93b4);
  color: var(--wallox-white, #fff);
  border-color: transparent;
}

/** project-card**/
.project-card {
  position: relative;
  overflow: hidden;
}

.project-card__thumb {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  border: 5px solid transparent;
}

.project-card__thumb img {
  object-fit: cover;
  width: 100%;
  min-height: 470px;
  height: 100%;
}

@media (max-width: 1199px) {
  .project-card__thumb img {
    min-height: auto;
    height: auto;
  }
}

.project-card__content {
  position: absolute;
  bottom: 30px;
  right: 30px;
  left: 30px;
  background: var(--wallox-white, #fff);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  transform: translateY(200%);
  transition: all 0.6s ease-in-out;
}

.project-card__content__inner {
  padding: 25px 0px 25px 30px;
}

.project-card__content__subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #B76E79;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.project-card__content__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  text-transform: capitalize;
  color: #2d3945;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-card__content__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.project-card__content__title a:hover {
  background-size: 100% 1px;
}

.project-card__content__link {
  padding: 35px 30px;
  background: #2d3945;
  border-radius: 20px 20px 20px 80px;
  line-height: 0;
  font-size: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-card__content__link i {
  line-height: 0;
  font-size: 600;
  transform: rotate(0);
  transition: all 0.4s ease-in-out;
}

.project-card__content__link:hover {
  background: var(--wallox-text-dark, #4b2958);
}

.project-card__content__link:hover i {
  transform: rotate(45deg);
}

.project-card:hover .project-card__content {
  transform: translateY(0%);
}

.project-card:hover .project-card__thumb {
  border: 5px solid #D9D9D9;
}

.gutter-x-20 {
  --bs-gutter-x: 20px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

/** project-details**/
.project-details {
  padding: 120px 0px;
  position: relative;
}

@media (max-width: 991px) {
  .project-details {
    padding: 100px 0px;
  }
}

@media (max-width: 767px) {
  .project-details {
    padding: 80px 0px;
  }
}

.project-details__top__thumb {
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  max-height: 472px;
}

.project-details__top__thumb img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

.project-details__category {
  margin-bottom: 60px;
  padding: 40px;
  background: var(--wallox-gray, #F4EDE4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .project-details__category {
    gap: 70px;
  }
}

@media (max-width: 991px) {
  .project-details__category {
    flex-wrap: wrap;
    gap: 30px 0;
  }
}

.project-details__category__item {
  position: relative;
}

.project-details__category__item:not(:first-of-type)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--wallox-border-color, #E4DACC);
  position: absolute;
  top: 0;
  left: -60px;
}

@media (max-width: 1199px) {
  .project-details__category__item:not(:first-of-type)::before {
    left: -30px;
  }
}

@media (max-width: 991px) {
  .project-details__category__item:not(:first-of-type)::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .project-details__category__item {
    flex: 48%;
    width: 48%;
  }
}

@media (max-width: 575px) {
  .project-details__category__item {
    flex: 100%;
    width: 100%;
  }
}

.project-details__category__subtitle {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 16px;
  padding-bottom: 0;
  color: var(--wallox-base, #0d93b4);
  text-transform: capitalize;
  display: block;
}

.project-details__category__title {
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 89%;
  text-transform: capitalize;
  color: var(--wallox-text-dark, #4b2958);
  margin-bottom: -2px;
  padding-bottom: 0;
}

.project-details__title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  margin-bottom: 15px;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text-dark, #4b2958);
}

.project-details__text {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 188%;
  text-transform: capitalize;
  color: var(--wallox-text, #7E7C76);
  margin-bottom: -3px;
  padding-bottom: 0;
}

.project-details__text+.project-details__text {
  margin-top: 15px;
}

.project-details__info+.project-details__quality {
  margin-top: 50px;
}

.project-details__quality__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
  height: auto;
}

.project-details__quality__list {
  margin-top: 28px;
}

.project-details__quality__item {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 175%;
  margin-bottom: -2px;
  padding-bottom: 0;
  color: var(--wallox-text-dark, #4b2958);
  text-transform: capitalize;
  text-shadow: 0 0 0.1px currentColor;
}

.project-details__quality__item i {
  color: var(--wallox-base, #0d93b4);
  margin-right: 12px;
}

.project-details__quality__item+.project-details__quality__item {
  margin-top: 10px;
}

.project-details__quality+.project-details__management {
  margin-top: 50px;
}

.project-details__management__inner__box {
  margin-top: 20px;
  margin-bottom: 20px;
}

.project-details__management__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}

.project-details__management__funfact {
  border-radius: 20px;
  background: var(--wallox-gray, #F4EDE4);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .project-details__management__funfact {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
  }
}

.project-details__management__funfact__item {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 0;
  padding-bottom: 0;
  text-transform: capitalize;
  color: var(--wallox-text-dark, #4b2958);
}

.project-details__management__funfact__item__inner {
  margin-bottom: 30px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid var(--wallox-base, #0d93b4);
}

@media (max-width: 1199px) {
  .project-details__management__funfact__item__inner {
    width: 150px;
    height: 150px;
  }
}

.project-details__management__funfact__item__inner .project-details__funfact-item {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: var(--wallox-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  color: var(--wallox-text-dark, #4b2958);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .project-details__management__funfact__item__inner .project-details__funfact-item {
    width: 120px;
    height: 120px;
  }
}

.project-details__management__funfact__item__inner:hover .project-details__funfact-item {
  background: var(--wallox-base, #0d93b4);
  color: var(--wallox-white, #fff);
}

.project-details__management__funfact__text {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  text-transform: capitalize;
  margin-bottom: 0;
  padding-bottom: 0;
  text-align: center;
}

.instagram-page {
  padding: 120px 0;
}

@media (max-width: 991px) {
  .instagram-page {
    padding: 100px 0;
  }
}

@media (max-width: 767px) {
  .instagram-page {
    padding: 80px 0;
  }
}


/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}

body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--wallox-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--wallox-text-dark-rgb, 46, 42, 32), 0.08);
}

/* Filter Section Styles */
.gallery-filter-section {
  padding: 20px 0;
  position: relative;
  font-family: 'Segoe UI', sans-serif;
}

.filter-container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.fa-filter {
  font-size: 20px;
  color: #2d3945;
}

.filter-toggle-btn {
  background: #ECF0F1;
  color: #2d3945;
  border: 2px solid #2d3945;
  padding: 5px 20px;
  border-radius: 30px;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-toggle-btn:hover {
  background: #90EE90;
  transition: all 0.3s ease;
  transform: scale(1.05);
  color: #333333;
}

/* Filter Panel */
.filter-panel {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  max-width: 900px;
  background: #F5F5F5;
  padding: 25px;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 100;
  animation: fadeIn 0.3s ease;
}

.filter-panel.active {
  display: block;
}

/* Horizontal Groups Container */
.filter-groups-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* Individual Filter Groups */
.filter-group {
  flex: 1;
  min-width: 180px;
}

/* Group Headers */
.filter-group h4 {
  color: #333333;
  font-size: 16px;
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

/* Vertical Options List */
.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.filter-option-item {
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.filter-option-item label {
  display: flex;
  align-items: center;
  color: grey;
  font-size: 14px;
  cursor: pointer;
  margin-left: 10px;
  transition: color 0.2s;
}

.filter-option-item:hover label {
  color: #2E8B57;
}

.filter-option-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #3498db;
  cursor: pointer;
}

/* Filter Actions */
.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  clear: both;
}

.wallox-btn {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
}

.wallox-btn--base {
  background-color: #45B34A;
  color: #F5F5F5;
}

.wallox-btn--base:hover {
  background-color: #90EE90;
  color: #333333;
}

.wallox-btn--secondary {
  background-color: transparent;
  color: #D9D9D9;
}

.wallox-btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .filter-groups-container {
    flex-direction: column;
    gap: 20px;
  }

  .filter-actions {
    flex-direction: column;
  }

  .filter-actions .wallox-btn {
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.wallox-btn {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wallox-btn--base {
  background: #45B34A;
  color: #F5F5F5;
}

.wallox-btn--base:hover {
  background: #90EE90;
  color: #333333;
}

.wallox-btn--secondary {
  background: #45B34A;
  color: white;
}

.wallox-btn--secondary:hover {
  background: #90EE90;
  color: #333333;
}

@media (max-width: 768px) {
  .filter-panel {
    width: 280px;
    right: -10px;
  }
}


.hero-section {
  background: #F5F5F5;
  color: #333333;
  padding: 4rem 0;
  margin-bottom: 3rem;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-title {
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 auto;
}

.hero-content a {
  color: #45B34A;
  text-decoration: none;
  font-weight: 800;
}

.hero-content a:hover {
  text-decoration: underline;
  color: #90EE90;
}

.section-title {
  color: #333;
  font-weight: 600;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 10px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.search-tag {
  display: inline-block;
  background-color: white;
  color: var(--primary-color);
  padding: 10px 20px;
  margin: 8px;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.search-tag:hover {
  color: #333;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 3rem 0;
    border-radius: 0 0 15px 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-content {
    font-size: 1rem;
  }
}

/* pricing section */
.subscription-container {
  max-width: 700vw;
  margin: 30px auto;
  background: #ECF0F1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.header {
  text-align: center;
  margin-bottom: 50px;
}

.header h1 {
  color: #333333;
  font-weight: bold;
  margin-bottom: 5px;
}

.header p {
  color: #7f8c8d;
  font-size: 14px;
}

.pricing-table {
  width: 90%;
  border: 1px solid #333333;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}

.pricing-table th {
  background-color: #5BBD60;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  color: #ECF0F1;
}

.pricing-table td {
  padding: 12px;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
}

.btn-subscribe {
  background-color: #ECF0F1;
  color: #333333;
  border: 1px solid #333333;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  width: 50%;
  transition: all 0.3s;
}

.btn-subscribe:hover {
  background-color: #5BBD60;
  color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

.disclaimer {
  font-size: 12px;
  color: #7f8c8d;
  margin-top: 20px;
}

.price-highlight {
  font-weight: bold;
  color: #2c3e50;
}

.discount-badge {
  background-color: #e74c3c;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

/* Responsive additions */
@media (max-width: 1200px) {
  .subscription-container {
    padding: 25px;
  }

  .btn-subscribe {
    width: 60%;
  }
}

@media (max-width: 992px) {
  .pricing-table {
    width: 95%;
  }

  .btn-subscribe {
    width: 70%;
    padding: 10px 25px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .subscription-container {
    padding: 20px;
    margin: 20px auto;
  }

  .header {
    margin-bottom: 30px;
  }

  .pricing-table {
    width: 100%;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 10px;
  }

  .btn-subscribe {
    width: 80%;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .subscription-container {
    padding: 15px;
  }

  .header h1 {
    font-size: 24px;
  }

  .pricing-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .btn-subscribe {
    width: 100%;
    padding: 8px 20px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .header h1 {
    font-size: 20px;
  }

  .header p {
    font-size: 12px;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 8px;
    font-size: 14px;
  }

  .discount-badge {
    font-size: 10px;
  }
}

/*----canvas print pricing styles----*/
.canvas-print-pricing {
  max-width: 700vw;
  margin: 0 auto;
  background: #ECF0F1;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.canvas-print-title {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
}

.canvas-print-table {
  width: 80%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.canvas-print-th,
.canvas-print-td {
  padding: 12px;
  text-align: center;
  border: 1px solid #ddd;
}

.canvas-print-th {
  background-color: #5BBD60;
  color: white;
}

.canvas-print-tr:nth-child(even) {
  background-color: #f2f2f2;
}

.canvas-print-tr:hover {
  background-color: #e6f7ff;
}

.canvas-print-notes,
.canvas-print-extras {
  margin-top: 30px;
  background-color: transparent;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.canvas-print-subtitle {
  color: #2c3e50;
  margin-top: 0;
}

.canvas-print-list {
  padding-left: 20px;
}

.canvas-print-list li {
  margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .canvas-print-table {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .canvas-print-table {
    width: 100%;
  }

  .canvas-print-th,
  .canvas-print-td {
    padding: 8px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .canvas-print-pricing {
    padding: 15px;
  }

  .canvas-print-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .canvas-print-title {
    font-size: 20px;
  }

  .canvas-print-subtitle {
    font-size: 18px;
  }

  .canvas-print-list {
    padding-left: 15px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {

  .canvas-print-th,
  .canvas-print-td {
    padding: 6px;
    font-size: 12px;
  }

  .canvas-print-title {
    font-size: 18px;
  }

  .canvas-print-subtitle {
    font-size: 16px;
  }

  .canvas-print-list {
    font-size: 12px;
  }
}

.canvas_cart {
  padding: 4px 6px;      
  width: auto;            
  min-width: 60px;        
  border-radius: 6px;      
  background-color: #4CAF50; 
  color: white;             
  font-weight: bold;        
  text-align: center;     
  cursor: pointer;      
  transition: all 0.3s ease; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: inline-block;  
  margin-left: 10px;       
  font-size: 12px;        
}

.canvas_cart:hover {
  background-color: #45a049; 
  transform: translateY(-1px); 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); 
}

.canvas_cart:active {
  transform: translateY(0); 
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); 
}

.quantity-selector-box {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
}

.quantity-input {
  width: 120px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-btn {
  width: 60px;
  height: 30px;
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background: #e0e0e0;
}

.quantity-btn:active {
  background: #d0d0d0;
}



/* Size Selector Styles */
.size-selector-box {
  width: 100%;
}

.size-dropdown {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  background-color: white;
  cursor: pointer;
  appearance: none;
}

.size-dropdown:focus {
  outline: 1px solid;
  border-color: #999;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quantity-input {
    width: 50px;
    height: 36px;
  }

  .quantity-btn {
    width: 36px;
    height: 36px;
  }

  .size-dropdown {
    height: 36px;
  }
}

/* canvas gallery */
.canvas-gallery-row {
  margin: 0 -15px;
}

.canvas-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  padding: 50px 15px;
}


.canvas-card {
  background: #F0FAF2;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  margin-bottom: 15px;
}

.canvas-card:hover {
  transform: translateY(-1px);
}

.canvas-card-image {
  height: 300px;
  overflow: hidden;
}

.canvas-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.canvas-card:hover .canvas-img {
  transform: scale(1.05);
}

.canvas-card-footer {
  padding: 15px;
}

.canvas-image-name {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333333;
}

.canvas-image-location {
  font-size: 0.9rem;
  color: #666;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.canvas-image-price {
  font-weight: bold;
  color: red;
}

.canvas-image-price del {
  color: gray;
  margin-right: 8px;
}

.canvas-image-price .new-price {
  color: red;
  font-size: 14px;
  font-weight: 700;
}

.canvas-img-hover {
  transition: transform 0.4s ease-in-out, filter 0.4s ease;
}

.canvas-card:hover .canvas-img-hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.canvas-card {
  transition: box-shadow 0.3s ease;
}

.canvas-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}





.more-info-section {
  background-color: #F5F5F5;
}

.section-title {
  font-weight: 700;
  color: #333333;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #333333;
}

.info-card {
  background: #D3EFD9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.info-icon {
  color: #3498db;
}

.info-title {
  color: #2c3e50;
  font-weight: 600;
}

.info-text {
  color: grey;
}

.btn-outline-primary {
  border-color: #3498db;
  color: #3498db;
}

.btn-outline-primary:hover {
  background-color: #3498db;
  color: white;
}

/* breadcrumb */
.breadcrumb {
  font-family: 'Segoe UI', system-ui, sans-serif;
  padding: 1.5rem;
  background-color: #F0FAF2;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #333333;
}

.breadcrumb__item[aria-current="page"] {
  color: #495057;
}

.breadcrumb__link {
  display: flex;
  align-items: center;
  color: #45B34A;
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.breadcrumb__link:hover {
  color: #2E8B57;
  text-decoration: underline;
}

.breadcrumb__current {
  padding: 0.25rem 0.5rem;
  font-weight: 500;
}

.breadcrumb__separator {
  margin: 0 0.5rem;
  color: #333333;
}

.breadcrumb__icon {
  width: 1em;
  height: 1em;
  margin-right: 0.5rem;
  fill: currentColor;
}


/* Star rating styles for vendor section*/

.team-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 5px;
  margin: 15px 0;
  align-items: center;
  padding-bottom: 15px;
  position: relative;
}

.team-stats::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.total-stars,
.total-photos,
.stat-item {
  display: flex;
  align-items: center;
  padding: 5px 12px;
  background-color: #F0FAF2;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.total-stars:hover,
.total-photos:hover,
.stat-item:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.team-details__content__star {
  margin-right: 8px;
  color: goldenrod;
  display: inline-flex;
  gap: 2px;
}

.team-details__content__star i {
  font-size: 16px;
}

.total-stars span,
.total-photos span,
.stat-item span {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

.total-photos i,
.stat-item i {
  margin-right: 8px;
  color: #555;
  font-size: 16px;
}

.stat-item .fa-shopping-cart {
  color: #4CAF50;
}

.stat-item .fa-bolt {
  color: #FF9800;
}

@media (max-width: 768px) {
  .team-stats {
    gap: 10px;
    justify-content: center;
  }

  .total-stars,
  .total-photos,
  .stat-item {
    padding: 6px 10px;
    font-size: 13px;
  }

  .team-details__content__star i,
  .total-photos i,
  .stat-item i {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .team-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .total-stats::after {
    width: 100%;
  }
}

.icon-star:before,
.icon-camera:before {
  font-family: 'wallox-icons', 'Font Awesome', sans-serif !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Verification Badge Styles */
.verification-badge {
  display: inline-flex;
  align-items: center;
  background-color: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 20px;
  padding: 10px 12px;
  margin: 15px 0;
  color: #0369a1;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.verification-badge i {
  margin-right: 8px;
  color: #10b981;
  font-size: 16px;
}

.verification-badge:hover {
  background-color: #e0f2fe;
  cursor: pointer;
}

.verification-badge:hover .badge-tooltip {
  visibility: visible;
  opacity: 1;
}

.badge-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px;
  width: 215px;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  z-index: 10;
}

.badge-tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.license-header {
  color: #333333;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.license-card {
  border-left: 4px solid #5BBD60;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.license-card h4 {
  color: #333333;
  font-weight: 800;
}

.prohibited-list {
  list-style-type: none;
  padding-left: 0;
}

.prohibited-list li:before {
  content: "❌";
  margin-right: 8px;
}

.terms-container {
  background-color: transparent;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.section-title {
  border-bottom: 1px solid grey;
  padding-bottom: 10px;
  margin-bottom: 20px;
}



/* faq */
.faq-header {
  text-align: center;
  padding: 40px 20px;
  background: #F0FAF2;
  color: #333;
}

.faq-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.faq-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Category Filter */
.category-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.category-btn {
  padding: 8px 20px;
  border: 1px solid #333;
  border-radius: 25px;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.category-btn:hover {
  background: #90EE90;
}

.category-btn.active {
  background: #90EE90;
  color: #333;
}

/* FAQ Content */
.faq-content {
  padding: 40px;
}

.faq-category {
  margin-bottom: 40px;
}

.faq-category h2 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(74, 144, 226, 0.05);
}

.faq-question h3 {
  font-size: 1.1rem;
  color: #333;
  margin: 0;
}

.faq-icon {
  color: #333;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

.faq-answer p {
  color: grey;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-content {
    padding: 20px;
  }

  .category-filter {
    gap: 5px;
  }

  .category-btn {
    padding: 6px 15px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .faq-header {
    padding: 30px 15px;
  }

  .faq-header h1 {
    font-size: 1.8rem;
  }

  .search-box {
    padding: 8px 15px;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}




:root {
  scrollbar-color: rgb(210, 210, 210) rgb(46, 54, 69) !important;
  scrollbar-width: thin !important;
  --white: #fff;
  --black: #000;
  --dark: #2a2a2e;
  --yellow: #f7b500;
  --darkyellow: #f79300;
  --red: #fe3e30;
  --darkred: #f72729;
  --blue: #2588cf;
  --darkblue: #026dbe;
  --defaultfont: 'Poppins', sans-serif;
  --titlefont: 'Roboto', sans-serif;
}

/********************************
          DEFAULT
*********************************/
img {
  max-width: 100%;
}

figure {
  margin: 0;
  padding: 0;
  display: block;
}

fieldset {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
}

.title {
  font-family: 'Roboto', sans-serif;
}

.btn2 {
  padding: 1rem 1rem;
  border-radius: 10px;
  text-align: center;
  border: 0;
  background-color: green;
  color: var(--white);
}

.btn2:hover {
  background-color: lightgreen;
  color: black;
}

/********************************
        BLOG CONTAINER
*********************************/
.blog_container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  background-color: transparent;
}

.blog_content {
  padding: 2rem;
  width: 100%;
}

.blog_content .load-btn {
  display: block;
  width: 150px;
  margin: 5vh auto;
}

.left_content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
  flex: 0 0 70%;
}

.right_content {
  flex: 0 0 30%;
}

.blog_card {
  width: 100%;
  flex: 0 0 48.5%;
  overflow: hidden;
  background-color: #D3EFD9;
}

.blog_card:nth-child(1) {
  flex: 0 0 100%;
}

.blog_card .figure {
  display: block;
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.blog_card:nth-child(1) .figure {
  height: 350px;
}


.blog_card .figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
}

.blog_card .tag {
  padding: 5px 10px;
  background-color: var(--yellow);
  color: var(--white);
  position: absolute;
  right: 1%;
  top: 3%;
  font-size: 12px;
}

.blog_card section {
  padding: 1rem;
  position: relative;
  background-color: #D3EFD9;
}

.blog_card section .title {
  font-weight: 600;
  font-size: 18px;
  color: #333;
  width: auto;
}

.blog_card section a:hover {
  color: green;
}

.blog_card:hover>.figure img {
  transform: scale(1.1);
}

.blog_card section img {
  width: 30%;
  margin-right: 20px;
  object-fit: cover;
  border: 5px solid rgba(1, 1, 1, 0.1);
}

.blog_card section img:nth-child(even) {
  float: left;
}

.blog_card section img:nth-child(odd) {
  float: right;
}

/*BLOG RIGHT CONTENT*/
.columns {
  display: block;
  margin-bottom: 4vh;
  background-color: white;
}

.columns section {
  padding: 1rem;
}

.columns .title {
  background-color: #D3EFD9;
  color: #333;
  padding: 1rem;
  text-align: left;
  width: 100%;
  display: block;
  transition: 0.2s;
  border-left: 0px solid green;
}

.columns:hover>.title {
  border-left: 5px solid green;
}

.columns .title a {
  float: right;
}

.columns .title a:hover {
  color: green;
}

.search form {
  width: 100%;
  display: flex;
  align-items: center;
}

.search fieldset:nth-child(2) {
  width: 10%;
}

.search form input {
  border: 1px solid rgba(1, 1, 1, 0.1);
  padding: 1rem;
  width: 100%;
  font-weight: 600;
  color: rgba(1, 1, 1, 0.5);
}

/*BOOKS*/
.books .cards {
  position: relative;
  width: 100%;
  height: 46vh;
  overflow: hidden;
  border-radius: 5px;
  background-color: #f1f1f1;
}

.books .cards::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 900;
  display: block;
  width: 100%;
  height: 100%;
}

.books .card_part {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 7;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center;
  transform: translateX(700px);
  background-repeat: no-repeat;
  animation: opaqTransition 28s cubic-bezier(0, 0, 0, 0.97) infinite;
  background-color: #f1f1f1;
}

.books .card_part.card_part-two {
  z-index: 6;
  animation-delay: 7s;
  background-repeat: no-repeat;
}

.books .card_part.card_part-three {
  z-index: 5;
  animation-delay: 14s;
  background-repeat: no-repeat;
}

.books .card_part.card_part-four {
  z-index: 4;
  animation-delay: 21s;
  background-repeat: no-repeat;
}

@keyframes opaqTransition {
  3% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(0);
  }

  28% {
    transform: translateX(-700px);
  }

  100% {
    transform: translateX(-700px);
  }
}

/*CATEGORIES*/
.categories a {
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 40px;
  background-color: lightgreen;
  margin: 5px 3px;
  font-size: 12px;
  white-space: nowrap;
  color: #333;
}

.categories a:hover {
  background-color: #333;
  color: #fff;
}


/*POSTS*/
.posts a {
  display: flex;
  align-items: center;
  margin: 0.4rem 0;
  color: #333;
}

.posts a img {
  width: 100px;
  margin-right: 10px;
}

.posts a:hover>p {
  color: green;
}



/*COMMENTS*/
.comments {
  position: relative;
  overflow: hidden;
  max-height: 60vh;
}

.comment {
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.starss {
  color: goldenrod;
}

.comment-text {
  margin-bottom: 5px;
  font-style: italic;
}

.comment-meta {
  font-size: 0.9em;
  color: #666;
  text-align: right;
}

.marquee2 {
  position: relative;
  overflow: hidden;
  line-height: 1.6em;
}

.marquee2 p {
  border-bottom: 1px solid rgba(1, 1, 1, 0.1);
  position: relative;

}

.marquee2 p:before {
  font-family: "FontAwesome";
  margin-right: 5px;
  position: relative;
  top: -5px;
}

@keyframes marquee1 {
  0% {
    top: 10%;
  }

  100% {
    top: -100%;
  }
}


@media (max-width:1000px) {
  .blog_container {
    flex-wrap: wrap;
  }

  .blog_content {
    padding: 0;
    order: 2;
  }

  .left_content {
    flex: 0 0 100%;
    order: 2;
    padding: 1rem;
  }

  .right_content {
    flex: 0 0 100%;
    order: 1;
    padding: 1rem;
  }

  .books,
  .posts,
  .comments,
  .categories {
    display: inline-block;
    width: 47%;
    margin: 1.3%;
    margin-bottom: 0;
    vertical-align: top;
    height: 63vh;
  }

  .posts {
    overflow-y: auto;
  }

  .right_content {
    flex: 0 0 100%;
  }
}

@media (max-width:740px) {
  .blog_card {
    flex: 0 0 100%;
  }

  .posts,
  .comments,
  .books,
  .categories {
    width: 100%;
    margin: 0;
    height: auto;
    margin-bottom: 4vh;
  }
}


.contact-box {

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  border-radius: 30px;
}

.contactttt {
  pointer-events: auto;
  padding: 20px;

}

.contact-item {
  margin-bottom: 15px;
}

.contact-title {
  font-weight: bold;
  margin-bottom: -5px;
}

.contact-email1 {
  color: #0066cc;
  text-decoration: none;
}

.contact-email1:hover {
  text-decoration: underline;
}



.vendor-card {
  transition: transform 0.3s;
  height: 70%;
  background-color: #D3EFD9;
}

.vendor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vendor-img {
  width: 100%;
  height: 60%;
}

.rating {
  color: goldenrod;
}

.team-header {
  margin: 50px 0;
}

.team-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

.title-content {
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.title-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 15px;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gradient-line {
  height: 3px;
  flex-grow: 1;
  max-width: 300px;
}

.left-line {
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 0, 0, 0.3) 20%,
      #000 50%);
  margin-right: 20px;
}

.right-line {
  background: linear-gradient(270deg,
      transparent,
      rgba(0, 0, 0, 0.3) 20%,
      #000 50%);
  margin-left: 20px;
}

.star-decoration {
  color: grey;
  font-size: 1.5rem;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .title-content h1 {
    font-size: 2rem;
  }

  .gradient-line {
    max-width: 150px;
  }

  .star-decoration {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .title-content h1 {
    font-size: 1.5rem;
  }

  .gradient-line {
    max-width: 100px;
  }
}