:root {
  --primary-color: #1e5f01;
  --secondary-color: #fff;
  --heading-color: #343a40;
  --text-color: #6c757d;
  --box-background: #e9ecef;
  font-size: 16px;
}

/* ==== Reset ==== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  max-width: 1920px;
  margin: auto;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: transparent;
}

fieldset {
  border: none;
}

button {
  cursor: pointer;
}

h1 {
  font-size: clamp(2.5rem, 0.625rem + 6vw, 4rem);
  line-height: 110%;
  font-weight: 600;
  color: var(--secondary-color);
}

h2 {
  font-size: clamp(1.875rem, 1.0938rem + 2.5vw, 2.5rem);
  line-height: 124%;
  font-weight: 600;
  letter-spacing: -0.8px;
}

h3 {
  font-size: clamp(1.5rem, 0.875rem + 2vw, 2rem);
  line-height: 124%;
  font-weight: 600;
  letter-spacing: -0.64px;
}

h4 {
  font-size: clamp(1.25rem, 0.9375rem + 1vw, 1.5rem);
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.48px;
}

h5 {
  font-weight: 600;
}

h6 {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  line-height: 142%;
}

h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}
:is(h1, h2, h3, h4, h5, h6) span {
  color: var(--primary-color);
}

/* ==== Gobal ==== */
.color__white {
  --secondary-color: #fff;
}

.dflex {
  display: flex;
  flex-wrap: wrap;
}

.jcspacebetween {
  justify-content: space-between;
}

.aicenter {
  align-items: center;
}

a.service__card--link-wrapper .aicenter {
  /*   border-top: 1px solid #dee2e6; */
  position: absolute;
  bottom: 12px;
  width: 86%;
  padding-top: 10px;
}

.home a.service__card--link-wrapper .aicenter {
  position: unset;
}

.aistart {
  align-items: flex-start;
}
.aiend {
  align-items: flex-end;
}

.flexdircolumn {
  flex-direction: column;
}

.jccenter {
  justify-content: center;
}

.jcflexend {
  justify-content: flex-end;
}
.gap-6 {
  gap: 6px;
}
.gap-12 {
  gap: 12px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-64 {
  gap: 64px;
}
.site__container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.primary__button {
  display: flex;
  gap: 10px;
  color: var(--secondary-color);
  justify-content: space-between;
  padding: 18px 15px;
  width: max-content;
  gap: 58px;
  background: var(--primary-color);
  border-radius: 6px;
  font-weight: 600;
}

/* Loading state for buttons (used by AJAX Load More) */
.primary__button.loading {
  pointer-events: none;
  opacity: 0.9;
  position: relative;
}

.primary__button.loading > span,
.primary__button.loading svg {
  visibility: hidden; /* hide existing text/icon while loader is visible */
}

.primary__button.loading::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: algo-spin 0.8s linear infinite;
}

@keyframes algo-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* ==== Header ==== */
.site__header {
  position: absolute;
  width: 100%;
  padding: 20px 0;
  z-index: 5;
}
.header__nav {
  gap: 150px;
}
.header__menu li a {
  color: var(--secondary-color);
}
.header__menu ul,
.header__cta {
  gap: 24px;
}
.header__cta--phone {
  display: flex;
  gap: 10px;
  right: -110px;
}
header .header__cta--phone {
  position: relative;
}
.header__cta--phone span {
  color: var(--secondary-color);
}
.header__cta--button {
  transform: rotate(-90deg);
  position: relative;
  top: 60px;
  right: -60px;
}
.menu-item-has-children {
  position: relative;
}
.sub-menu {
  position: absolute;
  width: max-content;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  min-width: 250px;
  top: 100%;
}
.sub-menu li a {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 126%;
  color: #6c757d;
  padding: 16px;
  display: block;
  transition: 0.3s all linear;
}
.sub-menu li a:hover,
.current-menu-item .sub-menu li a:hover {
  background: rgba(3, 148, 91, 0.1);
  color: var(--primary-color);
  font-weight: 600;
}
li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
li.menu-item-has-children a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
/* Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 1px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==== Hero banner ==== */

.hero__banner {
  height: 100vh;
  background-image: url(../img/banner.png);
  background-size: cover;
  background-position: center;
  padding: 0 0 50px 0;
}
.hero__content {
  max-width: 800px;
}

.hero__content p {
  color: var(--secondary-color);
  max-width: 550px;
  font-size: clamp(1rem, 0.6875rem + 1vw, 1.25rem);
  margin-top: 12px;
  margin-bottom: 32px;
}

/* ==== About Section ==== */
.about__section {
  padding: 64px 0;
}
.about__img {
  width: calc(50% - 35px);
}
.about__details {
  width: calc(50% - 35px);
  padding: 24px 0 0;
  border-top: 1px solid #dee2e6;
}
.about__details h2 {
  color: var(--heading-color);
  margin: 8px 0 24px;
}

.about__details h6 {
  color: var(--primary-color);
}
.about__details p {
  margin: 24px 0 32px;
  color: var(--text-color);
}
.about__stats {
  margin-top: 48px;
  text-align: center;
}
.stat__heading {
  width: calc(25% - 64px);
}
.stat__heading .stat__numb {
  font-size: clamp(2.25rem, 0.6875rem + 5vw, 3.5rem);
  color: var(--primary-color);
  font-weight: 600;
  line-height: 122%; /* 68.32px */
  letter-spacing: -1.12px;
}
.stat__heading .stat__text {
  font-size: clamp(0.875rem, 0.5625rem + 1vw, 1.125rem);
  color: var(--text-color);
  border-top: 1px solid #dee2e6;
  padding-top: 16px;
  margin-top: 20px;
  display: block;
}

/* ==== Service Section ==== */
.services__section {
  background-color: var(--box-background);
  padding: 64px 0;
}
.services__section h2 {
  text-align: center;
  margin-bottom: 40px;
}
.services__cards {
  gap: 40px 24px;
  align-items: stretch;
}
.service__card {
  width: 100%;
}
.service__card--img {
  width: 100%;
  height: 350px;
}
.service__card--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
	object-position: top left;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.service__block {
  padding: 0 32px 16px;
  background-color: var(--secondary-color);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.serivcce__card--content {
  padding: 32px 0 40px;
  /*   border-bottom: 1px solid #dee2e6; */
}

.page-id-284 .serivcce__card--content {
  border-bottom: 1px solid #dee2e6;
}
.service__icon {
  width: 50px;
}
.service__text {
  width: calc(100% - 75px);
}
.service__text h4 {
  margin-bottom: 16px;
}
a.service__card--link {
  padding: 16px 0;
  font-weight: 600;
  line-height: 100%;
  color: var(--primary-color);
}

/* ==== Team Section ==== */
.team__section {
  padding: 64px 0;
}
.team__section h2 {
  text-align: center;
  margin-bottom: 32px;
}
.team__img {
  position: relative;
}
.team__img img {
  width: 100%;
}
a.team__linkedin {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.team__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.team__name {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%; /* 24px */
  letter-spacing: -0.4px;
}
.team__role {
  font-weight: 400;
  line-height: 150%;
}

/* Custom progress + navigation */
.controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.slider__arrow {
  border: 1px solid #1e5f01;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.slider__arrow:hover {
  background: #14792c;
}
.slider__arrow:hover svg path {
  stroke: #fff;
}

.progress-text {
  font-weight: 500;
  min-width: 50px;
}

.progress-bar {
  position: relative;
  width: 80px;
  height: 3px;
  background: #ccc;
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #1c9b3a;
  width: 0%;
  transition: width 0.4s ease;
}

.swiper-pagination-progressbar-fill.is-filled {
  background-color: #1c9b3a !important;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: linear;
}

/* ==== Logistics Section ==== */

.logistics__company {
  padding: 64px 0;
  background-color: var(--box-background);
}
.section__title {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 20px;
}
.brand__logo {
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  border-radius: 6px;
}

/* ==== Testimonial Section ==== */
.testimonial__section {
  padding: 64px 0;
}
.testimonial__section h2 {
  text-align: center;
  padding: 0 20px 40px;
}
.testimonial__card {
  background-color: var(--box-background);
  padding: 20px;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: 0.3s all linear;
}
.testimonial__card:hover {
  border-color: var(--primary-color);
}
.testimonial__card p {
  margin: 16px 0 60px;
  color: var(--text-color);
  font-size: 20px;
}
.user__details {
  display: flex;
  flex-direction: column;
}
span.user__name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.36px;
  color: #212529;
}
span.user__role {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 142%;
}
.user__img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

/* ==== Blog Section ==== */
.blog__section {
  padding: 64px 0;
}
.blog__heading {
  text-align: center;
  padding: 64px 0 32px;
  border-top: 1px solid #dee2e6;
}
.blog__block {
  padding: 32px 0;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.featured__blog-post {
  width: calc(50% - 12px);
}
.blog__posts {
  width: calc(50% - 12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.post__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  color: var(--text-color);
}
.featured__blog-post .post__title {
  margin: 12px 0 24px;
}
.post__title {
  margin: 8px 0 24px;
}
.featured__blog-post img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  /*   margin-bottom: 16px; */
}
.single__blog-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.single__blog-content {
  width: calc(100% - 234px);
}
.single__blog-img {
  width: 210px;
}
.single__blog-content .post__title {
  font-size: clamp(1rem, 0.6875rem + 1vw, 1.25rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.read__more span {
  color: var(--primary-color);
  font-weight: 600;
  line-height: 100%;
}

/* ==== Footer Section ==== */
.site__footer {
  padding-bottom: 30px;
}
.footer__content {
  background: #212529;
  padding: 40px 32px 26px;
  border-radius: 8px;
  margin-top: -80px;
  position: relative;
}
.footer__bg {
  width: 100%;
  height: auto;
  background-size: cover;
  background-position: center;
}
.footer__menus {
  width: 90%;
}
.footer__menu {
  width: calc(33% - 18px);
}
.footer__menu h4 {
  color: var(--secondary-color);
  margin-bottom: 24px;
}
.footer__menu ul li a {
  color: #adb5bd;
  margin: 12px 0;
  display: block;
  font-size: 14px;
}
.footer__copyright {
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__copyright p {
  color: #dee2e6;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}
.footer__socials li a {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__socials img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Team Page CSS */
.inner__banner {
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 70px !important;
}
.inner__banner h1 {
  font-size: clamp(2.125rem, 0.5625rem + 5vw, 3.375rem);
  margin-bottom: 80px;
}
.team__page .team__meber {
  width: calc(25% - 24px);
}
.testimonial__page .testimonial__card {
  width: calc(50% - 24px);
}
.footer__cta {
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(-90deg);
}

/* Blog Page CSS */

.blog__sidebar {
  width: 300px;
  height: 600px;
  overflow-x: auto;
  padding-right: 24px;
}
.blog__sidebar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  background-color: #e9ecef;
}
.blog__sidebar::-webkit-scrollbar {
  width: 5px;
  background-color: #e9ecef;
}
.blog__sidebar::-webkit-scrollbar-thumb {
  border-radius: 20px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: var(--primary-color);
}
ul.blog__categories li a {
  display: inline-block;
  padding: 16px 0;
  border-top: 1px solid #dee2e6;
  width: 100%;
  color: var(--heading-color);
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: -0.32px;
}
.search__bar {
  display: flex;
  justify-content: space-between;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin: 24px 0;
  padding: 16px;
}
.search__bar input {
  width: 95%;
}
.blog__page .blog__posts {
  width: calc(100% - 324px);
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 32px;
}
.blog__page .single__blog-post {
  width: calc(50% - 16px);
}
.blog__page .single__blog-content .post__title {
  font-size: 18px;
  letter-spacing: -0.36px;
}
.blog__page .single__blog-post:first-child {
  width: 100%;
  background-color: var(--box-background);
  padding: 10px;
  border-radius: 8px;
}
.blog__page .single__blog-post:first-child .single__blog-img {
  width: calc(50% - 16px);
  height: 300px;
}
.blog__page .single__blog-post:first-child .single__blog-img img {
  height: 100%;
}
.blog__page .single__blog-post:first-child .single__blog-content {
  width: calc(50% - 16px);
}
.blog__page .single__blog-post:first-child .post__title {
  font-size: clamp(1.25rem, 0.3125rem + 3vw, 2rem);
}

/* Blog Detial Page */
.blog__detail--section {
  padding: 64px 0;
}
.blog__detail--left {
  width: calc(65% - 12px);
}
.blog__detail--right {
  width: calc(35% - 12px);
}
.blog__detail--right .blog__posts {
  width: 100%;
}
.publish__date {
  color: var(--text-color);
  margin: 24px 0 12px;
  display: block;
}
.blog__title {
  margin-bottom: 24px;
}
.blog__detail--left p {
  color: var(--text-color);
}
.feature__img {
  height: 482px;
  object-fit: cover;
  border-radius: 8px;
}

/* FAQ PAGE */
.faq__section {
  padding: 64px 0;
}
.accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}
.accordion-item:hover {
  border-color: var(--primary-color);
}
.accordion-item.active {
  background-color: var(--primary-color);
  transition: all 0.35s ease;
}
.accordion-header {
  /* background: #fff; */
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(1rem, 0.6875rem + 1vw, 1.25rem);
  color: var(--heading-color);
  letter-spacing: -0.4px;
  position: relative;
  padding-right: 40px;
}
.accordion-header .icon {
  position: absolute;
  right: 20px;
  top: 25px;
}
.accordion-item.active .accordion-header {
  /* background-color: #1a5d0f;  */
  color: #fff;
}
.accordion-content {
  /* background-color: #1a5d0f; */
  color: #fff;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  font-size: 1rem;
  line-height: 1.6;
}
.accordion-item.active .accordion-content {
  padding: 0 24px 32px;
  max-height: max-content;
}
.accordion-item.active .icon svg path {
  fill: #fff;
}
.minus__icon {
  display: none;
}
.accordion-item.active .plus__icon {
  display: none;
}
.accordion-item.active .minus__icon {
  display: block;
}

/* Home Featured Section */
.featured__video {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.featured__block {
  background: linear-gradient(180deg, #fff 0%, #f8f9fa 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  margin-top: -112px;
}
.featured__block-item {
  width: calc(33% - 15px);
}

.featured__block-item:first-child ul {
  background-color: #fff;
}
.featured__block-item:first-child span {
  padding: 20px 24px;
  border-bottom: 1px solid #dee2e6;
  display: block;
  font-weight: 600;
  line-height: 132%; /* 31.68px */
  letter-spacing: -0.48px;
  font-size: 24px;
  color: var(--primary-color);
  background-color: #fff;
}
.featured__block-item:first-child ul li {
  border-bottom: 1px solid #dee2e6;
}
.featured__block-item:first-child ul li:hover {
  font-weight: 600;
}
.featured__block-item ul li {
  padding: 24px;
  transition: 0.3s all linear;
  cursor: pointer;
}
.featured__block-item:nth-child(2) span,
.featured__block-item:nth-child(3) span {
  border-radius: 8px 0 0 0;
  background: #343a40;
  backdrop-filter: blur(16.60079002380371px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 132%; /* 31.68px */
  letter-spacing: -0.48px;
}
.featured__block-item:nth-child(2) ul li:nth-child(even),
.featured__block-item:nth-child(3) ul li:nth-child(even) {
  background: #e9ecef;
}
.featured__block-item:nth-child(2) ul li:nth-child(odd),
.featured__block-item:nth-child(3) ul li:nth-child(odd) {
  background: #f8f9fa;
}
.featured__block-item:nth-child(3) span {
  border-radius: 0 8px 0 0;
  background: var(--primary-color);
}
.featured__block-item:nth-child(1) ul li.hovered {
  font-weight: 600;
  padding: 30px 24px;
}
.featured__block-item:nth-child(2) ul li.hovered {
  color: #940303;
  font-weight: 600;
  background: rgba(148, 3, 3, 0.08);
  padding: 30px 24px;
}
.featured__block-item:nth-child(3) ul li.hovered {
  color: var(--primary-color);
  font-weight: 600;
  background: rgba(30, 95, 1, 0.12);
  padding: 30px 24px;
}

/* Contact US Page */
.contact__info {
  text-align: center;
  margin: 32px 0;
}
.contact__info--item {
  width: calc(33.33% - 12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--box-background);
  padding: 24px;
  border-radius: 12px;
  min-height: 220px;
  border: 2px solid transparent;
  transition: 0.3s all linear;
}
.contact__info--item:hover {
  border-color: var(--primary-color);
}
.contact__info--item h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  color: var(--text-color);
  margin: 32px 0 16px;
}

.contact__info--data {
  max-width: 250px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.4px;
  color: var(--heading-color);
}
.contact__form--inputs {
  gap: 24px 12px;
  margin-top: 32px;
  margin-bottom: 64px;
}
.half__input {
  width: calc(50% - 6px);
}
.full__input {
  width: 100%;
}
.contact__form {
  margin-top: 64px;
}

.contact__form--inputs label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.36px;
  color: var(--heading-color);
}
.contact__form--inputs input,
.contact__form--inputs textarea {
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #dee3e6;
  background: #fff;
  font-weight: 500;
  line-height: 150%;
  color: var(--text-color);
}
.contact__form--header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__form--header p {
  color: var(--text-color);
}

/* Service Detail Page */
.service__image p {
  margin-top: 24px;
  margin-bottom: 30px;
}
.service__detail--section {
  margin-top: -180px;
  margin-bottom: 64px;
  position: relative;
}
.service__content--left {
  width: calc(60% - 12px);
}
.service__content--right {
  width: calc(40% - 12px);
}
.service__main-block {
  padding: 20px;
  margin: 16px 0;
  background-color: #f8f9fa;
  border-radius: 8px;
}
.service__main-block:first-child {
  margin-top: 0;
}
.service__main-block h6 {
  color: var(--heading-color);
  margin-top: 16px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 124%;
  letter-spacing: -0.36px;
}
.service__main-block ul {
  padding-left: 25px;
}
.service__main-block ul li {
  position: relative;
  margin: 12px 0;
  color: var(--text-color);
}
.service__main-block ul li:before {
  content: "";
  background-image: url("../img/bullets.svg");
  width: 20px;
  height: 20px;
  position: absolute;
  background-size: contain;
  left: -25px;
  top: 3px;
}
.service__main-block p {
  font-weight: 400;
  line-height: 150%;
  font-size: 16px;
  color: var(--text-color);
}
.service__main-block p strong {
  font-weight: 600;
  margin-top: 24px;
  display: block;
}
.service__main-block h5 {
  font-size: 18px;
  color: var(--heading-color);
  font-style: normal;
  font-weight: 600;
  line-height: 124%;
  letter-spacing: -0.36px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.service__inner-block {
  padding: 20px;
  background-color: var(--box-background);
  border-radius: 8px;
  margin-top: 12px;
}
.service__main-block h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 24px */
  letter-spacing: -0.4px;
  color: var(--heading-color);
  margin-bottom: 16px;
}
.sidebar__form {
  background-color: var(--box-background);
  padding: 24px;
  border-radius: 8px;
}
.sidebar__form .wpcf7-textarea {
  max-height: 120px;
}
.sidebar__form .contact__form--inputs {
  margin-bottom: 0;
}
.sidebar__form p {
  color: var(--text-color);
  line-height: 150%;
  margin-top: 16px;
}
.about__algo {
  background-color: var(--primary-color);
  padding: 24px;
  border-radius: 8px;
  margin: 24px 0;
}
.about__algo h6 {
  font-weight: 600;
  line-height: 142%;
  font-size: 14px;
  color: #fff;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.about__algo h4 {
  font-weight: 600;
  line-height: 124%; /* 29.76px */
  letter-spacing: -0.48px;
  font-size: 24px;
  color: #fff;
}
.about__algo p {
  font-size: 14px;
  color: #ced4da;
  margin: 8px 0 32px;
  line-height: 150%;
}
.about__algo--button.primary__button {
  background: #fff;
  color: var(--primary-color);
  font-weight: 600;
}
.sidebar__blog .blog__posts {
  width: 100%;
  margin-top: 24px;
}
.services__grid {
  padding: 64px 0;
  background-color: var(--box-background);
}
.services__grid h2 {
  margin-bottom: 40px;
  text-align: center;
}
.services__grid .service__card {
  width: calc(33% - 12px);
}
.faq__section h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Product Page css */
.product__section {
  padding: 64px 0;
}
.single__product {
/*   background-color: var(--box-background); */
  padding: 12px;
  border-radius: 8px;
  width: calc(33% - 12px);
  position: relative;
}
.low__stock {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 10px;
  background: var(--primary-color);
  border-radius: 30px;
  font-size: 12px;
  color: #fff;
}
.product__img {
  width: 100%;
  height: 350px;
  background: #fff;
  border-radius: 6px;
  display: block;
}
.product__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.product__info {
  margin: 20px 0;
}
.product__title {
  font-size: 20px;
  line-height: 120%; /* 24px */
  letter-spacing: -0.4px;
  max-width: 260px;
	text-align: center;

/*   overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; */
}
.product__price {
  color: var(--text-color);
  font-weight: 500;
  line-height: 150%;
  font-size: 18px;
}
.product__cart-btn span {
  color: var(--primary-color);
  font-weight: 600;
  line-height: 100%;
}
.product__detail {
  padding: 64px 0;
}
.product__detail--imgs {
  width: calc(50% - 12px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.product__detail--text {
  width: calc(50% - 12px);
}
.product__detail--imgs a {
  padding: 16px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  width: calc(50% - 12px);
  height: 310px;
  object-fit: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__detail--imgs a img {
  object-fit: contain;
}
.product__description {
  margin: 32px 0;
}
.product__description p {
  color: var(--text-color);
}
.quantity__selector {
  border: 1px solid #bdbcbc;
  border-radius: 4px;
  width: max-content;
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 32px;
}

.quantity__selector button {
  width: 80px;
  height: 60px;
  background: #f8f8f8;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quantity__selector input {
  text-align: center;
  border-left: 1px solid #bdbcbc;
  border-right: 1px solid #bdbcbc;
  height: 60px;
  width: 160px;
}
.quantity__title {
  color: var(--heading-color);
  font-size: 18px;
  line-height: 124%;
  letter-spacing: -0.36px;
  font-weight: 600;
}
.pro__price {
  font-size: 18px;
  margin-top: 12px;
  display: block;
  color: var(--primary-color);
  font-weight: 600;
}

.contact__form--inputs br {
  display: none;
}

.services__loadmore-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px !important;
}
.sidebar__form .contact__form--inputs p {
  margin-top: 0;
}
.product__content {
  width: 100%;
}
a.woocommerce-product-gallery__trigger {
  display: none;
}
.woocommerce-product-gallery__wrapper {
  width: 100%;
}
.woocommerce-product-gallery {
  width: 100%;
}
.team__img img {
  border-radius: 8px;
}
.team__detail--section {
  padding: 20px 0px 60px;
}
.team__detail--content h3 {
  margin: 0 0 20px;
}
.team__detail--content h5 {
  margin: 20px 0px 0px;
  font-weight: 600;
  font-size: clamp(1rem, 0.875rem + 0vw, 1rem);
}
.header__menu li a:hover {
  color: var(--primary-color);
}
.header__menu li a,
.header__cta--phone span,
.header__cta--phone svg path {
  transition: 0.3s all linear;
}
.header__cta--phone:hover span {
  color: var(--primary-color);
}
.header__cta--phone:hover svg path {
  fill: var(--primary-color);
}
.about__img video {
  border-radius: 8px;
  width: 100%;
}
.team__description--text {
  margin: 35px auto 0px;
  text-align: center;
  max-width: 800px;
}
.woocommerce-product-search {
  margin: 0 auto -20px;
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 35px;
  border: 1px solid #000;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
}
.woocommerce-product-search .search-field {
  width: calc(100% - 110px);
  padding: 0 10px;
  height: 48px;
}
.woocommerce-product-search button {
  background-color: var(--primary-color);
  width: 100px;
  height: 48px;
  border-radius: 35px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.hero__banner {
  background-image: none !important;
  position: relative;
}
.hero-banner-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-banner-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__banner .site__container {
  position: relative;
  z-index: 1;
}
.hero-banner-video-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  inset: 0;
  z-index: 0;
}
.inner__banner.inner__video__banner {
  height: 450px;
}
.team__description--text.team__description--text---top {
  margin-bottom: 35px;
}

.services__cards a {
  display: block;
  width: calc(50% - 12px);
}
.services__grid .service__card {
  width: 100%;
}

.single .services__cards a,
.archive .services__cards a {
  width: 32%;
}

.service__card--content {
  /*     border-bottom: 1px solid #dee2e6; */
  padding: 32px 0 40px;
}

/* Overlay background */
.contact-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 2, 2, 0.64);
  /*     opacity: 0.7; */
  display: none;
  z-index: 998;
}

/* Popup box */
.contact-popup-box {
  max-width: 690px;
  width: 90%;
  background: #f6f6f7;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

/* Close button */
.contact-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

.contact-popup-box .full__input.full__input__message {
  display: none;
}

.contact-popup-title-area p {
  color: #6c757d;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 16px;
}

.form-group.privacy-policy p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.form-group.privacy-policy input {
  width: 18px;
  height: 18px;
}

.form-group.privacy-policy label {
  color: var(--grey-scale-343-a-40, #343a40);
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  margin-bottom: 0;
}

.contact-popup-box .contact__form--inputs {
  margin-bottom: 0;
}
.hero__banner .site__container {
  z-index: unset;
}

a.service__card--link-wrapper {
  background: #f8f9fa;
  border-radius: 8px;
  position: relative;
  padding-bottom: 32px;
}

/* .home a.service__card--link-wrapper .aicenter{
	border-top:unset;
} */

a.service__card--link-wrapper .aicenter span {
  color: var(--primary-1-e-5-f-01, #1e5f01);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
}

.home a.service__card--link-wrapper {
  padding-bottom: unset;
}

.home a.service__card--link-wrapper .aicenter {
  width: 100%;
}

.page-id-101 .about__section {
  padding-bottom: 0 !important;
}

.header__menu li {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-wrap: wrap;
}

.header__menu .sub-menu {
  width: 100%;
}

.service__block {
  background-color: #f8f9fa;
}
.service__text p {
  color: #6c757d;
}
.service__card--link.dflex.jcspacebetween.aicenter span {
  color: var(--primary-1-e-5-f-01, #1e5f01);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 16px */
}

ul.sub-menu li a {
  width: 100%;
}

.team__section .site__container {
  border-top: 1px solid #dee2e6;
  padding-top: 64px;
}

.home .team__section {
  padding-top: 0 !important;
}
.blog-all-btn {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.services__cards a {
  background: #f8f9fa;
}

.home .testimonial__section {
  padding-bottom: 0 !important;
}

body:has(.open) .menu-toggle span:first-child {
  display: none;
}

body:has(.open) .menu-toggle span:nth-child(2) {
  transform: rotate(45deg);
  position: relative;
  top: 6px;
}

body:has(.open) .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
}
html:has(.header__menu.open) {
  overflow: hidden;
}
.about__stats {
  align-items: flex-start;
}

.home .hero__banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.home .hero__banner .site__container {
  z-index: 2;
}

.current-menu-item {
  border-bottom: 1px solid #fff;
}

.blog__detail--left img {
  width: 100%;
  object-fit: cover;
}

.contact__info--data__map {
  display: block;
}

textarea {
  resize: none;
}

.contact__info.dflex {
  align-items: flex-start;
}

.single-service .inner__banner {
  height: 496px;
  padding-bottom: 150px;
}

.wc-block-cart__submit-container a,
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
  border-radius: 6px;
  background: #1e5f01;
  padding: 16px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
}
.woocommerce .woocommerce-customer-details address {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.woocommerce table.shop_table {
  margin-top: 20px;
}

.woocommerce ul.order_details {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
p.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
  color: #1e5f01;
  font-size: 22px;
  font-weight: 600;
  line-height: 150%;
}
section.woocommerce-order-details {
  margin-top: 30px;
}
h2.woocommerce-order-details__title,
h2.woocommerce-column__title {
  color: #1e5f01;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.8px;
}

.woocommerce-order-received header.post-header {
  display: none;
}

.woocommerce-order {
  margin: 50px 0;
}

.contact-popup-box .contact__form--inputs input {
  height: 40px;
  padding: 14px;
  font-size: 12px;
}

.primary__button {
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.primary__button:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
  border: 1px solid var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.primary__button:hover svg {
  filter: brightness(0) saturate(100%) invert(16%) sepia(92%) saturate(3590%)
    hue-rotate(78deg) brightness(94%) contrast(104%);
}

.read__more:hover span,
.product__cart-btn:hover span {
  color: #343a40;
}
.read__more:hover svg,
.product__cart-btn:hover svg {
  filter: brightness(0) saturate(100%) invert(18%) sepia(11%) saturate(660%)
    hue-rotate(169deg) brightness(95%) contrast(86%);
}

.footer__menu ul li {
  width: max-content;
}

.footer__menu ul li:hover:not(.current-menu-item):not(.current_page_item) {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-underline-offset: 8px;
}

.footer__menu ul li a {
  margin-bottom: 0;
}
a.product__cart-btn {
  width: max-content;
}

.search-results .inner__banner h1 {
  font-size: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about__algo .primary__button:hover {
  background: var(--primary-color);
  border: 1px solid #fff;
  color: #fff;
}

.about__algo .primary__button:hover svg {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(11%)
    hue-rotate(220deg) brightness(105%) contrast(103%);
}

.quantity__selector input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield;
}

/* Chrome, Edge, Safari ke arrows hide karne ke liye */
.quantity__selector input[type="number"]::-webkit-inner-spin-button,
.quantity__selector input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wc-block-cart__submit-container a,
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained {
  border: 1px solid transparent;
  outline: none !important;
  box-shadow: none !important;
}

.wc-block-cart__submit-container a:focus,
.wc-block-cart__submit-container a:active,
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:focus,
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:active {
  outline: none !important;
  box-shadow: none !important;
}
.wc-block-cart__submit-container a:hover,
button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover {
  background: #fff;
  color: #1e5f01;
  border: 1px solid #1e5f01;
  transition: all 0.3s ease-in-out;
}

.wc-block-components-checkout-return-to-cart-button:hover {
  color: #1e5f01;
}

.wc-block-components-checkout-return-to-cart-button:hover svg {
  filter: brightness(0) saturate(100%) invert(26%) sepia(26%) saturate(3107%)
    hue-rotate(68deg) brightness(95%) contrast(99%);
}

.wpcf7-form-control-wrap span.wpcf7-not-valid-tip:not(:nth-child(2)) {
  display: none;
}

.hero__content h1 span:not(:first-child) {
  display: none;
}

.footer__legal-menu ul {
  display: flex;
  gap: 24px;
}

.footer__legal-menu ul a {
  color: #adb5bd;
  display: block;
  font-size: 14px;
}
.footer__contacts {
  margin-bottom: 24px;
}
.footer__contacts a {
  color: #adb5bd;
  font-size: 14px;
  margin: 14px 0;
}
ul.footer__socials li a {
  margin-top: 0;
}
.footer__contacts a.footer__phone {
  flex-wrap: nowrap;
}

.single__product.out-of-stock {
  position: relative;
}

.single__product.out-of-stock:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  border-radius: 12px;
	z-index:999;
}
.single__product.out-of-stock:after {
  content: "Out of Stock";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
	z-index:9999;
}

div#vin-search-box {
  padding-top: 50px;
}
.search__block {
  display: flex;
  justify-content: center;
  padding: 10px;
  max-width: 100%;
  margin: auto;
  border: 1px solid #dee2e6;
  border-radius: 10px;
}

.search__block input {
  width: calc(100% - 155px);
}
.bundle-box ul {
  display: flex;
  gap: 10px;
}

.bundle-box ul img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 10px auto 10px;
}

.bundle-box ul li p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bundle-box ul li {
  border: 1px dashed #e9e9e9;
  padding: 10px 20px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.bundle-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
}

.bundles {
  display: flex;
  gap: 20px;
}
.bundle__product-title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.vin-search-cart-search .site__container {
  padding: 0px;
  max-width: 100%;
}
.vin-search-cart-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 50px 20px 0px;
}
.vin-search-cart-search {
  width: calc(100% - 140px);
}
.vin-search-cart-cart {
  width: 130px;
  padding: 10px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
}
.vin-search-cart-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.vin-search-cart-search #vin-search-box {
  padding: 0px;
}
.vin-search-cart-cart a svg path {
  fill: #fff;
}
.vin-search-cart-cart a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  padding: 18px 5px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  background-color: var(--primary-color);
  width: 100%;
  justify-content: center;
  border: 1px solid transparent;
}
#vin-results:empty {
  display: none !important;
}
.vin-search-cart-cart a:hover {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.vin-search-cart-cart a:hover svg path {
  fill: var(--primary-color);
}
.service__image img {
  border-radius: 20px;
  width: 100%;
  border: 12px solid #fff;
	background:#fff;
}

a.back__btn {
  display: block;
  width: max-content;
  margin: 10px auto 0px;
  color: #fff;
  padding: 5px 0;
  font-size: 14px;
  border-bottom: 1px solid #fff;
}
.single .service__card--img,
.post-type-archive-product .service__card--img {
  max-height: 230px;
}
.wp-block-woocommerce-empty-cart-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 0 100px;
  gap: 30px;
}

.related__blog-posts h2 {
  padding-bottom: 50px;
  text-align: center;
}

.related__blog-posts h2 {
  padding-bottom: 50px;
  text-align: center;
}
.related__blog-posts h2 {
  padding-bottom: 50px;
  text-align: center;
}
.related__blog-posts .single__blog-post {
  width: 33%;
  flex-direction: column;
}
.related__blog-posts .blog__posts {
  flex-direction: row;
  width: 100%;
}
.related__blog-posts .single__blog-img {
  width: 100%;
}
.related__blog-posts .single__blog-content {
  width: 100%;
}
.related__blog-posts .single__blog-img img {
  height: 300px;
}
.related__blog-posts {
  padding-bottom: 100px;
}
.team__page .team__meber:hover {
  border: 1px solid #000;
  padding: 20px;
}

.team__page .team__meber {
  transition: 0.3s all linear;
  border-radius: 10px;
}
.product__actions .quantity__selector button {
  width: 50px;
  height: 50px;
}
.product__actions .quantity__selector input {
  width: 80px;
  height: 50px;
}
.product__actions .quantity__selector {
  margin: 0;
}
.footer__map {
  padding: 50px 0 100px;
}

.single__product {
/*   border: 2px solid transparent; */
  transition: 0.3s all linear;
}
.single__product:hover {
/*   border-color: var(--primary-color); */
	background-color:var(--box-background);
}
.service__card--img {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.service__card:hover .service__card--img img {
  scale: 1.05;
}
.service__card .service__card--img img {
  transition: 0.3s all linear;
}
.product__img,
.single__blog-img {
  overflow: hidden;
}
.product__img img,
.single__blog-img img {
  transition: 0.3s all linear;
}
.single__product:hover .product__img img,
.single__blog-post:hover .single__blog-img img {
  scale: 1.05;
}

.wp-block-woocommerce-checkout-order-summary-coupon-form-block,
.wp-block-woocommerce-cart-order-summary-coupon-form-block {
  display: none !important;
}

.page-template-blog .pagination,
.archive .pagination {
  width: 100%;
  margin-top: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.page-template-blog .pagination a,
.archive .pagination a {
  text-decoration: underline;
}
a.single__blog-post:hover .post__title {
  color: var(--primary-color);
}
a.added_to_cart.wc-forward {
  order: 3;
}
.single__blog-post:hover {
  cursor: pointer;
}

.single__blog-post:hover .post__title {
  color: var(--primary-color);
}

.featured__blog-post a.featured__blog-image {
  display: block;
  overflow: hidden;
  transition: 0.3s all linear;
  max-height: 318px;
  margin-bottom: 16px;
}
.featured__blog-post:hover a.featured__blog-image img {
  scale: 1.05;
}
.featured__blog-post a.featured__blog-image img {
  transition: 0.3s all linear;
}
.product-cart-notice {
  margin-top: 50px;
}
.latest__news-btn {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.footer__info {
  display: flex;
  align-items: center;
}
.footer__info-text h2 {
  color: #fff;
  max-width: 800px;
  text-align: center;
}

.footer__info-text {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  width: 40%;
}

.footer__bg {
  display: flex;
  justify-content: center;
  padding: 100px 0 130px;
}

/* Team Card */
/* CARD */
.card {
  width: calc(25% - 24px);
  border-radius: 16px;
  perspective: 1200px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 420px;
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card.is-flipped .card-inner {
  transform: rotateY(180deg);
}

.face {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  backface-visibility: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  display: grid;
}

.face.front {
  grid-template-rows: 340px auto;
}

.face.back {
  transform: rotateY(180deg);
  grid-template-rows: auto 1fr auto;
}

/* IMAGE AREA */
.media {
  position: relative;
  height: 340px;
}

/* OUTER FRAME (static) */
.img-frame {
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 2px solid #16a34a;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 10px; /* space for animation */
}

/* ✅ THIS DIV ANIMATES */
.img-mask {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f2f4f7;
  transition: transform 0.22s ease; /* animation lives HERE */
}

/* IMAGE NEVER ANIMATES */
.img-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  display: block;
}

/* Hover animation on NEXT div */
.card:not(.is-flipped):hover .img-mask {
  transform: scale(0.95);
}

/* LinkedIn badge */
.li {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #16a34a;
  color: #fff;
  font-weight: 900;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(22, 163, 74, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  z-index: 2;
}

/* META */
.meta {
  padding: 14px 16px;
  display: grid;
  gap: 4px;
}

.name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.role {
  font-size: 13px;
  font-weight: 650;
  color: rgba(15, 23, 42, 0.7);
}

/* BACK */
.back-head {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
}

.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  font-weight: 900;
}

.back-body {
  padding: 14px 16px;
  display: grid;
  gap: 10px;
}

.row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
}
.simple__value {
    text-align: center;
    height: 300px;
    overflow: auto;
    font-size: 14px;
}
.label {
  font-size: 10.5px;
  font-weight: 900;
  text-transform: uppercase;
}
.value {
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.3;
}
.back-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
}
.btn {
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}
.team__slider .card.swiper-slide .face {
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
}
.team__slider {
    padding: 20px 10px;
}


.product__description * {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 400;
}
.wc-block-components-product-metadata__description *{
    font-size: 12px;
    color: var(--text-color);
}
.product__actions {
    display: none;
}

.product__info {
    flex-direction: column;
    gap: 10px;
}


span.product__link {
    color: var(--heading-color);
    font-weight: 700;
}

.footer__contacts a.footer__phone:hover svg rect {
    stroke-opacity: 0.5 !important;
}
.footer__socials li a:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

.pagination a {
    background: rgba(30, 95, 1, 1);
    padding: 16px 20px;
    border-radius: 6px;
    text-decoration: none !important;
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    border:1px solid rgba(30, 95, 1, 1);
	transition:all 0.3s ease-in-out;
}

.pagination a:hover{
    background:transparent;
    color: rgba(30, 95, 1, 1);
    border:1px solid rgba(30, 95, 1, 1);
	transition:all 0.3s ease-in-out;
}


.page-id-284 .inner__banner, .single-service .inner__banner {
	align-items: center !important;
	position:relative;
}
.service__card:hover .service__card--img img {
    scale: unset !important;
}

.page-id-284 .inner__banner::before, .single-service .inner__banner::before {
    content:'';
    position:absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
	  top: 0;
    bottom: 0;
	left:0;
	right:0;
}

.page-id-284 .inner__content, .single-service .inner__content {
    position: relative;
    z-index: 1;
}
.service__image img {
    max-height: 500px;
    object-fit: cover;
}




/* */

.service__card--img, .post-type-archive-product .service__card--img {
    transition: .3s all linear;
}
.service__card:hover .service__card--img {
    scale: 1.05;
}
.service__card {
    overflow: hidden;
}