/* Typography & Site Defaults */
:root {
  --theme-primary: #3E7742;
  --theme-secondary: #1C292C;
  --theme-tertiary: #333333;
  --theme-dark: #111517;
  --theme-light: #98b6b6;
  --theme-white: #ffffff;

  --section-spacing: 120px;

  /* Fonts */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-subheading: 'Poppins', sans-serif;
  --font-alt: 'Karla', sans-serif;
  --font-body: 'Karla', sans-serif;
  --font-btn: 'Poppins', sans-serif;

  --font-size-sm: clamp(15px, 0.6vw + 14.5px, 23px);
  --font-size-base: clamp(20px, 1.1vw + 13px, 26.666px);
  --font-size-md: clamp(18px, 0.971vw + 18.6375px, 56.58px);
  --font-size-md-lg: clamp(18px, 0.971vw + 18.6375px, 95.83px);
  --font-size-lg: clamp(30px, 1.602vw + 10.25px, 97.333px);
  --font-size-xl: clamp(42px, 2.0313vw + 13px, 178.85px);
  --font-size-xxl: clamp(55px, 27.5px + 4.3vw, 274px);

  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 300;
}

/* Typography */

h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxl);
  font-weight: 500;
  line-height: .8;
  /* letter-spacing: -0.01em; */
  margin: 0 0 0.5em;
  text-transform: capitalize;
}

.style-2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 300;
  line-height: .8;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

.style-3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-md);
  font-weight: 300;
  line-height: .8;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h2 {
  font-family: var(--font-subheading);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h2 b {
  font-family: var(--font-subheading);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h3 {
  font-family: var(--font-subheading);
  font-weight: 500;
  font-size: var(--font-size-lg);
  letter-spacing: 0;
  margin: 0 0 0.5em;
}


h4,
h5,
h6 {
  font-family: var(--font-subheading);
  font-weight: 500;
  font-size: var(--font-size-md);
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

p,
ol,
ul {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: 200;
  line-height: 1.08;
}

/* a tag edits */
p a,
li a,
dd a {
  font-weight: bolder;
  line-height: 1.2;
  cursor: pointer;
}

a {
    cursor: pointer !important;
}

/* p a {
    color: #839679 !important;
}

a:hover{
  color: var(--theme-dark) !important;
} */
/* 
.is-light-text a:hover{
    color: var(--theme-secondary) !important;
} */

.bg-primary p a,
.bg-primary li a,
.bg-primary dd a {
  color: white;
}

.bg-secondary a {
  color: var(--theme-primary);
}

ul {
  margin-left: 30px;
  list-style-type: square;
}

ul li::marker {
  color: var(--theme-primary);
}

ul.antilist {
    list-style-type: none;
    margin-left: 0;
}

li {
  font-size: (var(--font-size-sm));
  margin-bottom: 10px;
  line-height: 1.1;
}

li::before {
  color: (var(--theme-primary))
}

ol {
  margin-left: 55px;
}

/* li ul {
    list-style-position: inherit;
      line-height: .8;
} */

hr {
  border-top: 2px solid var(--theme-primary);
}

[class^="heading"],
[class*="heading"] {
  line-height: .8;
  letter-spacing: 0;
  font-weight: 600;
  margin: 0 0 0.5em;
}

[class^="heading"].margin-top,
[class*="heading"].margin-top {
  margin-top: 0.75em;
}

.heading-primary {
  font-family: var(--font-heading);
  font-size: var(--font-size-xxl);
  color: var(--theme-primary);
  text-transform: uppercase;
}

.heading-primary>span,
h2>span,
h1>span {
  color: var(--theme-secondary);
}

.heading-secondary {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  color: var(--theme-primary);
  text-transform: uppercase;
}

.heading-tertiary {
  font-family: var(--font-subheading);
  font-size: var(--font-size-md);
  color: var(--theme-primary);
  font-weight: 800;
}

/* Utility Classes */
.color-primary,
a.color-primary {
  color: var(--theme-primary);
  fill: var(--theme-primary);
}

.color-secondary,
a.color-secondary {
  color: var(--theme-secondary) !important;
  fill: var(--theme-secondary);
}

.color-tertiary,
a.color-tertiary {
  color: var(--theme-tertiary);
  fill: var(--theme-tertiary);
}

.font-size-sm {
  font-size: var(--font-size-sm);
}

.font-size-base {
  font-size: var(--font-size-base);
}

.font-size-md {
  font-size: var(--font-size-md);
}

.font-size-lg {
  font-size: var(--font-size-lg);
}

.font-size-xl {
  font-size: var(--font-size-xl);
}

.font-size-xxl {
  font-size: var(--font-size-xxl);
}

[class^="btn"] {
  line-height: .8;
  letter-spacing: normal;
  font-size: 18.6667px;
  font-weight: 500;
  font-family: var(--theme-btn);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 10px 35px;
  margin: 3px;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 40px;
  transition: all .3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}

[class^="btn"]:hover {
  transition: all .3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}

/* primary Button */
.btn-primary {
  background-color: var(--theme-primary);
  color: white !important;
}

.btn-primary:hover {
  background-color: var(--theme-secondary);
  color: white;
}

/* Outlined white button, hover secondary */
.btn-secondary {
  color: white !important;
  border: 2px solid white;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--theme-primary);
  color: white;
  border: 2px solid var(--theme-primary);
  cursor: pointer;
}

/* Contact Form Submit button */
.submit-btn {
  border-radius: 40px !important;
  font-family: var(--theme-btn) !important;
  font-weight: 500px !important;
  font-size: var(--theme-btn) !important;
}

.bg-primary {
  background-color: var(--theme-primary);
  color: white;
}

.bg-secondary {
  background-color: var(--theme-secondary);
  color: white;
}

.bg-tertiary {
  background-color: rgb(240, 249, 254);
}

.bg-primary hr,
.bg-secondary hr,
.bg-primary_gradient hr,
.bg-secondary_gradient hr {
  border-color: white;
}

.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-secondary h2,
.bg-secondary h3,
.bg-secondary h4,
.bg-primary_gradient h2,
.bg-primary_gradient h3,
.bg-primary_gradient h4,
.bg-secondary_gradient h2,
.bg-secondary_gradient h3,
.bg-secondary_gradient h4 {
  color: white;
}

.img-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.green-heading {
  color: var(--theme-primary);
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  line-height: .8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
}

/* left and right border lines on homepage */
.green-border {
  border-style: solid;
  border-color: var(--theme-primary);
  border-left-width: 1px;
  border-right-width: 1px;
}

@media (max-width: 767px) {
  .green-border {
    border-left-width: 0;
    border-right-width: 0;
    /* border-top-width: 1px;
    border-bottom-width: 1px;
    padding-top: 1.2em; */
  }
}

/* Arrow to the right CSS with circle bg */
.arrow-right {
  display: inline-block;
  background-color: #39A94A;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 0 10px white;
  width: 50px
}

.arrow-right a {
  text-decoration: none;
  color: #39A94A;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.arrow-right:hover {
  background-color: var(--theme-secondary);
  transition: all .3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}

@media (max-width: 991px) {
  .is-section-75 {
    height: 40vh !important;
  }
}

.powerforms-style09 ul {
  list-style: none !important;
}

/* Blog Styling */
.detail-description {
  font-size: var(--font-size-base);
}

body .blog-detail01 .detail-description p,
body .blog-detail01 .detail-description li {
  font-size: 0.9em;
  line-height: 1.35;
}

body .blog-detail01 .detail-description img {
  margin-bottom: 30px;
}

.blog-list01 .list-description {
  font-size: var(--font-size-sm);
  line-height: 1.1;
}

.job-title {
    font-family: Bebas Neue;
    font-size: 100px;
    font-weight: 400;
    line-height: 80px;
}

.products-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
}
.product {
    max-width: 325px;
    width: 100%;
    height: auto;
    border-radius: 15px 15px 0 0;
}
.product .pic {
    width: 100%;
    height: 300px;
    background-color: #3e7742;
    border-radius: 15px 15px 0 0;
}
.pic img {
    width: inherit;
    height: inherit;
    object-fit: contain;
    object-position: center;
    background-color: transparent;
}
.content {
    width: 100%;
    height: auto;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
}
.pricing {
    width: 100%;
    height: auto;
    background-color: #f1f1f1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.8rem;
    color: #1c292c;
}
.pricing h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}
.pricing p {
    font-size: 32px;
    font-weight: 300;
}
.pricing span {
    color: #28ad31;
}
.pricing .toggle-button {
    height: 2rem;
    border-radius: 20px;
    border: 1px solid #3e7742;
    color: #3e7742;
    font-size: 24px;
    font-weight: 300;
    padding: 0 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 500ms ease;
}
.pricing .toggle-button:hover {
    color: white;
    background-color: #3e7742;
}
.pricing .toggle-button.active {
    color: white;
    background-color: #3e7742;
}
.dropdown {
    width: inherit;
    max-height: 0;
    overflow: hidden;
    background-color: #f1f1f1;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.dropdown.active {
    max-height: 310px;
    opacity: 1;
}
.dropdown hr {
    width: 100%;
    border: 1px solid #000;
}
.dropdown .pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 0;
    font-size: 22px;
}
.pricing-table th {
    font-weight: 300;
}
.pricing-table tr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #000;
    padding: 10px;
}
.pricing-table tr:nth-last-child(1) {
    border-bottom: none;
}
.pricing-table tr td:nth-last-child(1) {
    color: #28ad31;
}














