/* ==================== [ Root CSS Start ] ==================== */
/* ==================== [ Core Colors ] ==================== */
:root {
  --white: #ffffff;
  --black: #000000;
  --transparent: #0000;
}

/* ==================== [ Brand / Theme ] ==================== */
:root {
  --primary: #3d8a46;
  --dark-primary: #20582d;
  --warning: #f7a200;
  --warning-dark: #f8bf02;
  --secondary: #757575;
  --dark: #0e1218;
  --light: #f6f6f6;
  --border: #dddddd;
  --header-bg: #ededed;
  --body: var(--white);
  --grey: #999999;
}

/* ==================== [ Fonts ] ==================== */
:root {
  --font-primary: "Outfit", sans-serif;
  --font-secondary: "Lexend Deca", sans-serif;
}

/* ==================== [ Layout / Container ] ==================== */
:root {
  --container: 1620px;
  --container-padding: 20px;
  --row-gutter-space: 30px;
}

/* ==================== [ Typography – Common ] ==================== */
:root {
  --a-color: var(--black);
  --a-hover-color: var(--primary);

  --marker-color: var(--primary);

  --blockquote-border-color: var(--primary);
  --blockquote-bg: var(--light);

  --pre-bg: var(--light);
  --pre-color: var(--black);

  --card-radius: 24px;
  --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ==================== [ Table ] ==================== */
:root {
  --table-border: var(--border);

  --table-th-bg: var(--primary);
  --table-th-color: var(--white);

  --table-td-bg: var(--transparent);
  --table-td-color: var(--black);
}

/* ==================== [ Font Sizes ] ==================== */
:root {
  --fs-12: 12px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-28: 28px;
  --fs-30: 30px;
  --fs-32: 32px;
  --fs-35: 35px;
  --fs-40: 40px;
  --fs-48: 48px;
}

/* ==================== [ Margins ] ==================== */
:root {
  --spacing-50: 50px;
}

/* ==================== [ Headings ] ==================== */
:root {
  --heading-color: var(--black);
  --heading-strong-color: var(--warning);
  --heading-font-family: var(--font-secondary);
  --heading-mb: 20px;
  --heading-fw: 600;

  --h1-fs: 200px;
  --h1-lh: 210px;

  --h2-fs: 60px;
  --h2-lh: 100%;

  --h3-fs: 50px;
  --h3-lh: 100%;

  --h4-fs: 30px;
  --h4-lh: 100%;

  --h5-fs: 26px;
  --h5-lh: 100%;

  --h6-fs: 20px;
  --h6-lh: 30px;
}

/* ==================== [ Root CSS End ] ==================== */

/* ==================== [ Brand Global CSS Start ] ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  color: var(--secondary);
  font-family: var(--font-primary);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  background: var(--body);
  overflow-x: hidden;
}

/* ==================== [ Brand Global CSS End ] ==================== */

/* ==================== [ Typography Start ] ==================== */
figure {
  margin: 0;
}

strong,
b {
  font-weight: 600 !important;
}

a,
input,
button,
textarea {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px var(--transparent) inset !important;
  -webkit-text-fill-color: var(--secondary) !important;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -moz-transition: background-color 5000s ease-in-out 0s;
  -ms-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
}

input:autofill,
textarea:autofill,
select:autofill {
  background-color: var(--transparent) !important;
  color: var(--secondary) !important;
}

a {
  color: var(--a-color);
  word-break: break-word;
  transition: all 0.3s ease-in-out;
}

a.active,
a:hover {
  color: var(--a-hover-color) !important;
}

p {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin-bottom: 20px;
}

ol,
ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

ol ol,
ol ul,
ul ol,
ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

ol li,
ul li {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

ol li::marker,
ul li::marker {
  color: var(--marker-color);
}

ul li:has(> ul),
ul li:has(> ol) {
  list-style-type: none;
}

blockquote {
  padding: 16px 16px 16px 24px;
  border-left: 5px solid var(--blockquote-border-color);
  margin-bottom: 20px;
  background-color: var(--blockquote-bg);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

pre {
  background-color: var(--pre-bg);
  padding: 16px;
  overflow: auto;
  font-family: inherit;
  border-radius: 12px;
  position: relative;
  color: var(--pre-color);
}

pre code {
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: inherit;
}

th,
td {
  border: 1px solid var(--table-border);
  padding: 8px 12px;
  text-align: left;
}

th {
  background-color: var(--table-th-bg);
  font-weight: 600;
  font-size: inherit;
  color: var(--table-th-color);
}

td {
  background-color: var(--table-td-bg);
  font-weight: 400;
  font-size: inherit;
  color: var(--table-td-color);
}

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

h1,
.h1 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h1-fs);
  line-height: var(--h1-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h2,
.h2 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h2-fs);
  line-height: var(--h2-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h3,
.h3 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h3-fs);
  line-height: var(--h3-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h4,
.h4 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h4-fs);
  line-height: var(--h4-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h5,
.h5 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h5-fs);
  line-height: var(--h5-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

h6,
.h6 > * {
  color: var(--heading-color);
  font-family: var(--heading-font-family);
  font-size: var(--h6-fs);
  line-height: var(--h6-lh);
  font-weight: var(--heading-fw);
  margin-bottom: var(--heading-mb);
}

hr {
  margin-block: 20px;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

textarea {
  resize: none;
}

.typography {
  padding-block: 120px;
}

.typography img {
  max-width: 300px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
}

.typography img.align-left {
  margin-right: 40px;
  float: left;
}

.typography img.align-right {
  margin-left: 40px;
  float: right;
}

.typography img.align-center {
  margin-inline: auto;
  display: block;
}

/* ==================== [ Typography End ] ==================== */

/* ==================== [ Common Start ] ==================== */
.row {
  margin-inline: calc(var(--row-gutter-space) / -2);
  row-gap: var(--row-gutter-space);
}

.row > * {
  padding-inline: calc(var(--row-gutter-space) / 2);
}

.img-cover * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==================== [ Common End ] ==================== */

/* ==================== [ Common Heading Start ] ==================== */
/* ==================== [ Common Heading End ] ==================== */

/* ==================== [ Button Start ] ==================== */
.btn {
  position: relative;
  width: fit-content;
  padding: 0 0 0 20px;
  text-align: center;
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: var(--fs-16);
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 10px;
  border: 0 !important;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 3;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.btn .box {
  position: relative;
  display: flex !important;
  align-items: center;
  padding: 15px 20px 15px 10px;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  height: calc(100% + 30px);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn .box::before {
  box-shadow: inset 6px 0px 2.5px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  content: "";
  top: 0;
  right: 100%;
  width: 22px;
  height: 100%;
  clip-path: inset(4px 0 4px 0);
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  z-index: -2;
}

.btn .box img {
  margin-bottom: 0;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn:is(:hover, :focus-visible, :active, .active) .box::before {
  right: 100%;
  height: 100%;
}

.btn:is(:hover, :focus-visible, :active, .active) .box img {
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -o-transform: rotate(225deg);
}

.btn-primary {
  color: var(--white);
  background: var(--transparent) !important;
  border-color: var(--primary);
}

.btn-primary::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(100% - 34px);
  height: 100%;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn-primary::after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 44px;
  height: 100%;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
}

.btn-primary .box::before {
  background-color: var(--warning);
}

.btn-primary:is(:hover, :focus-visible, :active, .active) {
  background-color: var(--transparent);
}

.btn-primary:is(:hover, :focus-visible, :active, .active)::before {
  width: calc(100% - 74px);
}

.btn-primary:is(:hover, :focus-visible, :active, .active)::after {
  width: 54px;
}

.btn-primary .box img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.btn-primary:is(:hover, :focus-visible, :active, .active) .box {
  margin-left: 40px;
  padding-left: 20px;
}

/* Warning */

.btn-warning {
  color: var(--black);
  background: var(--transparent) !important;
  border-color: var(--warning);
}

.btn-warning::before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(100% - 34px);
  height: 100%;
  background-color: var(--warning);
  transition: all 0.3s ease-in-out;
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.btn-warning::after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 44px;
  height: 100%;
  background-color: var(--warning);
  transition: all 0.3s ease-in-out;
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
}

.btn-warning .box::before {
  background-color: var(--primary);
}

.btn-warning:is(:hover, :focus-visible, :active, .active) {
  background-color: var(--transparent);
}

.btn-warning:is(:hover, :focus-visible, :active, .active)::before {
  width: calc(100% - 74px);
}

.btn-warning:is(:hover, :focus-visible, :active, .active)::after {
  width: 54px;
}

.btn-warning .box img {
  filter: brightness(1) invert(0);
  -webkit-filter: brightness(1) invert(0);
}

.btn-warning:is(:hover, :focus-visible, :active, .active) .box {
  margin-left: 40px;
  padding-left: 20px;
}

/* ==================== [ Button End ] ==================== */

/* ==================== [ Error 404 Start ] ==================== */
.error-404 {
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100dvh;
}

.error-404 .heading {
  text-align: center;
}

.error-404 .action * {
  width: fit-content;
  margin: 0 auto;
}

/* ==================== [ Error 404 End ] ==================== */

/* ==================== [ Extra Common Start ] ==================== */
.container-fluid,
.container {
  padding-inline: var(--container-padding);
  margin-inline: auto;
}

.swiper-linear .swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-tools {
  display: flex;
  align-items: center;
  gap: 15px;
}

.swiper-button {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.swiper-button:hover {
  background-color: var(--warning);
}

/* ==================== [ Extra Common End ] ==================== */

/* ==================== [ Header Start ] ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  background-color: var(--header-bg);
}

.header .navbar {
  padding: 0;
}

.header .header-group {
  position: relative;
  margin-inline: auto;
  padding: 10px 24px;
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: center;
  gap: 30px;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.header .header-group > * {
  text-wrap: nowrap;
}

.header .header-group .box {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--header-bg);
  z-index: -1;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.header .header-group .box::before {
  pointer-events: none;
  position: absolute;
  content: "";
  right: calc(100% - 1px);
  bottom: 0;
  width: 115px;
  height: 42px;
  background-image: url('data:image/svg+xml,<svg width="116" height="42" viewBox="0 0 116 42" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(%23clip0_91_25)"> <path d="M0 0L212.25 0V1L169.94 30.3865C159.053 37.9477 146.115 42 132.86 42H112.319C99.1081 42 86.2108 37.9745 75.3454 30.4597L49.4359 12.5403C38.5704 5.02552 25.6731 1 12.4622 1H0V0Z" fill="%23EDEDED"/> </g> <defs> <clipPath id="clip0_91_25"> <rect width="116" height="42" fill="white"/> </clipPath> </defs> </svg> ');
  background-repeat: no-repeat;
  background-size: contain;
}

.header .header-group .box::after {
  pointer-events: none;
  position: absolute;
  content: "";
  left: calc(100% - 1px);
  bottom: 0;
  width: 115px;
  height: 42px;
  background-image: url('data:image/svg+xml,<svg width="116" height="42" viewBox="0 0 116 42" fill="none" xmlns="http://www.w3.org/2000/svg"> <g clip-path="url(%23clip0_91_26)"> <path d="M116 0L-96.25 0V1L-53.9397 30.3865C-43.0532 37.9477 -30.1151 42 -16.8603 42H3.68091C16.8919 42 29.7892 37.9745 40.6546 30.4597L66.5641 12.5403C77.4296 5.02552 90.3269 1 103.538 1H116V0Z" fill="%23EDEDED"/> </g> <defs> <clipPath id="clip0_91_26"> <rect width="116" height="42" fill="white" transform="matrix(-1 0 0 1 116 0)"/> </clipPath> </defs> </svg> ');
  background-repeat: no-repeat;
  background-size: contain;
}

.header .header-group .navbar-brand {
  margin: 0;
  padding: 0;
  max-width: 54px;
}

.header .header-group .navbar-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header .header-group .navbar-nav .nav-link {
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: var(--fs-16);
  color: var(--black);
  opacity: 0.8;
}

.header
  .header-group
  .navbar-nav
  .nav-item:is(:hover, :focus-visible, :active, .active, .current-menu-item)
  .nav-link {
  color: var(--primary);
}

.header.scroll .header-group .navbar-nav .nav-link {
  animation: hideMenu 0.6s linear forwards;
}

.header .header-group .navbar-nav .nav-link,
.header.scroll .header-group:hover .navbar-nav .nav-link {
  animation: showMenu 1s linear forwards;
  -webkit-animation: showMenu 1s linear forwards;
}

@keyframes hideMenu {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes showMenu {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  40% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

.header.scroll .header-group .box {
  animation: boxHide 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6) 0.5s forwards;
}

.header .header-group .box,
.header.scroll .header-group:hover .box {
  animation: boxShow 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
}

@keyframes boxHide {
  0% {
    width: 100%;
  }

  100% {
    width: 94px;
  }
}

@keyframes boxShow {
  0% {
    width: 94px;
  }

  100% {
    width: 100%;
  }
}

/* ==================== [ Header End ] ==================== */

/* ==================== [ Floating Menu Start ] ==================== */
.floating-menu {
  display: none;
}

/* ==================== [ Floating Menu End ] ==================== */

/* ==================== [ Home Banner Start ] ==================== */
.home-banner {
  background: linear-gradient(180deg, #ededed 0%, #ffffff 100%);
  padding: 34px 20px 20px;
}

.home-banner .home-banner-container {
  background: linear-gradient(
    201.66deg,
    var(--dark-primary) 31.46%,
    var(--primary) 87.68%
  );
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  position: relative;
}

.home-banner .left-content {
  width: 50%;
  background: url("../images/svgs/home-banner-bg-shapes.svg") no-repeat center;
  background-size: cover;
  height: 900px;
  padding: 20px;
  padding-right: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home-banner .right-content {
  width: 50%;
  background: url("../images/thumb/home-banner-bg.jpg") no-repeat center left;
  background-size: cover;
  height: 900px;
}

.home-banner .left-content .content {
  width: 100%;
  max-width: 800px;
}

.home-banner .left-content .content .disc {
  max-width: 334px;
  font-weight: 300;
  font-size: var(--fs-20);
  line-height: 30px;
  color: var(--white);
  margin-bottom: 150px;
}

.home-banner .left-content .content .title {
  margin-left: auto;
  width: fit-content;
}

.home-banner .left-content .content .title * {
  font-weight: 500;
  font-size: var(--fs-35);
  line-height: 35px;
  text-transform: uppercase;
  text-align: end;
  color: var(--white);
}

.home-banner .left-content .content .action {
  margin-left: auto;
  width: fit-content;
}

.home-banner .branding {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: fit-content;
  text-wrap: nowrap;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.home-banner .branding::before {
  position: absolute;
  content: "";
  top: -99px;
  /* -99px, viewport: 991px -> -92px, viewport: 1920px */
  left: clamp(-60px, -35.2px + -1.29vw, -48px);
  /* -48px, viewport: 991px -> -60px, viewport: 1920px */
  width: clamp(113px, 69.26px + 4.41vw, 154px);
  /* 113px, viewport: 991px -> 154px, viewport: 1920px */
  height: clamp(164px, 100px + 6.46vw, 224px);
  /* 164px, viewport: 991px -> 224px, viewport: 1920px */
  background: url("../images/thumb/banner-title-wheat.png") no-repeat center;
  background-size: contain;
  transform: rotate(6.07deg);
}

.home-banner .branding > * {
  font-weight: 600;
  color: var(--white);
  line-height: 75%;
  text-transform: uppercase;
  font-size: clamp(90px, -6.01px + 9.69vw, 180px);
  /* 90px, viewport: 991px -> 180px, viewport: 1920px */
  font-weight: 600;
  margin-bottom: 0;
}

/* ==================== [ Home Banner End ] ==================== */

/* ==================== [ About Us Start ] ==================== */
.about-us {
  position: relative;
  padding: 150px 20px 0 20px;
}

.about-us .about-container {
  position: relative;
}

.about-us .about-container::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: var(--light);
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
  z-index: -1;
}

.about-us .about-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.about-us .left-content {
  flex-shrink: 0;
}

.about-us .left-content .title {
  margin-bottom: var(--spacing-50);
}

.about-us .left-content .title * {
  margin-bottom: 0;
}

.about-us .left-content .image {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 400/540;
  overflow: hidden;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.about-us .right-content {
  max-width: 1090px;
}

.about-us .right-content .disc {
  margin-bottom: 40px;
}

.about-us .right-content .disc * {
  margin-bottom: 0;
  font-size: var(--fs-30);
  font-weight: 400;
  color: var(--dark);
  line-height: 40px;
}

/* ==================== [ About Us End ] ==================== */

/* ==================== [ Our Services Start ] ==================== */
.our-services {
  position: relative;
  padding-inline: 20px;
}

.our-services .services-container {
  position: relative;
  padding: 30px 0 80px;
  overflow: hidden;
  background-color: var(--light);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.our-services .services-container::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: url("../images/thumb/our-services-bg.png") no-repeat center;
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.our-services .heading-container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: var(--spacing-50);
  position: relative;
  z-index: 1;
}

.our-services .services-container .heading {
  text-align: end;
}

.our-services .services-container .heading .title * {
  margin-bottom: 10px;
}

.our-services .services-container .heading .disc * {
  max-width: 724px;
  margin-bottom: 0;
  margin-left: auto;
}

.our-services .servicesSlider {
  overflow: visible;
}

.our-services .servicesSlider .swiper-slide {
  width: auto;
}

.our-services .servicesSlider .swiper-slide .card,
.product-card {
  padding: 30px;
  max-width: 450px;
  width: 100%;
  background-color: var(--white);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.our-services .servicesSlider .swiper-slide .card .image,
.product-card .product-image {
  margin-bottom: 20px;
  width: 100%;
  aspect-ratio: 390 / 250;
  overflow: hidden;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.our-services .servicesSlider .swiper-slide .card .content .title *,
.product-card .content .title * {
  font-weight: 500;
  margin-bottom: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.our-services .servicesSlider .swiper-slide .card .content .title *:hover {
  color: var(--primary);
}

.our-services .servicesSlider .swiper-slide .card .content .disc *,
.product-card .content .disc * {
  color: var(--secondary);
  margin-bottom: 20px;
}

.our-services .servicesSlider .swiper-slide .card .content .action *,
.product-card .content .action * {
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--primary);
}

.our-services .servicesSlider .swiper-slide .card .content .action *:hover,
.product-card .content .action *:hover {
  color: var(--warning);
}

/* ==================== [ Our Services End ] ==================== */

/* ==================== [ Our Vision, Mission Start ] ==================== */
.vision-mission {
  position: relative;
  padding: 150px 20px 0;
  overflow-x: clip;
}

.vision-mission .vision-mission-wrapper {
  position: relative;
}

.vision-mission .vision-mission-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  right: 23.72%;
  max-width: 471px;
  width: 100%;
  aspect-ratio: 471 / 757;
  background: url("../images/svgs/vision-mission-bg.svg") no-repeat center;
  background-size: cover;
  z-index: -1;
}

.vision-mission .vision-mission-wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(180deg, #1d5029 0%, #21572d 100%);
  z-index: -1;
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
}

.vision-mission .vision-mission-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vision-mission .content {
  max-width: 955px;
  width: 100%;
}

.vision-mission .content .heading {
  margin-bottom: 60px;
}

.vision-mission .content .heading .title * {
  margin-bottom: 20px;
}

.vision-mission .content .heading .disc * {
  margin-bottom: 0;
}

.vision-mission .content .part-group {
  max-width: 768px;
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-inline: auto;
}

.vision-mission .content .part-group > * {
  height: auto;
}

.vision-mission .content .part-group .part {
  width: 100%;
}

.vision-mission .content .part-group .part .title * {
  color: var(--primary);
  margin-bottom: 20px;
}

.vision-mission .content .part-group .part .disc * {
  margin-bottom: 0;
}

.vision-mission .content .part-group .seprator {
  width: 1px;
  background-color: var(--border);
}

.vision-mission .image {
  max-width: 557px;
  width: 100%;
  aspect-ratio: 557 / 831;
}

/* ==================== [ Our Vision, Mission End ] ==================== */

/* ==================== [ Why Choose Us Start ] ==================== */
.why-choose-us {
  position: relative;
  padding: 0 20px;
}

.why-choose-us .choose-wrapper {
  position: relative;
  padding: 30px 0 80px;
  background: linear-gradient(180deg, #21572d 0%, #3c8845 100%);
  border-radius: 0 0 20px 20px;
  -webkit-border-radius: 0 0 20px 20px;
  -moz-border-radius: 0 0 20px 20px;
  -ms-border-radius: 0 0 20px 20px;
  -o-border-radius: 0 0 20px 20px;
}

.why-choose-us .heading {
  position: relative;
  text-align: center;
  max-width: 750px;
  margin-inline: auto;
  margin-bottom: var(--spacing-50);
}

.why-choose-us .heading .title *:not(strong) {
  color: var(--white);
  margin-bottom: 20px;
}

.why-choose-us .heading .disc * {
  color: var(--white);
  margin-bottom: 0;
}

.why-choose-us .card-group {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.why-choose-us .card-group .card {
    flex: 0 0 calc(25% - 26px);
  position: relative;
  height: auto;
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(221, 221, 221, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.why-choose-us .card-group .card .title * {
  margin-bottom: 20px;
  color: var(--white);
  font-weight: 500;
}

.why-choose-us .card-group .card .disc * {
  margin-bottom: 0;
  color: var(--white);
}

.why-choose-us .card-group .card .icon {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.why-choose-us .card-group .card:hover .icon {
  opacity: 1;
}

/* ==================== [ Why Choose Us End ] ==================== */

/* ==================== [ Country We Serve Start ] ==================== */
.country-serve {
  position: relative;
  padding: 150px 0;
}

.country-serve .heading {
  max-width: 955px;
  margin-bottom: 30px;
}

.country-serve .map-group {
  width: 100%;
}

.country-serve .map-group .map {
  width: fit-content;
  position: relative;
}

.country-serve .map-group .map .map-image img,
.country-serve .map-group .map .map-image {
  width: 100%;
  height: auto;
}

.country-serve .counter-group {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.country-serve .counter-group .box {
  padding-bottom: 28px;
  position: relative;
}

.country-serve .counter-group .box::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: var(--warning);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.country-serve .counter-group .number {
  min-width: 150px;
}

.country-serve .counter-group .number * {
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(201.66deg, #20582d 31.46%, #3d8a46 87.68%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
}

.country-serve .counter-group .title * {
  font-weight: 400;
  font-size: var(--fs-20);
  color: var(--black);
  margin-bottom: 0;
}

.country-serve .seprator {
  width: 1px;
  background-color: var(--border);
}

/* ==================== [ Country We Serve End ] ==================== */

/* ==================== [ Our Skills Start ] ==================== */
.our-skills-wrapper {
  margin: 0 20px;
  background: var(--light);
  padding: 100px 0;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  position: relative;
  /*max-width: 1880px;*/
  overflow: hidden;
}

.our-skill-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.our-skill-bg * {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.our-skils-inner {
  position: relative;
  max-width: 1520px;
  margin: 0 auto;
}

/*.our-skils-inner .row {*/
/*  align-items: center;*/
/*}*/

.our-skils-inner .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.our-skils-inner .disc {
  max-width: 756px;
}
.our-skils-inner .disc * {
  color: var(--secondary);
  margin: 0;
  font-size: var(--fs-20);
  line-height: 30px;
}

.our-skils-stack {
  max-width: 1035px;
}

.our-skils-stack .our-skils-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 16px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
}
.our-skils-item .block-title {
  max-width: 348px;
  width: 31%;
}
.our-skils-item .block-title * {
  font-size: var(--fs-22);
  line-height: 32px;
  margin: 0;
  font-weight: 500;
  color: var(--black);
}

.our-skils-item .disc {
  max-width: 465px;
  width: 100%;
  /* padding-left: 190px;
	border-left: 1px solid #F8BF02; */
}

.our-skils-item .disc * {
  font-size: var(--fs-18);
  line-height: 28px;
  text-align: right;
}

.our-skils-stack .our-skils-item:hover {
  background: #fff;
}
.image-block {
  max-width: 410px;
}
.image-block * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.divider {
  width: 1px;
  height: 45px;
  background: #f8bf02;
}

/* ==================== [ Our Skills End ] ==================== */

.contact-us {
  padding: 20px 0 150px;
  overflow: hidden;
}

.contact-us-inner {
  position: relative;
}

.contact-us-inner .row {
  max-width: 1420px;
  margin: 0 auto;
  gap: 0px;
}

.contact-left {
  max-width: 412px;
}

.contact-left .disc * {
  font-size: var(--fs-20);
  line-height: 30px;
}

.contact-right form {
  max-width: 900px;
  margin-left: auto;
}

.contact-right form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-right form .form-group .form-label {
  font-size: var(--fs-20);
  color: var(--black);
  line-height: 150%;
  font-weight: 500;
}

.contact-right form .form-group .form-control {
  font-size: 20px;
  line-height: 150%;
  color: var(--grey);
  padding: 10px 30px;
  border: 1px solid var(--border);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.contact-right form .form-group .form-control:focus {
  box-shadow: unset;
}

/* .contact-right form .form-group::after {
  content: "";
  position: absolute;
  top: 88px;
  left: 30px;
  width: 56px;
  height: 2px;
  background: #f8bf02;
} */

.contact-right form .form-group .form-control::placeholder {
  color: var(--grey);
  background: transparent;
}

.contact-right form .form-group textarea {
  min-height: 130px;
  margin-bottom: 0px;
}
.contact-right form .form-group:has(textarea)::after {
  top: 100%;
}

.united-global {
  position: absolute;
  bottom: -65px;
  margin: 0 auto;
  width: 100%;
  z-index: -1;
}
.united-global * {
  font-size: clamp(30px, -4px + 10.625vw, 200px);
  line-height: 100%;
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--light);
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Gallery Start */
.gallery-main {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 120px;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.card {
  overflow: hidden;
  border-radius: 20px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s;
}

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

.card1 {
  grid-column: span 1;
  grid-row: span 2;
}

.card2 {
  grid-column: span 2;
  grid-row: span 2;
}

.card3 {
  grid-column: span 1;
  grid-row: span 3;
}

.card4 {
  grid-column: span 1;
  grid-row: span 2;
}

.card5 {
  grid-column: span 2;
  grid-row: span 2;
}

.card6 {
  grid-column: span 1;
  grid-row: span 1;
}

.card7 {
  grid-column: span 1;
  grid-row: span 2;
}

.card8 {
  grid-column: span 1;
  grid-row: span 1;
}

.card9 {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery {
  padding: 180px 0 223px 0;
  position: relative;
}

.gallery-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 130px;
  bottom: 0;
}

.gallery-bg * {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery .heading {
  max-width: 756px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.gallery .title {
  text-align: center;
}
.gallery .disc * {
  font-size: var(--fs-20);
  line-height: 30px;
  text-align: center;
}
/* Gallery End */

/* Footer Start */

.footer-wrapper {
  background: linear-gradient(180deg, #21572d 0%, #3c8845 100%);
  margin: 0 20px 34px 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

.footer-brand .disc {
  margin: 20px 0;
}

.footer-brand .disc * {
  font-size: var(--fs-18);
  line-height: 26px;
  color: var(--white);
}

.social-icons ul {
  margin: 0;
  padding: 0;
  display: flex;
}

.footer-brand ul li {
  list-style: none;
}
.social-icons ul li {
  margin-right: 26px;
}
.social-icons ul li a:hover img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(55%) saturate(1111%)
    hue-rotate(2deg) brightness(104%) contrast(98%);
}

.social-icons ul li a {
  border: 0px !important;
  padding-right: 0;
}
.footer-brand {
  padding: 122px 148px 80px 80px;
  max-width: 485px;
}

.footer-main {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-navigation {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 361px;
}

.contact-navigation .contact-navigation-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 30px;
}

.contact-navigation > *:last-child {
  border-bottom: 0px;
}

.contact-navigation .contact-navigation-item .disc * {
  line-height: 100%;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.contact-navigation .contact-navigation-item .detail * {
  color: var(--white);
  text-align: center;
  margin: 0;
}

.contact-navigation > *:last-child {
  border: 0px;
}
.contact-navigation > *:last-child ul {
  flex-direction: column;
  justify-content: center;
  gap: 0px;
}
.contact-navigation > *:last-child ul li {
  text-align: center;
}
.contact-navigation > *:last-child ul li a {
  border-right: 0px;
  padding-right: 0px;
}

.contact-navigation ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 10px;
}

.footer ul li {
  list-style-type: none;
}

.footer ul li:last-child a {
  border-right: 0px;
}
.footer ul li a {
  text-decoration: unset;
  padding-right: 15px;
  border-right: 1px solid #f8bf02;
  font-size: 16px;
  line-height: 20px;
  color: var(--white);
}

.footer ul li a:hover {
  color: var(--warning);
}

.lets-talk-wrap {
  width: 100%;
}
.lets-talk-wrap .lets-talk {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 36px;
  gap: 22px;
  padding: 30px 80px 16px 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  height: 68.5%;
}

.lets-talk-wrap ul {
  margin: 0;
  padding: 23px 80px 23px 23px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 30px;
  height: 31%;
}

.lets-talk-wrap .lets-talk * {
  font-size: clamp(24px, 4.8px + 6vw, 120px);
  line-height: 100%;
  font-family: var(--font-secondary);
  font-weight: 500;
  color: var(--white);

  text-transform: uppercase;
  margin: 0;
}

.lets-talk-wrap .lets-talk .line {
  background: #f8bf02;
  width: 110px;
  height: 1px;
  display: inline-flex;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom .disc {
  padding: 30px 0px 30px 75px;
}
.footer-bottom .disc * {
  margin: 0;
  line-height: 26px;
  color: var(--white);
}

.footer-bottom .site-dev {
  display: flex;
  padding: 30px 0;
}

.footer-bottom .site-dev p {
  gap: 9px;
  display: flex;
  margin: 0;
}
.footer-bottom .site-dev * {
  color: var(--white);
}

.footer-bottom ul {
  display: flex;
  padding: 30px 80px 30px 30px;
  margin: 0;
  column-gap: 40px;
}

.footer-bottom ul li a {
  border: 0px;
  font-size: var(--fs-20);
  line-height: 100%;
  text-transform: uppercase;
  padding: 0;
}

/* Footer End */

/* product listing css start */

/* ===========================
   HERO
=========================== */

.product-hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  width: 100%;
}

.hero-content .sub-title {
  color: var(--warning);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content h1 {
  margin-top: 15px;
  font-size: var(--h2-fs);
  font-weight: 700;
    line-height: normal;
margin-bottom: 5px;
}

.breadcrumb-wrap {
  margin-top: 0px;
}

.breadcrumb-wrap a,
.breadcrumb-wrap span {
  color: var(--white);
  text-decoration: none;
}

/* ===========================
   LISTING
=========================== */

.product-listing {
  padding: 100px 0;
}

/* ===========================
   CARD
=========================== */

.product-card {
  max-width: unset;
}

/* ===========================
   SIDEBAR
=========================== */

.sidebar-widget {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
  position: sticky;
  top: 120px;
}

.widget-title h3 {
  font-size: var(--fs-35);
  margin-bottom: 25px;
  position: relative;
}

.widget-title h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: var(--primary);
  margin-top: 15px;
}

.product-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-links li {
  margin-bottom: 20px;
}

.product-links li:last-child {
  margin-bottom: 0;
}

.product-links a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.product-links img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.product-links span {
  color: var(--dark);
  font-size: var(--fs-18);
  font-weight: 500;
  transition: 0.3s;
}

.product-links a:hover span {
  color: var(--warning);
}

/* Breadcrumb */


.breadcrumb {
  background: transparent;
  margin: 0;
}

.breadcrumb-item {
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--heading-strong-color); /* theme yellow */
}

.breadcrumb-item.active {
  color: var(--heading-strong-color); /* active page */
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}

/* ===========================
   PRODUCT DETAIL
=========================== */

.product-detail-section {
  padding: 100px 0;
}

.product-detail-image {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 40px;
}

.product-detail-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.product-detail-content h2 {
  font-size: var(--h3-fs);
  margin-bottom: 20px;
}

.product-detail-content h3 {
  font-size: var(--h5-fs);
  margin: 40px 0 20px;
}

.product-detail-content p {
  margin-bottom: 10px;
  line-height: 1.9;
}

.feature-list {
  padding-left: 20px;
}

.feature-list li {
  margin-bottom: 12px;
}

.product-spec-table {
  border: 1px solid var(--border);
}

.product-spec-table th {
  width: 35%;
  background: var(--primary);
  color: var(--white);
  padding: 15px;
}

.product-spec-table td {
  padding: 15px;
  border-color: var(--border);
}

.product-action {
  margin-top: 40px;
}
.product-detail-form form {
  margin: auto;
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}
.product-detail-form form .wpcf7-response-output {
    margin: 0px;
border-color: transparent !important;
padding: 0px;
    color: #dc3232;
font-weight: normal;
}
