@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Medium.woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Regular.woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik/Rubik-Bold.woff2");
  font-weight: 900;
}
* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  scroll-behavior: smooth;
}
*::selection {
  background-color: var(--primary-color);
  color: #fff;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background-color: #ccc;
}
*::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

button {
  outline: none !important;
  border: 0px !important;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 33px;
  height: 3px;
  background-color: rgba(226, 214, 193, 0.5);
  border-radius: 2px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1 !important;
  background-color: var(--primary-color);
}

.swiper-button-next, .swiper-button-prev {
  top: unset;
  transform: translateY(0px);
  width: 50px;
  height: 50px;
  border: 0px;
  border: 1px solid rgba(46, 131, 121, 0.2);
  background-color: rgba(46, 131, 121, 0.1);
  bottom: 0;
  border-radius: 50%;
  overflow: hidden;
}
.swiper-button-next::before, .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: all 0.3s linear;
}
.swiper-button-next::after, .swiper-button-prev::after {
  position: absolute;
  width: 15px;
  height: 15px;
  top: calc(50% - 7.5px);
  left: calc(50% - 7.5px);
  z-index: 9;
  background: url("../images/icons/arrow.svg") center/contain no-repeat;
  color: transparent;
  filter: var(--primary-filter);
}
.swiper-button-next:hover::before, .swiper-button-prev:hover::before {
  height: 100%;
}
.swiper-button-next:hover::after, .swiper-button-prev:hover::after {
  filter: var(--light-filter);
}

.swiper-button-prev {
  left: calc(50% - 55px) !important;
  right: unset !important;
}

.swiper-button-next {
  left: unset !important;
  right: calc(50% - 55px) !important;
}
.swiper-button-next::after {
  transform: scaleX(-1);
}

@keyframes bounce-in-fwd {
  0% {
    transform: scale(0);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: scale(1);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: scale(0.7);
    animation-timing-function: ease-in;
  }
  72% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  81% {
    transform: scale(0.84);
    animation-timing-function: ease-in;
  }
  89% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
  95% {
    transform: scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-top {
  0% {
    transform: translateY(-50px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateY(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateY(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateY(-15px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateY(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-left {
  0% {
    transform: translateX(-30px);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    transform: translateX(0);
    animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    transform: translateX(-20px);
    animation-timing-function: ease-in;
  }
  72% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  81% {
    transform: translateX(-10px);
    animation-timing-function: ease-in;
  }
  90% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
  95% {
    transform: translateX(-4px);
    animation-timing-function: ease-in;
  }
  100% {
    transform: translateX(0);
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2), 0 0 0 20px rgba(255, 255, 255, 0.1);
  }
}
@keyframes spinner {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.4);
  }
}
@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1);
    opacity: 0;
  }
  50% {
    transform: scale3d(0.8, 0.8, 0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*dropdown animation*/
@keyframes dropdown-animate {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0%, 100% {
    clip-path: polygon(0% 45%, 15% 44%, 32% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }
  50% {
    clip-path: polygon(0% 60%, 16% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@keyframes niceAnimate {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes translation {
  0% {
    transform: translateZ(0%);
  }
  100% {
    transform: translateZ(10%);
  }
}
@keyframes rotate-scale-up {
  0% {
    -webkit-transform: scale(1) rotateZ(0);
    transform: scale(1) rotateZ(0);
  }
  50% {
    -webkit-transform: scale(2) rotateZ(180deg);
    transform: scale(2) rotateZ(180deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(360deg);
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-10px, 10px);
  }
  40% {
    transform: translate(-10px, -10px);
  }
  60% {
    transform: translate(10px, 10px);
  }
  80% {
    transform: translate(10px, -10px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes translateX {
  0%, 100% {
    transform: translateX(2px);
  }
  50% {
    transform: translateX(-2px);
  }
}
@keyframes translateY {
  0%, 100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-2px);
  }
}
@keyframes flip-in-hor-bottom {
  0% {
    transform: rotateX(80deg) translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotateX(0) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px #00a4e6;
    opacity: 0 !important;
  }
  100% {
    box-shadow: 0px 0px 35px -4px rgba(0, 164, 230, 0);
  }
}
@keyframes rotate {
  0% {
    border-radius: 50% 60% 55% 40%;
  }
  25% {
    border-radius: 30% 10% 70% 20%;
  }
  50% {
    border-radius: 20% 40% 30% 60%;
  }
  75% {
    border-radius: 70% 20% 50% 30%;
  }
  100% {
    border-radius: 50% 60% 55% 40%;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateX(30px);
  }
  67% {
    opacity: 1;
    transform: translateX(40px);
  }
  100% {
    opacity: 0;
    transform: translateX(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes clip {
  0% {
    clip-path: polygon(57% 41%, 100% 0, 52% 46%, 0 100%);
  }
  50% {
    clip-path: polygon(57% 41%, 100% 0, 0 0, 0 100%);
  }
  100% {
    clip-path: polygon(100% 100%, 100% 0, 0 0, 0 100%);
  }
}
@keyframes sideClip {
  0% {
    clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
  }
  50% {
    clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes sideClip_2 {
  0% {
    clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 70% 53%, 60% 26%);
  }
  50% {
    clip-path: polygon(50% 0%, 100% 0, 100% 60%, 100% 100%, 55% 100%, 31% 100%, 46% 68%, 26% 33%, 11% 10%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 60%, 100% 100%, 55% 100%, 0 100%, 0 59%, 0 31%, 0 14%);
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes storm {
  0% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
  25% {
    transform: translate3d(4px, 0, 0) translateZ(0);
  }
  50% {
    transform: translate3d(-3px, 0, 0) translateZ(0);
  }
  75% {
    transform: translate3d(2px, 0, 0) translateZ(0);
  }
  100% {
    transform: translate3d(0, 0, 0) translateZ(0);
  }
}
@keyframes moving {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -10000px;
  }
}
:root {
  --primary-color: #2E8379;
  --secondary-color: #8F3F56;
  --dark-color: #000;
  --light-color: #fff;
  --gray-color: #808080;
  --semi-dark: #333333;
  --semi-green: #F0F5F5;
  --heading-dark: #303030;
  --dark-green: #203030;
  --danger-color: #e92e2e;
  --primary-filter: invert(42%) sepia(57%) saturate(430%) hue-rotate(124deg) brightness(91%) contrast(89%);
  --secondary-filter: invert(30%) sepia(33%) saturate(948%) hue-rotate(292deg) brightness(94%) contrast(90%);
  --light-filter: invert(92%) sepia(100%) saturate(23%) hue-rotate(251deg) brightness(108%) contrast(100%);
  --gray-filter: invert(58%) sepia(0%) saturate(3400%) hue-rotate(13deg) brightness(87%) contrast(97%);
}

html[dir=rtl] .about .container::after, html[dir=rtl] .about .container::before {
  left: 0px;
  right: unset;
}
html[dir=rtl] .blog-box .contain .read-more img {
  transform: scaleX(1);
}
html[dir=rtl] .blog-box .contain .read-more:hover img {
  transform: rotate(45deg) scaleX(1);
}
html[dir=rtl] .navbar .contain .nav-contain {
  left: unset;
  right: -100%;
}
html[dir=rtl] .navbar .contain .nav-contain.active-nav {
  right: 0px;
  left: unset;
}

.custom-btn {
  width: 224px;
  height: 64px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
.custom-btn::after, .custom-btn::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 100%;
  top: 0;
  transition: all 0.3s linear;
  z-index: -1;
}
.custom-btn::after {
  left: 0;
}
.custom-btn::before {
  right: 0;
}
.custom-btn span {
  font-size: 18px;
  font-weight: 900;
  text-transform: capitalize;
}
.custom-btn.primary-btn {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.custom-btn.primary-btn::after, .custom-btn.primary-btn::before {
  background-color: var(--light-color);
}
.custom-btn.primary-btn span {
  color: var(--light-color);
}
.custom-btn.primary-btn:hover span {
  color: var(--primary-color);
}
.custom-btn.light-btn {
  border: 1px solid var(--light-color);
  background-color: var(--light-color);
}
.custom-btn.light-btn::after, .custom-btn.light-btn::before {
  background-color: var(--primary-color);
}
.custom-btn.light-btn span {
  color: var(--primary-color);
}
.custom-btn.light-btn:hover span {
  color: var(--light-color);
}
.custom-btn:hover::after, .custom-btn:hover::before {
  width: 50%;
}
.custom-btn:hover span {
  animation: storm 0.3s linear both;
}

.general-section {
  width: 100%;
  padding: 80px 0px;
  position: relative;
  z-index: 9;
}
@media (max-width: 960px) {
  .general-section {
    padding: 40px 0px;
  }
}

.heading {
  width: 100%;
  margin-bottom: 35px;
  position: relative;
  z-index: 9;
  text-align: center;
}
.heading h1 {
  font-size: 32px;
  font-weight: 900;
  color: #303030;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  .heading h1 {
    font-size: 24px;
    margin-bottom: 14px;
  }
}
.heading p {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.product-box {
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 9;
  background-color: var(--light-color);
  transition: all 0.3s linear;
  box-shadow: 0px 0px 20px rgba(32, 48, 48, 0.09);
}
@media (max-width: 960px) {
  .product-box {
    border-radius: 40px;
  }
  .product-box .image-contain {
    height: 157px !important;
  }
}
.product-box .image-contain {
  width: 100%;
  height: 220px;
  overflow: hidden;
  transition: all 0.3s linear;
  position: relative;
  z-index: 9;
}
.product-box .image-contain::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/icons/pattern_data.svg") bottom center/contain no-repeat;
  bottom: -5px;
  left: 0;
  z-index: 9;
  pointer-events: none;
}
@media (max-width: 960px) {
  .product-box .image-contain::after {
    height: 100%;
  }
}
.product-box .image-contain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s linear;
}
.product-box .contain {
  width: 100%;
  padding: 0px 20px 20px;
  position: relative;
  z-index: 9;
}
@media (max-width: 960px) {
  .product-box .contain {
    padding: 0px 10px 15px;
  }
}
.product-box .contain .project-title {
  color: var(--dark-green);
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0px;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 960px) {
  .product-box .contain .project-title {
    font-size: 14px;
  }
}
.product-box .contain .rate {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 5px;
  margin: 10px 0px 20px;
}
@media (max-width: 960px) {
  .product-box .contain .rate {
    margin: 5px 0px 10px;
  }
}
.product-box .contain .rate img {
  width: 92px;
  height: 18px;
  object-fit: contain;
}
.product-box .contain .rate span {
  color: var(--gray-color);
  font-size: 14px;
  font-weight: 500;
}
.product-box .contain .price {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  align-items: center;
  align-content: center;
}
@media (max-width: 960px) {
  .product-box .contain .price p {
    font-size: 10px !important;
  }
}
.product-box .contain .price img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
@media (max-width: 960px) {
  .product-box .contain .price img {
    height: 17px;
    height: 17px;
  }
}
.product-box .contain .price p {
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px !important;
}
.product-box .contain .custom-btn {
  width: 100%;
  margin: 0px auto;
}
@media (max-width: 960px) {
  .product-box .contain .custom-btn {
    height: 50px;
  }
}
@media (max-width: 960px) {
  .product-box .contain .custom-btn span {
    font-size: 15px;
  }
}
.product-box:hover {
  transform: translateY(-10px);
}
.product-box:hover .project-title {
  color: var(--primary-color);
}

.blog-box {
  width: 100%;
  position: relative;
  z-index: 9;
  transition: all 0.3s linear;
}
.blog-box .image-contain {
  width: 100%;
  height: 230px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .blog-box .image-contain {
    height: 100px;
  }
}
.blog-box .image-contain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s linear;
}
.blog-box .contain {
  width: 100%;
  padding: 20px 0px 0px;
}
.blog-box .contain .date {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.blog-box .contain .date img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--gray-filter);
}
.blog-box .contain .date span {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
}
.blog-box .contain h2 {
  color: var(--dark-green);
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0px;
  text-transform: capitalize;
}
@media (max-width: 960px) {
  .blog-box .contain h2 {
    font-size: 13px;
    margin: 10px 0px;
  }
}
.blog-box .contain .read-more {
  display: flex;
  align-content: center;
  align-items: center;
  width: fit-content;
  gap: 10px;
}
.blog-box .contain .read-more span {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
}
.blog-box .contain .read-more img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: all 0.3s linear;
  filter: var(--primary-filter);
  transform: scaleX(-1);
}
.blog-box .contain .read-more:hover span {
  color: var(--secondary-color);
  animation: storm 0.3s linear;
}
.blog-box .contain .read-more:hover img {
  transform: rotate(-45deg) scaleX(-1);
  filter: var(--secondary-filter);
}
.blog-box:hover {
  transform: translateY(-10px);
}
.blog-box:hover .image-contain img {
  transform: scale(1.2);
}
.blog-box:hover h2 {
  color: var(--primary-color);
}

.navbar {
  width: 100%;
  padding: 13px 0px;
  background-color: var(--light-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.navbar.scrolled {
  padding: 10px 0px;
  box-shadow: 0px 0px 10px rgba(143, 63, 86, 0.1);
}
.navbar.scrolled .brand-name img {
  height: 50px !important;
}
@media (max-width: 960px) {
  .navbar.scrolled .nav-contain {
    top: 70px !important;
  }
}
.navbar .contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.navbar .contain .hamburger {
  display: none;
}
@media (max-width: 960px) {
  .navbar .contain .hamburger {
    display: block;
  }
}
.navbar .contain .hamburger .line {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}
.navbar .contain .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}
.navbar .contain .hamburger.active .line:nth-child(2) {
  width: 0px;
}
.navbar .contain .hamburger.active .line:nth-child(1), .navbar .contain .hamburger.active .line:nth-child(3) {
  transition-delay: 0.3s;
}
.navbar .contain .hamburger.active .line:nth-child(1) {
  transform: translateY(6.5px);
}
.navbar .contain .hamburger.active .line:nth-child(3) {
  transform: translateY(-15px) rotate(90deg);
}
.navbar .contain .brand-name img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: all 0.3s linear;
}
.navbar .contain .nav-contain {
  width: calc(100% - 140px);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .navbar .contain .nav-contain {
    width: calc(100% - 90px);
  }
}
@media (max-width: 960px) {
  .navbar .contain .nav-contain {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 100px;
    left: -100%;
    transition: all 0.3s linear;
    z-index: 999;
    background-color: var(--light-color);
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 15px;
  }
  .navbar .contain .nav-contain.active-nav {
    left: 0px;
  }
  .navbar .contain .nav-contain .navbar-nav {
    flex-direction: column !important;
    width: 100%;
    justify-content: flex-start !important;
    gap: 0px !important;
  }
  .navbar .contain .nav-contain .navbar-nav li {
    border-bottom: 1px solid rgba(46, 131, 121, 0.06);
  }
  .navbar .contain .nav-contain .navbar-nav li:last-child {
    border-bottom: 0px;
    margin-bottom: 20px;
  }
  .navbar .contain .nav-contain .navbar-nav li a {
    padding: 20px 0px !important;
    font-size: 18px;
  }
  .navbar .contain .nav-contain .navbar-nav li a::after {
    display: none;
  }
  .navbar .contain .nav-contain .socail-media {
    flex-wrap: wrap;
    width: 100%;
  }
}
.navbar .contain .nav-contain .navbar-nav {
  flex-direction: row;
  padding: 0px;
  margin: 0px;
  gap: 14px;
}
.navbar .contain .nav-contain .navbar-nav .nav-item {
  padding: 0px;
  margin: 0px;
}
.navbar .contain .nav-contain .navbar-nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 700;
  color: var(--semi-dark);
  position: relative;
  z-index: 9;
  padding: 10px;
  text-transform: capitalize;
}
@media (max-width: 1400px) {
  .navbar .contain .nav-contain .navbar-nav .nav-item .nav-link {
    padding: 10px 0px;
  }
}
@media (max-width: 1200px) {
  .navbar .contain .nav-contain .navbar-nav .nav-item .nav-link {
    font-size: 13px;
  }
}
.navbar .contain .nav-contain .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
  z-index: -1;
  transform: scaleX(0);
  transition: all 0.3s linear;
}
.navbar .contain .nav-contain .navbar-nav .nav-item .nav-link:hover, .navbar .contain .nav-contain .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color);
}
.navbar .contain .nav-contain .navbar-nav .nav-item .nav-link:hover::after, .navbar .contain .nav-contain .navbar-nav .nav-item .nav-link.active::after {
  transform: scaleX(1);
}
.navbar .contain .nav-contain .socail-media {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.navbar .contain .nav-contain .socail-media .socail-icon a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.navbar .contain .nav-contain .socail-media .socail-icon a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--semi-green);
  transition: all 0.3s linear;
}
.navbar .contain .nav-contain .socail-media .socail-icon a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--light-filter);
}
.navbar .contain .nav-contain .socail-media .socail-icon a:hover::after {
  height: 100%;
}
.navbar .contain .nav-contain .socail-media .socail-icon a:hover img {
  animation: fadeInLeft 0.4s linear both;
  filter: var(--primary-filter);
}
.navbar .contain .nav-contain .socail-media .lang {
  padding-inline-start: 10px;
  border-inline-start: 1px solid rgba(0, 21, 11, 0.06);
}
.navbar .contain .nav-contain .socail-media .lang a {
  width: 80px;
  height: 40px;
  background-color: var(--semi-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 7px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.navbar .contain .nav-contain .socail-media .lang a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--primary-filter);
}
.navbar .contain .nav-contain .socail-media .lang a span {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 900;
}
.navbar .contain .nav-contain .socail-media .lang a::after, .navbar .contain .nav-contain .socail-media .lang a::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  background-color: var(--primary-color);
  transition: all 0.3s linear;
  z-index: -1;
}
.navbar .contain .nav-contain .socail-media .lang a::after {
  left: 0;
}
.navbar .contain .nav-contain .socail-media .lang a::before {
  right: 0;
}
.navbar .contain .nav-contain .socail-media .lang a:hover::after, .navbar .contain .nav-contain .socail-media .lang a:hover::before {
  width: 50%;
}
.navbar .contain .nav-contain .socail-media .lang a:hover img, .navbar .contain .nav-contain .socail-media .lang a:hover span {
  animation: storm 0.3s linear;
}
.navbar .contain .nav-contain .socail-media .lang a:hover img {
  filter: var(--light-filter);
}
.navbar .contain .nav-contain .socail-media .lang a:hover span {
  color: var(--light-color);
}

header {
  width: 100%;
  padding: 450px 0px 70px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
@media (max-width: 960px) {
  header {
    padding: 220px 0px 70px;
  }
}
header .intro-img {
  width: 100%;
  height: 100%;
  object-position: top center;
  position: absolute;
  top: 81px;
  left: 0;
  z-index: -2;
  object-fit: cover;
  animation: spinner 10s linear infinite alternate;
}
header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 21, 11, 0.7);
  top: 0;
  left: 0;
  z-index: -1;
}
header .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
}
header .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--light-color) !important;
}
header .contain {
  width: 100%;
  text-align: center;
}
header .contain h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px;
}
@media (min-width: 960px) {
  header .contain h1 {
    font-size: 52px;
  }
}
header .contain p {
  color: #E7F6F6;
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0px 40px;
}
header .contain .button-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
header .contain .button-contain .custom-btn {
  border: 0px !important;
}
@media (max-width: 960px) {
  header .contain .button-contain .custom-btn {
    width: 150px;
    height: 50px;
  }
  header .contain .button-contain .custom-btn span {
    font-size: 15px;
  }
}
header .swiper-wrapper {
  padding: 0px 0px 50px;
}
@media (min-width: 960px) {
  header .swiper-wrapper {
    padding-bottom: 100px;
  }
}

.sub-header {
  width: 100%;
  padding: 180px 0px 80px;
  position: relative;
  background-color: var(--primary-color);
  z-index: 9;
  overflow: hidden;
}
.sub-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/contact/contact_pattern.png") top right/cover no-repeat;
  z-index: -1;
  top: 0;
  left: 0;
  animation: spinner 8s linear infinite alternate;
}
.sub-header .contain {
  width: 100%;
  text-align: center;
}
.sub-header .contain h1 {
  font-size: 32px;
  font-weight: 900;
  color: var(--light-color);
  text-transform: capitalize;
  margin-bottom: 15px;
}
.sub-header .contain p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}

.category {
  overflow: hidden;
}
.category::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/category/pattern.svg") top right/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  animation: spinner 8s linear infinite alternate;
}
.category .box {
  width: 100%;
  padding: 20px 10px;
  background-color: var(--light-color);
  position: relative;
  z-index: 9;
  border-radius: 20px;
  display: block;
  text-align: center;
  transition: all 0.3s linear;
  overflow: hidden;
  box-shadow: 0px 0px 10px rgba(48, 48, 48, 0.01);
}
.category .box::after, .category .box::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 40px;
  z-index: -1;
  transition: all 0.3s linear;
}
@media (max-width: 960px) {
  .category .box::after, .category .box::before {
    width: 80px;
    height: 80px;
  }
}
.category .box::after {
  background-color: var(--primary-color);
  bottom: -50px;
  left: -50px;
  transform: translateX(-100%);
}
@media (max-width: 960px) {
  .category .box::after {
    bottom: -40px;
    left: -40px;
  }
}
.category .box::before {
  background-color: var(--secondary-color);
  top: -50px;
  right: -50px;
  transform: translateX(100%);
}
@media (max-width: 960px) {
  .category .box::before {
    top: -40px;
    right: -40px;
  }
}
@media (min-width: 960px) {
  .category .box {
    padding: 40px 30px;
    border-radius: 32px;
  }
}
.category .box img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0px auto;
}
@media (min-width: 960px) {
  .category .box img {
    width: 85px;
    height: 85px;
  }
}
.category .box h2 {
  font-size: 16px;
  font-weight: 900;
  color: var(--heading-dark);
  text-transform: capitalize;
  margin: 5px 0px;
}
@media (min-width: 960px) {
  .category .box h2 {
    font-size: 20px;
    margin: 20px 0px 10px;
  }
}
.category .box p {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 10px;
}
@media (max-width: 960px) {
  .category .box p {
    margin-bottom: 5px;
  }
}
.category .box span {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  margin: 0px;
  text-transform: capitalize;
}
.category .box:hover {
  transform: translateY(-10px);
}
.category .box:hover h2 {
  color: var(--primary-color);
}
.category .box:hover::after, .category .box:hover::before {
  transform: translateX(0px);
}
.category .box:hover img {
  animation: translateY 1s linear infinite alternate;
}

.products {
  padding-bottom: 0px;
}
.products.some-products {
  padding-bottom: 80px;
}
@media (max-width: 960px) {
  .products.some-products {
    padding-bottom: 40px;
    padding-top: 0px !important;
  }
}
@media (max-width: 960px) {
  .products .heading {
    margin-bottom: 25px;
  }
}
.products .swiper-wrapper {
  padding: 20px 0px 90px;
}
@media (max-width: 960px) {
  .products .swiper-wrapper {
    padding: 15px 0px 70px;
  }
}

.about::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/about/about_pattern.webp") center left/contain no-repeat;
  bottom: -100px;
  left: 0;
  z-index: -1;
  animation: translateY 1s linear infinite alternate;
}
@media (max-width: 960px) {
  .about::after {
    bottom: 0px;
    background-position: bottom left;
  }
}
.about .flex-contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about .video-image {
  width: 100%;
  height: 300px;
  border-radius: 40px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.about .video-image .about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.about .video-image .video-play {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 40px);
  left: calc(50% - 40px);
  z-index: 99;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  animation: pulse-shadow 3s linear infinite alternate;
  border: 1px solid var(--primary-color);
  transition: all 0.3s linear;
}
.about .video-image .video-play img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: var(--light-filter);
}
.about .video-image .video-play::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  transform: scale(0);
  border-radius: 50%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
.about .video-image .video-play:hover {
  border-width: 5px;
}
.about .video-image .video-play:hover img {
  animation: storm 0.3s linear;
  filter: var(--primary-filter);
}
.about .video-image .video-play:hover::after {
  transform: scale(1);
}
@media (min-width: 960px) {
  .about .video-image {
    height: 440px;
  }
}
.about .contain {
  width: 100%;
  height: 100%;
  padding: 30px 15px;
}
@media (min-width: 960px) {
  .about .contain {
    padding: 95px 47px;
  }
}
.about .contain h1 {
  font-size: 25px;
  font-weight: 900;
  color: var(--light-color);
  margin-bottom: 10px;
  text-transform: capitalize;
}
@media (min-width: 960px) {
  .about .contain h1 {
    font-size: 40px;
  }
}
.about .contain span {
  font-size: 16px;
  font-weight: 500;
  color: var(--light-color);
  text-transform: capitalize;
}
.about .contain p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
  text-align: justify;
  margin: 20px 0px 0px;
}
.about .container {
  width: 100%;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 40px;
}
@media (max-width: 960px) {
  .about .container {
    border-radius: 20px;
  }
}
.about .container::after, .about .container::before {
  position: absolute;
  width: 80%;
  height: 100%;
  content: "";
  bottom: 0;
  right: 0;
  border-radius: 40px;
}
@media (max-width: 960px) {
  .about .container::after, .about .container::before {
    height: 80%;
    width: 100%;
    border-radius: 20px;
  }
}
.about .container::after {
  background-color: var(--primary-color);
  z-index: -2;
}
.about .container::before {
  background: url("../images/about/data_pattern.png") top right/cover no-repeat;
  animation: spinner 8s linear infinite alternate;
  z-index: -1;
}

.certificate {
  overflow: hidden;
}
.certificate::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/category/pattern.svg") top right/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  animation: spinner 8s linear infinite alternate;
}
.certificate .col-lg-4:nth-child(2) .image-contain {
  margin: 0px auto;
}
.certificate .col-lg-4:nth-child(3) .image-contain {
  margin-inline-start: auto;
}
.certificate .image-contain {
  width: 200px;
  height: 200px;
  transition: all 0.3s linear;
}
@media (max-width: 960px) {
  .certificate .image-contain {
    width: 100%;
    height: 100px;
  }
}
.certificate .image-contain.center-data {
  margin: 0px auto;
}
.certificate .image-contain.end-data {
  margin-inline-start: auto;
}
.certificate .image-contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.certificate .image-contain:hover {
  transform: translateY(-10px);
}

.blogs .swiper-wrapper {
  padding: 20px 0px 90px;
}
@media (max-width: 960px) {
  .blogs .swiper-wrapper {
    padding: 15px 0px 70px;
  }
}

.contact-us {
  overflow: hidden;
}
.contact-us.no-pattern::after {
  display: none;
}
.contact-us::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/category/pattern.svg") top right/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  animation: spinner 8s linear infinite alternate;
}
.contact-us .map-contain {
  position: relative;
  z-index: 99;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
}
.contact-us .map-contain iframe {
  width: 100%;
  height: 600px;
  position: relative;
}
.contact-us .map-contain .contact-data {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 40px;
  overflow: hidden;
  padding: 50px 50px 50px 30px;
  background-color: var(--primary-color);
  z-index: 99;
}
@media (max-width: 960px) {
  .contact-us .map-contain .contact-data {
    padding: 25px 20px;
  }
}
.contact-us .map-contain .contact-data li {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  .contact-us .map-contain .contact-data li {
    margin-bottom: 15px;
  }
}
.contact-us .map-contain .contact-data li:last-child {
  margin-bottom: 0px !important;
}
.contact-us .map-contain .contact-data li .data-contain {
  width: 100%;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s linear;
}
.contact-us .map-contain .contact-data li .data-contain img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (max-width: 960px) {
  .contact-us .map-contain .contact-data li .data-contain img {
    width: 25px;
    height: 25px;
  }
}
.contact-us .map-contain .contact-data li .data-contain .data {
  width: calc(100% - 55px);
}
@media (max-width: 960px) {
  .contact-us .map-contain .contact-data li .data-contain .data {
    width: calc(100% - 30px);
  }
}
.contact-us .map-contain .contact-data li .data-contain .data p {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 960px) {
  .contact-us .map-contain .contact-data li .data-contain .data p {
    font-size: 14px;
  }
}
.contact-us .map-contain .contact-data li .data-contain .data .item {
  color: var(--light-color);
  font-size: 20px;
  font-weight: 900;
  display: inline-block;
}
@media (max-width: 960px) {
  .contact-us .map-contain .contact-data li .data-contain .data .item {
    font-size: 13px !important;
  }
}
.contact-us .map-contain .contact-data li .data-contain .data .item.margin {
  margin: 0px 5px;
}
.contact-us .map-contain .contact-data li .data-contain:hover {
  transform: translateY(-10px);
}
.contact-us .map-contain .contact-data li .data-contain:hover img {
  animation: tada 0.3s linear;
}
.contact-us .contact-form {
  width: 100%;
  border-radius: 40px;
  padding: 55px 80px;
  background-color: var(--light-color);
  border: 1px solid rgba(46, 131, 121, 0.06);
}
@media (max-width: 960px) {
  .contact-us .contact-form {
    padding: 20px 10px;
    border-radius: 20px;
  }
}
.contact-us .contact-form h2 {
  text-align: center;
  font-size: 35px;
  font-weight: 900;
  color: var(--dark-color);
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .contact-us .contact-form h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.contact-us .contact-form .from-contain {
  width: 100%;
}
.contact-us .contact-form .from-contain .form-group {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}
.contact-us .contact-form .from-contain .form-group.text-area {
  margin-bottom: 34px;
}
.contact-us .contact-form .from-contain .form-group.text-area .form-control {
  border-radius: 20px;
  height: 140px;
  padding-top: 20px;
}
.contact-us .contact-form .from-contain .form-group .form-control {
  width: 100%;
  height: 50px;
  border-radius: 25px;
  background-color: rgba(46, 131, 121, 0.03);
  border: 0px;
  padding-inline-start: 24px;
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  resize: none;
  text-transform: capitalize;
}
.contact-us .contact-form .from-contain .form-group .form-control::placeholder {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.contact-us .contact-form .from-contain .form-group .form-control:hover, .contact-us .contact-form .from-contain .form-group .form-control:active {
  background-color: rgba(46, 131, 121, 0.1);
}
.contact-us .contact-form .from-contain .form-group .error {
  display: flex;
  align-items: center;
  align-content: center;
  margin-top: 10px !important;
  position: relative;
  z-index: 9;
  padding-inline-start: 30px;
  color: var(--danger-color);
  font-size: 16px;
  font-weight: 500;
}
.contact-us .contact-form .from-contain .form-group .error::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/error.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: 0;
  z-index: -1;
}
.contact-us .contact-form .from-contain .custom-btn {
  margin: auto;
  border: 1px solid var(--primary-color) !important;
}
@media (max-width: 960px) {
  .contact-us .contact-form .from-contain .custom-btn {
    width: 100%;
    height: 50px;
  }
}

footer {
  width: 100%;
  padding: 24px 0px 0px;
  position: relative;
  z-index: 9;
  background-color: var(--dark-green);
}
footer .contain {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  align-content: center;
  text-align: center;
}
footer .contain .brand-name img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
footer .contain p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 20px 0px;
}
footer .contain .socail-media {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
footer .contain .socail-media .socail-icon a {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
footer .contain .socail-media .socail-icon a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--semi-green);
  transition: all 0.3s linear;
}
footer .contain .socail-media .socail-icon a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--light-filter);
}
footer .contain .socail-media .socail-icon a:hover::after {
  height: 100%;
}
footer .contain .socail-media .socail-icon a:hover img {
  animation: fadeInLeft 0.4s linear both;
  filter: var(--primary-filter);
}
footer .copyrights {
  width: 100%;
  margin-top: 24px;
  padding: 10px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
@media (max-width: 960px) {
  footer .copyrights {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
}
footer .copyrights p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
  text-transform: capitalize;
}
footer .copyrights p span {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
footer .copyrights a {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
footer .copyrights a img {
  width: 80px;
  height: 27px;
  object-fit: contain;
}
footer .copyrights a span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
  text-transform: capitalize;
}

.pagination-list {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .pagination-list {
    margin-top: 30px;
  }
}
.pagination-list li a {
  width: 45px;
  height: 45px;
  background-color: var(--semi-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  color: var(--primary-color);
}
.pagination-list li a.active, .pagination-list li a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.modal-dialog {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog .modal-content {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 40px;
}
.modal-dialog .modal-content .modal-body {
  width: 100%;
  border: 0px;
  padding: 0px;
  border-radius: 0px;
}
.modal-dialog .modal-content .modal-body .form-contain {
  padding: 60px 40px;
}
.modal-dialog .modal-content .modal-body .form-contain .form-control {
  background-color: #FBFBFB;
}
.modal-dialog .modal-content .modal-body .form-contain .text-area {
  height: 140px;
}
.modal-dialog .modal-content .modal-body .form-contain .custom-btn {
  width: 100% !important;
}
.modal-dialog .modal-content .modal-body .form-contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .form-contain p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 20px 0px;
  text-align: center;
}
.modal-dialog .modal-content .modal-body .contain {
  width: 100%;
  padding: 70px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
}
@media (max-width: 960px) {
  .modal-dialog .modal-content .modal-body .contain {
    padding: 40px 20px;
  }
}
.modal-dialog .modal-content .modal-body .contain img {
  width: 85px;
  height: 85px;
  object-fit: contain;
  margin-bottom: 20px;
}
.modal-dialog .modal-content .modal-body .contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}
.modal-dialog .modal-content .modal-body .contain p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin: 20px 0px;
}

.gallery .image-contain {
  width: 100%;
  height: 300px;
  display: flex;
  align-content: center;
  align-items: center;
}
@media (max-width: 960px) {
  .gallery .image-contain {
    height: 150px;
  }
}
.gallery .image-contain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-data.certificates-data .image-contain::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 90%;
  box-shadow: 0px 0px 10px rgba(0, 21, 11, 0.06);
  background-color: var(--light-color);
  top: 5%;
  left: 5%;
  z-index: -1;
  border-radius: 30px;
}
.about-data.certificates-data .image-contain img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.about-data.pattern {
  overflow: hidden;
}
.about-data.pattern::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/category/pattern.svg") top right/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  animation: spinner 8s linear infinite alternate;
}
.about-data.pattern .image-contain::before {
  left: 0px;
  right: unset;
}
.about-data.single-data .image-contain::after, .about-data.single-data .image-contain::before {
  display: none;
}
.about-data.single-data .image-contain img {
  width: 100%;
  height: 100%;
}
.about-data.single-data .contain h1 {
  font-size: 24px;
  padding-inline-start: 20px;
  border-inline-start: 4px solid var(--primary-color);
}
.about-data .image-contain {
  width: 100%;
  height: 470px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .about-data .image-contain {
    height: 300px;
  }
}
.about-data .image-contain img {
  width: 90%;
  height: 90%;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
.about-data .image-contain::after, .about-data .image-contain::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: -1;
}
.about-data .image-contain::after {
  left: 0px;
  top: 0;
  animation: translateY 1s linear infinite alternate;
  background-color: var(--primary-color);
  border-radius: 10px;
}
.about-data .image-contain::before {
  background: url("../images/about/dotted.svg") center/contain no-repeat;
  bottom: 0;
  right: 0;
  animation: translateX 1s linear infinite alternate;
}
.about-data .contain {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about-data .contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--semi-dark);
  margin-bottom: 10px;
  text-transform: capitalize;
}
@media (min-width: 960px) {
  .about-data .contain h1 {
    font-size: 55px;
  }
}
.about-data .contain span {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
  text-transform: capitalize;
}
.about-data .contain p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  margin: 14px 0px 0px;
  text-transform: capitalize;
  text-align: justify;
}

.visions {
  overflow: hidden;
}
.visions::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/category/pattern.svg") top right/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  animation: spinner 8s linear infinite alternate;
}
.visions .box {
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  background-color: var(--light-color);
  border-radius: 20px;
  transition: all 0.3s linear;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  align-items: center;
  align-content: center;
  overflow: hidden;
}
@media (min-width: 960px) {
  .visions .box {
    padding: 60px 35px;
    border-radius: 40px;
  }
}
.visions .box::after, .visions .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  background-color: var(--primary-color);
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
.visions .box::after {
  top: 0;
}
.visions .box::before {
  bottom: 0;
}
.visions .box .image-contain {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.visions .box .image-contain::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--light-color);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
  border-radius: 50%;
  transform: scale(0);
}
.visions .box .image-contain img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: var(--light-filter);
}
.visions .box h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--semi-dark);
  margin: 20px 0px;
}
@media (max-width: 960px) {
  .visions .box h2 {
    margin: 14px 0px;
  }
}
.visions .box p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.visions .box:hover {
  transform: translateY(-10px);
}
.visions .box:hover::after, .visions .box:hover::before {
  height: 50%;
}
.visions .box:hover .image-contain::after {
  transform: scale(1);
}
.visions .box:hover .image-contain img {
  animation: fadeInLeft 0.4s linear;
  filter: var(--primary-filter);
}
.visions .box:hover h2 {
  color: var(--light-color);
}
.visions .box:hover p {
  color: var(--light-color);
}

.choose .box {
  width: 100%;
  height: 100%;
  padding: 20px 10px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  transition: all 0.3s linear;
  position: relative;
  z-index: 9;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  text-align: center;
  align-items: center;
  align-content: center;
  overflow: hidden;
}
@media (min-width: 960px) {
  .choose .box {
    padding: 60px 35px;
    border-radius: 40px;
  }
}
.choose .box::after, .choose .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  background-color: var(--light-color);
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
}
.choose .box::after {
  top: 0;
}
.choose .box::before {
  bottom: 0;
}
.choose .box .image-contain {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--light-color);
  border-radius: 50%;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.choose .box .image-contain::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s linear;
  border-radius: 50%;
  transform: scale(0);
}
.choose .box .image-contain img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: var(--primary-filter);
}
.choose .box h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--light-color);
  margin: 20px 0px;
}
@media (max-width: 960px) {
  .choose .box h2 {
    margin: 14px 0px;
  }
}
.choose .box p {
  color: var(--light-color);
  font-size: 15px;
  font-weight: 500;
  margin: 0px;
}
.choose .box:hover {
  transform: translateY(-10px);
}
.choose .box:hover::after, .choose .box:hover::before {
  height: 50%;
}
.choose .box:hover .image-contain::after {
  transform: scale(1);
}
.choose .box:hover .image-contain img {
  animation: fadeInLeft 0.4s linear;
  filter: var(--light-filter);
}
.choose .box:hover h2 {
  color: var(--primary-color);
}
.choose .box:hover p {
  color: var(--dark-color);
}

.single-blog {
  width: 100%;
  position: relative;
  z-index: 9;
  padding: 0px 0px 50px;
  margin-top: -40px;
}
.single-blog .image-contain {
  width: 100%;
  height: 400px;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .single-blog .image-contain {
    height: 240px;
    border-radius: 20px;
  }
}
.single-blog .image-contain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-blog .contain {
  width: 100%;
  margin: 20px 0px;
}
.single-blog .contain .flex-data {
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .single-blog .contain .flex-data {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px;
  }
}
.single-blog .contain .flex-data h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--semi-dark);
  text-transform: capitalize;
  margin: 0px;
}
@media (max-width: 960px) {
  .single-blog .contain .flex-data h1 {
    font-size: 20px;
  }
}
.single-blog .contain .flex-data .date {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
}
.single-blog .contain .flex-data .date img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--secondary-filter);
}
.single-blog .contain .flex-data .date span {
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 500;
}
.single-blog .contain p {
  color: var(--dark-color);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 0px;
  text-transform: capitalize;
  text-align: justify;
}
.single-blog .share {
  width: 100%;
  padding: 50px 20px;
  background-color: var(--primary-color);
  border-radius: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 25px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}
.single-blog .share p {
  font-size: 40px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px;
  text-transform: capitalize;
}
@media (max-width: 960px) {
  .single-blog .share p {
    font-size: 24px;
  }
}
.single-blog .share::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/category/pattern.svg") top right/cover no-repeat;
  top: 0;
  left: 0;
  z-index: -1;
  animation: spinner 8s linear infinite alternate;
}
@media (max-width: 960px) {
  .single-blog .share {
    padding: 30px 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    border-radius: 20px;
  }
}
.single-blog .share .socail-media {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;
}
.single-blog .share .socail-media .socail-icon a {
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 9;
}
.single-blog .share .socail-media .socail-icon a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--semi-green);
  transition: all 0.3s linear;
}
.single-blog .share .socail-media .socail-icon a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--primary-filter);
}
.single-blog .share .socail-media .socail-icon a:hover::after {
  height: 100%;
}
.single-blog .share .socail-media .socail-icon a:hover img {
  animation: fadeInLeft 0.4s linear both;
  filter: var(--primary-filter);
}

.all-products .filter-contain {
  width: 100%;
  padding: 20px 15px;
  border: 1px solid rgba(46, 131, 121, 0.1);
  border-radius: 20px;
  background-color: var(--light-color);
}
@media (min-width: 960px) {
  .all-products .filter-contain {
    position: sticky;
    top: 80px;
    left: 0px;
    padding: 24px;
    border-radius: 24px;
  }
}
.all-products .filter-contain h1 {
  font-size: 20px;
  font-weight: 900;
  color: var(--semi-dark);
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(46, 131, 121, 0.06);
}
.all-products .filter-contain .form-group {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 9;
}
.all-products .filter-contain .form-group img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  position: absolute;
  top: calc(50% - 12px);
  left: 15px;
  z-index: 9;
  pointer-events: none;
}
.all-products .filter-contain .form-group .form-control {
  width: 100%;
  height: 100%;
  padding-inline-start: 50px;
  border-radius: 10px;
  background-color: #F5F5F5;
  color: var(--dark-color);
  text-transform: capitalize;
}
.all-products .filter-contain .form-group .form-control::placeholder {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.all-products .filter-contain .form-group .form-control:hover, .all-products .filter-contain .form-group .form-control:focus, .all-products .filter-contain .form-group .form-control:active, .all-products .filter-contain .form-group .form-control:checked {
  border-color: var(--primary-color);
}
.all-products .filter-contain .card {
  border: 0px;
  border-bottom: 1px solid rgba(46, 131, 121, 0.06);
  padding: 0px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-radius: 0px;
}
.all-products .filter-contain .card:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.all-products .filter-contain .card .card-header {
  width: 100%;
  padding: 0px;
  border: 0px;
  border-radius: 0px;
  margin: 0px;
  background: transparent;
}
.all-products .filter-contain .card .card-header .btn {
  width: 100%;
  display: block;
  text-align: start;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-green);
  position: relative;
  z-index: 9;
  text-transform: capitalize;
  padding: 10px 0px;
}
.all-products .filter-contain .card .card-header .btn::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/down_arrow.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  right: 0px;
  z-index: -1;
  transition: all 0.3s linear;
  filter: var(--primary-filter);
}
.all-products .filter-contain .card .card-header .btn[aria-expanded=true] {
  color: var(--primary-color);
}
.all-products .filter-contain .card .card-header .btn[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.all-products .filter-contain .card .card-body {
  margin: 0px;
  padding: 10px;
  border: 0px;
}
.all-products .filter-contain .card .card-body .list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.all-products .filter-contain .card .card-body .list li a {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.all-products .filter-contain .card .card-body .list li a span {
  font-size: 13px;
  font-weight: 500;
}
.all-products .filter-contain .card .card-body .list li a span.name {
  color: var(--dark-green);
}
.all-products .filter-contain .card .card-body .list li a span.numbers {
  color: var(--secondary-color);
}
.all-products .filter-contain .card .card-body .list li a:hover .name {
  color: var(--primary-color);
}
.all-products .filter-contain .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
  cursor: pointer;
  position: relative;
  margin-bottom: 15px;
  width: 100%;
}
.all-products .filter-contain .wrapper .radio-check {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  border: 1px solid #2e8379 !important;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.all-products .filter-contain .wrapper .radio-check.radio-circle {
  border-radius: 50%;
}
.all-products .filter-contain .wrapper .radio-check.radio-circle::before {
  background: var(--primary-color);
  border-radius: 50%;
}
.all-products .filter-contain .wrapper .radio-check.radio-circle::after {
  background-color: var(--light-color);
}
.all-products .filter-contain .wrapper .radio-check::after, .all-products .filter-contain .wrapper .radio-check::before {
  content: "";
  position: absolute;
  transition: all 0.2s linear;
}
.all-products .filter-contain .wrapper .radio-check::before {
  background: url("../images/icons/check.svg") center/contain no-repeat;
  transform: scale(0);
  z-index: -1;
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  left: calc(50% - 7px);
}
.all-products .filter-contain .wrapper .radio-check::after {
  width: 100%;
  height: 0px;
  background-color: var(--primary-color);
  top: 0;
  left: 0;
  z-index: -2;
}
.all-products .filter-contain .wrapper .radio-check:checked {
  border-color: var(--primary-color) !important;
}
.all-products .filter-contain .wrapper .radio-check:checked::before {
  transform: scale(1);
}
.all-products .filter-contain .wrapper .radio-check:checked::after {
  height: 100%;
}
.all-products .filter-contain .wrapper .radio-title {
  width: calc(100% - 30px);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
  word-spacing: 0px;
  cursor: pointer;
}
.all-products .filter-contain .wrapper .radio-title .link {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 700;
}
.all-products .filter-contain .inputs-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.all-products .filter-contain .inputs-wrapper .price-range-field {
  border: 0px !important;
  background-color: transparent !important;
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 25px !important;
  width: 50%;
}
.all-products .filter-contain .inputs-wrapper #single_max_price {
  text-align: end;
}
.all-products .filter-contain .ui-widget.ui-widget-content {
  background-color: rgba(95, 196, 180, 0.1) !important;
  border-radius: 4px !important;
  border: 0px !important;
}
.all-products .filter-contain .ui-slider-horizontal .ui-slider-range,
.all-products .filter-contain .ui-slider-horizontal .ui-slider-handle {
  transition: all 0.2s linear !important;
}
.all-products .filter-contain .ui-slider-horizontal .ui-slider-handle {
  width: 20px !important;
  height: 20px !important;
  background-color: #fff !important;
  border-radius: 50% !important;
  border: 1px solid var(--primary-color) !important;
  top: calc(50% - 10px) !important;
}
.all-products .filter-contain .ui-slider-horizontal .ui-slider-handle:focus, .all-products .filter-contain .ui-slider-horizontal .ui-slider-handle:hover, .all-products .filter-contain .ui-slider-horizontal .ui-slider-handle:active {
  outline: none !important;
  background: var(--primary-color) !important;
  border: 5px solid var(--primary-color) !important;
}
.all-products .filter-contain .tags {
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.all-products .filter-contain .tags li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.all-products .filter-contain .tags li a:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}

.single-product {
  padding-bottom: 0px;
}
.single-product .prodcutDetailsSwiper {
  width: 100%;
  margin-bottom: 20px;
}
.single-product .prodcutDetailsSwiper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 960px) {
  .single-product .prodcutDetailsSwiper img {
    height: 280px;
  }
}
.single-product .swiper-team .swiper-wrapper {
  padding: 20px 0px 90px !important;
}
.single-product .eventThumbsSlider {
  width: 100%;
  position: relative;
  z-index: 9;
}
.single-product .eventThumbsSlider::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000, transparent, transparent, #000);
  top: 0;
  left: 0;
  z-index: 9;
  pointer-events: none;
}
.single-product .eventThumbsSlider img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}
.single-product .eventThumbsSlider .swiper-button-next,
.single-product .eventThumbsSlider .swiper-button-prev {
  bottom: unset !important;
  top: 70% !important;
  transform: translateY(-50%) !important;
  border-color: var(--primary-color);
}
.single-product .eventThumbsSlider .swiper-button-next::after,
.single-product .eventThumbsSlider .swiper-button-prev::after {
  filter: var(--light-filter);
}
.single-product .eventThumbsSlider .swiper-button-next::before,
.single-product .eventThumbsSlider .swiper-button-prev::before {
  height: 100%;
}
.single-product .eventThumbsSlider .swiper-button-prev {
  left: 10px !important;
  right: unset !important;
}
.single-product .eventThumbsSlider .swiper-button-next {
  left: unset !important;
  right: 10px !important;
}
.single-product .eventThumbsSlider .swiper-button-next::after {
  transform: scaleX(-1);
}
.single-product .swiper-wrapper {
  margin: 0px !important;
  padding: 0px !important;
}
.single-product .contain {
  width: 100%;
}
@media (min-width: 960px) {
  .single-product .contain {
    width: 80%;
    margin-inline-start: auto;
  }
}
.single-product .contain h1 {
  font-size: 30px;
  font-weight: 900;
  color: var(--dark-green);
  margin-bottom: 0px;
}
@media (max-width: 960px) {
  .single-product .contain h1 {
    font-size: 25px;
  }
}
.single-product .contain .price {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0px;
}
.single-product .contain .price img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: var(--primary-filter);
}
.single-product .contain .price p {
  color: var(--primary-color);
  margin: 0px;
  font-weight: 700;
  font-size: 16px;
}
.single-product .contain .desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-color);
  margin-bottom: 20px;
}
.single-product .contain h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-green);
  margin-bottom: 20px;
}
.single-product .contain .list {
  display: flex;
  align-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.single-product .contain .list li a {
  width: fit-content;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 5px;
  background-color: #F5F5F5;
  border-radius: 10px;
  padding: 10px 15px;
}
.single-product .contain .list li a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.single-product .contain .list li a span {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
}

.loader-contain {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: var(--semi-green);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  flex-direction: column;
  gap: 20px;
}
.loader-contain .brand-name img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.loader {
  position: relative;
  width: 75px;
  height: 100px;
}

.loader__bar {
  position: absolute;
  bottom: 0;
  width: 10px;
  height: 50%;
  background: var(--secondary-color);
  transform-origin: center bottom;
  box-shadow: 1px 1px 0 rgba(143, 63, 86, 0.2);
}

.loader__bar:nth-child(1) {
  left: 0px;
  transform: scale(1, 0.2);
  -webkit-animation: barUp1 4s infinite;
  animation: barUp1 4s infinite;
}

.loader__bar:nth-child(2) {
  left: 15px;
  transform: scale(1, 0.4);
  -webkit-animation: barUp2 4s infinite;
  animation: barUp2 4s infinite;
}

.loader__bar:nth-child(3) {
  left: 30px;
  transform: scale(1, 0.6);
  -webkit-animation: barUp3 4s infinite;
  animation: barUp3 4s infinite;
}

.loader__bar:nth-child(4) {
  left: 45px;
  transform: scale(1, 0.8);
  -webkit-animation: barUp4 4s infinite;
  animation: barUp4 4s infinite;
}

.loader__bar:nth-child(5) {
  left: 60px;
  transform: scale(1, 1);
  -webkit-animation: barUp5 4s infinite;
  animation: barUp5 4s infinite;
}

.loader__ball {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  -webkit-animation: ball624 4s infinite;
  animation: ball624 4s infinite;
}

@keyframes ball624 {
  0% {
    transform: translate(0, 0);
  }
  5% {
    transform: translate(8px, -14px);
  }
  10% {
    transform: translate(15px, -10px);
  }
  17% {
    transform: translate(23px, -24px);
  }
  20% {
    transform: translate(30px, -20px);
  }
  27% {
    transform: translate(38px, -34px);
  }
  30% {
    transform: translate(45px, -30px);
  }
  37% {
    transform: translate(53px, -44px);
  }
  40% {
    transform: translate(60px, -40px);
  }
  50% {
    transform: translate(60px, 0);
  }
  57% {
    transform: translate(53px, -14px);
  }
  60% {
    transform: translate(45px, -10px);
  }
  67% {
    transform: translate(37px, -24px);
  }
  70% {
    transform: translate(30px, -20px);
  }
  77% {
    transform: translate(22px, -34px);
  }
  80% {
    transform: translate(15px, -30px);
  }
  87% {
    transform: translate(7px, -44px);
  }
  90% {
    transform: translate(0, -40px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@-webkit-keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }
  40% {
    transform: scale(1, 0.2);
  }
  50% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.2);
  }
}
@keyframes barUp1 {
  0% {
    transform: scale(1, 0.2);
  }
  40% {
    transform: scale(1, 0.2);
  }
  50% {
    transform: scale(1, 1);
  }
  90% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 0.2);
  }
}
@-webkit-keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }
  40% {
    transform: scale(1, 0.4);
  }
  50% {
    transform: scale(1, 0.8);
  }
  90% {
    transform: scale(1, 0.8);
  }
  100% {
    transform: scale(1, 0.4);
  }
}
@keyframes barUp2 {
  0% {
    transform: scale(1, 0.4);
  }
  40% {
    transform: scale(1, 0.4);
  }
  50% {
    transform: scale(1, 0.8);
  }
  90% {
    transform: scale(1, 0.8);
  }
  100% {
    transform: scale(1, 0.4);
  }
}
@-webkit-keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }
  100% {
    transform: scale(1, 0.6);
  }
}
@keyframes barUp3 {
  0% {
    transform: scale(1, 0.6);
  }
  100% {
    transform: scale(1, 0.6);
  }
}
@-webkit-keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }
  40% {
    transform: scale(1, 0.8);
  }
  50% {
    transform: scale(1, 0.4);
  }
  90% {
    transform: scale(1, 0.4);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
@keyframes barUp4 {
  0% {
    transform: scale(1, 0.8);
  }
  40% {
    transform: scale(1, 0.8);
  }
  50% {
    transform: scale(1, 0.4);
  }
  90% {
    transform: scale(1, 0.4);
  }
  100% {
    transform: scale(1, 0.8);
  }
}
@-webkit-keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }
  40% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.2);
  }
  90% {
    transform: scale(1, 0.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes barUp5 {
  0% {
    transform: scale(1, 1);
  }
  40% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 0.2);
  }
  90% {
    transform: scale(1, 0.2);
  }
  100% {
    transform: scale(1, 1);
  }
}
@media (max-width: 999px) {
  .padding-shape {
    padding: 0px 5px;
  }
  .order-mobile-1 {
    order: 1;
  }
  .order-mobile-0 {
    order: 0;
  }
}/*# sourceMappingURL=style.css.map */