@charset "UTF-8";
/*border-radius*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  font-variant-numeric: lining-nums;
  font-feature-settings: "pnum" on, "lnum" on;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: #FFFFFF;
}
@media (max-width: 1600px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
}

main {
  width: 100%;
}
@media (max-width: 992px) {
  main {
    padding-top: 100px !important;
  }
}

select option {
  color: black !important;
}

.btn,
a.btn,
.button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  background-color: #3A7F4F;
  color: #FFFFFF;
  gap: 1em;
  outline: 0;
  padding-left: 1em;
  padding-right: 1em;
  height: 54px;
  border-radius: 80px;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Paytone One", sans-serif !important;
  outline: 0 !important;
  border: 0;
}
.btn:hover,
a.btn:hover,
.button:hover {
  background-color: #1F4C2D;
}
.btn svg,
a.btn svg,
.button svg {
  width: 1.375em;
  height: 1.375em;
}

@property --btn-angle {
  syntax: "<angle>";
  initial-value: 90deg;
  inherits: false;
}
.btn.brown-btn {
  color: white;
  background: linear-gradient(var(--btn-angle), #603B21 0%, #815E45 100%);
  transition: --btn-angle 0.3s ease;
  border: 0 !important;
}
.btn.brown-btn:hover {
  --btn-angle: 190deg;
}

.btn.brown-border-btn {
  border: 2px solid transparent;
  color: white;
  background: linear-gradient(90deg, #603B21 0%, #815E45 100%) padding-box, linear-gradient(90deg, #603B21 0%, #815E45 100%) border-box;
}
.btn.brown-border-btn:hover {
  color: #603B21;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #603B21 0%, #815E45 100%) border-box;
}

.btn.white-brown-border-btn {
  background-color: transparent;
  color: #603B21;
  border: 2px solid #603B21;
}
.btn.white-brown-border-btn:hover {
  background-color: #603B21;
  color: white;
}

.btn.green-btn {
  background-color: #FFFFFF;
  border: 2px solid #9DBD78;
  color: #9DBD78;
}
.btn.green-btn:hover {
  background-color: #9DBD78;
  color: #FFFFFF;
}
.btn.green-btn:hover .button-icon svg {
  filter: brightness(0) invert(1);
}

.btn.white-btn {
  background-color: #FFFFFF;
  color: #3A7F4F;
  border: 2px solid white;
}
.btn.white-btn:hover {
  background-color: #3A7F4F;
  color: #FFFFFF !important;
}
.btn.white-btn:hover .button-icon svg {
  filter: brightness(0) invert(1);
}

.btn.black-white-btn {
  background-color: #FFFFFF;
  color: black;
}
.btn.black-white-btn:hover {
  background-color: black;
  color: #FFFFFF !important;
}
.btn.black-white-btn:hover .button-icon svg {
  filter: brightness(0) invert(1);
}

.button-icon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-icon svg {
  height: 18px !important;
}

h1 {
  font-weight: 400;
  font-size: 4.125em;
  line-height: 1.0588;
  margin-top: 12px;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 3.75em;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 3.5em;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 3em;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 2.2em;
  }
}

article.type-page {
  border: 0;
}

h2 {
  font-weight: 400;
  font-size: 2.625em;
  line-height: 1.1429;
}
@media (max-width: 575px) {
  h2 {
    font-size: 2em;
  }
}

h3 {
  font-weight: 400;
  font-size: 1.625em;
  line-height: 1.5385;
}
@media (max-width: 1600px) {
  h3 {
    font-size: 1.45em;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 1.3em;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.2em;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 1em;
  }
}

h4 {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
}

.blue {
  color: #3A7F4F;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .blue {
    font-size: 14px;
  }
}

.white-span {
  color: white;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .white-span {
    font-size: 14px;
  }
}

.blue-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.white-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ds_bg_vector {
  background: url("/wp-content/uploads/2025/06/background-vector.svg") center center;
  background-size: cover;
}

input,
textarea, select {
  width: 100%;
  border: 2px solid #ddd;
  background-color: #fff;
  border-radius: 10px !important;
  padding: 15px 25px;
  font-size: 14px;
  outline: none;
  height: 50px;
  box-sizing: border-box;
  transition: all 0.2s;
  color: #111;
  font-weight: 600;
  margin: 0;
}
input::placeholder,
textarea::placeholder, select::placeholder {
  color: #333;
  font-weight: 600;
}
input:focus,
textarea:focus, select:focus {
  border-color: #3A7F4F;
}

textarea {
  height: 9em;
}

a {
  color: inherit;
}

section {
  margin-bottom: 6em;
}

body:not(.home) h1 a {
  text-decoration: none;
  color: currentColor;
}

.ds_contact_section iframe {
  height: 27em;
  border: 1px solid #3A7F4F;
  border-radius: 1.25em;
}

main ul {
  list-style: none;
}

body.error404 main#main {
  padding: 0;
}
body.error404 .error-404-wrapper > div {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  text-align: center;
  align-items: center;
}
body.error404 .error-404-wrapper > div h1 {
  font-size: 6em;
  margin-bottom: 0;
}

.page-template-default h2 {
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

p.red_text {
  color: red;
  font-size: 0.8em;
  font-weight: 700;
  text-align: end;
}

html.scroll {
  height: 100%;
  overflow: hidden;
}

.ds_about > .container .wp-block-columns {
  margin-bottom: 2em;
}
.ds_about > .container .wp-block-columns img {
  border-radius: 1.25em;
}

.text-icon-link {
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: underline;
  transition: all 0.3s;
}
.text-icon-link:hover {
  color: #3A7F4F;
}

.lightgrey-section {
  padding-top: 124px;
  padding-bottom: 124px;
  background-color: #FFFAF3;
}

.current-menu-item a {
  color: #3A7F4F !important;
}

.header-img-section {
  position: relative;
  height: 320px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.15);
}
@media (max-width: 600px) {
  .header-img-section {
    height: 200px;
  }
}
.header-img-section::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 80px;
  height: 80px;
  width: 80px;
  background-image: url("/wp-content/uploads/2025/12/Group-7.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1600px) {
  .header-img-section::before {
    top: 24px;
    left: 24px;
  }
}
@media (max-width: 992px) {
  .header-img-section::before {
    height: 64px;
    width: 64px;
  }
}
@media (max-width: 600px) {
  .header-img-section::before {
    display: none;
  }
}
.header-img-section::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 340px;
  height: 56px;
  width: 56px;
  background-image: url("/wp-content/uploads/2025/12/Vector-1-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1600px) {
  .header-img-section::after {
    top: unset;
    bottom: 24px;
    right: 24px;
  }
}
@media (max-width: 992px) {
  .header-img-section::after {
    height: 64px;
    width: 64px;
  }
}
@media (max-width: 600px) {
  .header-img-section::after {
    height: 40px;
    width: 40px;
  }
}

.heading-between-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.heading-between-wrapper h2 {
  margin-top: 20px;
}

.normal-h2 {
  margin-top: 20px;
}

.first-section-without-img, .content-area {
  margin-top: 108px;
}

.header-img-section h1 {
  font-weight: 400;
}

/*border-radius*/
/*utilities*/
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.d-none {
  display: none !important;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row-small {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

@media (min-width: 576px) {
  .container, .container-sm, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1380px;
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.row-small .col-1, .row-small .col-2, .row-small .col-3, .row-small .col-4, .row-small .col-5, .row-small .col-6, .row-small .col-7, .row-small .col-8, .row-small .col-9, .row-small .col-10, .row-small .col-11, .row-small .col-12, .row-small .col, .row-small .col-auto, .row-small .col-sm-1, .row-small .col-sm-2, .row-small .col-sm-3, .row-small .col-sm-4, .row-small .col-sm-5, .row-small .col-sm-6, .row-small .col-sm-7, .row-small .col-sm-8, .row-small .col-sm-9, .row-small .col-sm-10, .row-small .col-sm-11, .row-small .col-sm-12, .row-small .col-sm, .row-small .col-sm-auto, .row-small .col-md-1, .row-small .col-md-2, .row-small .col-md-3, .row-small .col-md-4, .row-small .col-md-5, .row-small .col-md-6, .row-small .col-md-7, .row-small .col-md-8, .row-small .col-md-9, .row-small .col-md-10, .row-small .col-md-11, .row-small .col-md-12, .row-small .col-md, .row-small .col-md-auto, .row-small .col-lg-1, .row-small .col-lg-2, .row-small .col-lg-3, .row-small .col-lg-4, .row-small .col-lg-5, .row-small .col-lg-6, .row-small .col-lg-7, .row-small .col-lg-8, .row-small .col-lg-9, .row-small .col-lg-10, .row-small .col-lg-11, .row-small .col-lg-12, .row-small .col-lg, .row-small .col-lg-auto, .row-small .col-xl-1, .row-small .col-xl-2, .row-small .col-xl-3, .row-small .col-xl-4, .row-small .col-xl-5, .row-small .col-xl-6, .row-small .col-xl-7, .row-small .col-xl-8, .row-small .col-xl-9, .row-small .col-xl-10, .row-small .col-xl-11, .row-small .col-xl-12, .row-small .col-xl, .row-small .col-xl-auto {
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.bi {
  fill: currentColor;
}

abbr[title], abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre, code, kbd, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

.text-uppercase {
  text-transform: uppercase;
}


/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
@media (max-width: 1199px) {
  .newsletter .newsletter_card .wpcf7 form p label {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .newsletter .newsletter_card {
    padding: 2.5em 2em 1.6em;
  }
}
@media (max-width: 575px) {
  .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }
}
/*border-radius*/
/*header - page top margin fix*/
main {
  padding-top: 156px;
  min-height: calc(100vh - 51.35em);
}
@media (max-width: 991px) {
  main {
    min-height: unset;
  }
}

#masthead {
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2509803922);
/*   position: fixed; */
  z-index: 999;
  transition: 0.4s all;
  width: 100%;
  background-color: white;
  padding: 16px 0;
}
#masthead .header-horizontal {
  display: flex;
  gap: 32px;
}
#masthead .header-horizontal .navbar-brand {
  display: flex;
  align-items: center;
}
#masthead .header-horizontal .navbar-brand figure {
  display: flex;
  align-items: center;
}
#masthead .ds_logo_main {
  height: 123px;
  transition: all 0.3s;
}
#masthead .navbar #nav-icon3 {
  display: none;
}
#masthead .navbar #main-nav {
  height: 100%;
}
#masthead .navbar #main-nav ul {
  display: flex;
  align-items: stretch;
  margin: auto;
  list-style: none;
  height: 100%;
  gap: 2em;
}
#masthead .navbar #main-nav ul li a {
  text-decoration: none;
  color: #000000;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s all;
  font-weight: 700;
}
#masthead .navbar #main-nav ul li a:hover {
  color: #3A7F4F;
}
#masthead .navbar #main-nav ul li.menu-item-has-children {
  z-index: 1;
}
#masthead .navbar #main-nav ul li.menu-item-has-children:hover .ul-wrap {
  pointer-events: all;
  opacity: 1;
}
#masthead .navbar #main-nav ul .current-menu-item > a, #masthead .navbar #main-nav ul .current-menu-parent > a {
  color: #3A7F4F;
  border-top: 3px solid #3A7F4F;
}
#masthead .ds_wrapper_menu_main {
  position: relative;
  z-index: 9999;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  transition: 0.4s all;
}
#masthead .ds_wrapper_menu_main .header-name-span {
  font-weight: 400;
  font-family: "Paytone One", sans-serif;
  font-size: 28px;
}
#masthead .ds_wrapper_menu_main .navbar-brand {
  padding: 0.75em 0;
}
#masthead .ds_wrapper_menu_main .navbar-brand a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
}
#masthead .ds_wrapper_menu_main .navbar-brand a svg {
  width: 100%;
}
#masthead .ds_wrapper_menu_main .navbar-brand a svg path {
  fill: white;
}
#masthead .ds_wrapper_menu_main .header_icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#masthead .ds_wrapper_menu_main .header_icons:last-child {
  margin-left: 3em;
}
#masthead .ds_wrapper_menu_main .header_icons a:not(.btn) {
  display: flex;
  color: #000000;
  text-decoration: none;
  gap: 1em;
  margin-right: 2em;
  font-weight: 700;
  transition: 0.4s all;
}
#masthead .ds_wrapper_menu_main .header_icons a:not(.btn):hover {
  color: #3A7F4F;
}
#masthead .ds_wrapper_menu_main .header_icons a:not(.btn) svg {
  height: 1.5em;
  width: 1.5em;
}

.bottom-navbar {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}

.bottom-navbar {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  transition: margin-top 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s;
}

@media (min-width: 992px) {
  .smallHeader .ds_logo_main {
    height: 68px !important;
  }
  .smallHeader .bottom-navbar {
    margin-top: -96px;
    opacity: 0;
    visibility: hidden;
  }
}
.smallHeader {
  background-color: #FFFFFF !important;
  overflow: hidden;
}

/*----------burger menu------------*/
@media only screen and (max-width: 991px) {
  header .ds_wrapper_menu_main .navbar {
    display: flex;
    justify-content: flex-end;
    order: 3;
  }
  header .ds_wrapper_menu_main .navbar #main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: white;
    top: 0;
    right: 0;
    z-index: 99;
    text-align: center;
    transform: translateX(100%);
    transition: 0.5s cubic-bezier(0.86, -0.01, 0.15, 1.04);
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 0;
    padding-top: 80px;
    list-style: none;
    width: 90%;
    gap: 1em !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li {
    margin: 0 !important;
    width: 100%;
    border-bottom: 1px solid #F9F9F9;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li a {
    width: 100%;
    padding: 0 38px 0 28px;
    border: 0 !important;
    text-align: center;
    display: flex;
    justify-content: space-between;
    text-transform: unset;
    line-height: 2.85;
    height: auto !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li.menu-item-has-children {
    border-bottom: 0 !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li.menu-item-has-children > a {
    display: none !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li.menu-item-has-children ul {
    opacity: 1 !important;
    box-shadow: none !important;
    pointer-events: all !important;
    position: unset !important;
    background: transparent !important;
    gap: 1em !important;
    border-radius: 0 !important;
  }
  header .ds_wrapper_menu_main .navbar #main-nav .navbar-nav li.menu-item-has-children ul li a {
    background: transparent !important;
    padding: 0 38px 0 28px !important;
  }
  header .ds_wrapper_menu_main .navbar.ds_navbar_open #main-nav {
    transform: translateX(0%);
  }
  .navbar-toggler {
    height: 40px;
    width: 40px;
    position: relative;
    z-index: 99999;
    display: block !important;
    margin: auto;
    border: 0;
    border-radius: 10px;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
  }
  .navbar-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 26px;
    background: #3A7F4F;
    border-radius: 9px;
    opacity: 1;
    left: 7px;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .navbar-toggler span:nth-child(1) {
    top: 11px;
  }
  .navbar-toggler span:nth-child(2), .navbar-toggler span:nth-child(3) {
    top: 19px;
  }
  .navbar-toggler span:nth-child(4) {
    top: 27px;
  }
  .navbar-toggler.open span:nth-child(1) {
    top: 19px;
    width: 0%;
    left: 50%;
  }
  .navbar-toggler.open span:nth-child(2) {
    transform: rotate(45deg);
  }
  .navbar-toggler.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .navbar-toggler.open span:nth-child(4) {
    top: 19px;
    width: 0%;
    left: 50%;
  }
}
/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
@media (max-width: 991px) {
  #masthead .ds_wrapper_menu_main .navbar-brand {
    width: auto;
    position: relative;
    z-index: 100;
  }
  #masthead .ds_wrapper_menu_main .navbar-brand a svg path {
    transition: 0.4s all;
  }
  #masthead .ds_wrapper_menu_main .header_icons {
    margin-left: auto;
    margin-right: 1.3em;
  }
  #masthead .ds_wrapper_menu_main #main-nav {
    background-image: url(/wp-content/uploads/2021/11/mobile-menu-min.jpg);
    height: 100vh !important;
    background-size: cover;
    background-position: center;
  }
  #masthead.headerOpen .navbar-brand a svg path {
    fill: white;
  }
}
@media (max-width: 600px) {
  .smallHeader {
    top: 0;
  }
}
@media (max-width: 575px) {
  #masthead .ds_wrapper_menu_main .navbar #main-nav ul li a {
    font-size: 1.3875em;
  }
}
.bottom-navbar {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .bottom-navbar {
    display: none;
  }
}
.bottom-navbar .container {
  padding: 16px 0 0 0;
  display: flex;
  justify-content: space-between;
  border-top: 1.5px solid rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
}
.bottom-navbar .container .header-nets {
  display: flex;
  gap: 0.5em;
}
.bottom-navbar .container .header-nets a {
  height: 36px;
  width: 36px;
  border: 2px solid #3A7F4F;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  transition: all 0.2s;
}
.bottom-navbar .container .header-nets a:hover {
  opacity: 0.6;
}

.mobile-header-nets {
  display: flex;
  gap: 0.5em;
  padding: 1em;
}
.mobile-header-nets a {
  height: 36px;
  width: 36px;
  border: 2px solid #3A7F4F;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 32px;
  transition: all 0.2s;
}
.mobile-header-nets a:hover {
  opacity: 0.6;
}

.google-header-wrap {
  display: flex;
  align-items: center;
  gap: 1em;
}
.google-header-wrap svg {
  height: 32px;
  width: 32px;
}

.google-review-header-wrap {
  max-width: 220px;
}
.google-review-header-wrap .wp-google-powered {
  display: none !important;
}
.google-review-header-wrap .grw-header-inner {
  padding: 0 !important;
}
.google-review-header-wrap .wp-gr {
  padding: 0 !important;
}
.google-review-header-wrap .wp-star svg {
  max-height: 16px !important;
  max-width: 16px !important;
}
.google-review-header-wrap .wp-google-rating {
  color: #000000 !important;
  font-size: 18px !important;
}
.google-review-header-wrap .wp-google-based {
  margin-top: 0 !important;
}

.menu-item-content-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-item-sub-image {
  height: 80px;
  width: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.sub-menu-bottom-link {
  color: #3A7F4F;
  text-decoration: underline;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sub-menu-item-title {
  font-size: 18px;
  font-weight: 800;
}

.sub-menu-pricing-link {
  color: white !important;
  padding: 1.25em;
  background-color: #D4AF37;
  display: flex;
  gap: 1.5em;
  border-radius: 15px;
}
.sub-menu-pricing-link .sub-icon-wrap {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1.25em;
}
.sub-menu-pricing-link .sub-icon-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sub-menu-pricing-link .sub-icon-texts > span {
  font-size: 18px;
  font-weight: 800;
}
.sub-menu-pricing-link .sub-icon-texts .sub-icon-link {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sub-menu-pricing-link .sub-icon-texts .sub-icon-link span {
  text-decoration: underline;
  font-weight: 14px !important;
  font-weight: 600 !important;
}

.sub-menu-process-link {
  color: white !important;
  padding: 1.25em;
  background-color: #3A7F4F;
  display: flex;
  gap: 1.5em;
  border-radius: 15px;
}
.sub-menu-process-link .sub-icon-wrap {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1.25em;
}
.sub-menu-process-link .sub-icon-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sub-menu-process-link .sub-icon-texts > span {
  font-size: 18px;
  font-weight: 800;
}
.sub-menu-process-link .sub-icon-texts .sub-icon-link {
  display: flex;
  gap: 8px;
  align-items: center;
}
.sub-menu-process-link .sub-icon-texts .sub-icon-link span {
  text-decoration: underline;
  font-weight: 14px !important;
  font-weight: 600 !important;
}

@media (max-width: 992px) {
  .link_to_form {
    display: none !important;
  }
}
.sub-menu-texts {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}

.menu-show-wrapper {
  display: none;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 128;
  background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu-wrap {
  position: fixed;
  margin-top: 156px;
  width: 100%;
  background-color: white;
  padding-bottom: 24px;
  z-index: 999;
}

.m-nav {
  width: 100%;
  background-color: #fff;
}

.m-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.m-nav__item {
  border-bottom: 1px solid #f0f0f0;
}

/* --- Horní řádek (Obrázek + Text + Šipka) --- */
.m-nav__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-nav__link {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  text-decoration: none;
  color: #333;
  flex-grow: 1;
}

.m-nav__image {
  height: 24px;
  margin-right: 15px;
}

.m-nav__title {
  font-size: 14px;
  font-weight: 600;
}

.m-nav__toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 15px;
  font-size: 20px;
  color: #000;
  flex-shrink: 0;
}

.m-nav__toggle .icon-minus {
  display: none;
}

.m-nav__item.is-open > .m-nav__row .m-nav__toggle .icon-plus {
  display: none;
}

.m-nav__item.is-open > .m-nav__row .m-nav__toggle .icon-minus {
  display: block;
}

.m-nav__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.m-nav__submenu-list {
  list-style: none;
  margin: 0;
  padding: 0 0 0 15px;
}

.m-nav__submenu-item a {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  text-decoration: none;
  color: #444;
  border-top: 1px solid #eee;
  padding-left: 0;
  margin-left: 32px;
}

.m-nav__submenu-content {
  display: flex;
  align-items: center;
}

.m-nav__submenu-image {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  object-fit: cover;
  border-radius: 4px;
}

.m-nav__promo-icon {
  margin-right: 10px;
}

.m-nav__promo-icon svg {
  width: 25px;
  height: auto;
}

.m-nav__submenu-title, .m-nav__promo-texts {
  font-size: 14px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .mobile-menu-wrap {
    display: none;
  }
}
.mobile-menu-wrap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu-wrap.is-active {
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 992px) {
  .wp-google-based {
    display: none !important;
  }
  .google-header-wrap {
    width: 96px;
  }
  .google-review-header-wrap {
    max-width: 64px;
  }
  .google-header-wrap svg {
    height: 20px;
    width: 20px;
  }
}
@media (max-width: 560px) {
  #masthead .ds_wrapper_menu_main .header_icons:last-child {
    margin-left: 0 !important;
    margin-right: 0.5em !important;
  }
}
.header-upper-menu ul {
  display: flex;
  list-style-type: none;
}
.header-upper-menu ul li a {
  color: #000000;
}
@media (max-width: 992px) {
  .header-upper-menu {
    display: none;
  }
}

.menu-item-image {
  max-height: 30px;
  max-width: 30px;
}

.header-vertical-wrap {
  width: 100%;
}

.header-account {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-right: 24px;
}

.header-cart {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
}
.header-cart .header-cart-count {
  position: absolute;
  top: -4px;
  left: -4px;
  background-color: #3A7F4F;
  color: white;
  border-radius: 78px;
  height: 17px;
  width: 17px;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-bar-location {
  display: flex;
  gap: 1em;
  align-items: center;
  text-decoration: underline;
  color: #000000;
  height: 100%;
  display: flex;
  align-items: center;
  transition: 0.4s all;
  font-weight: 700;
}
.bottom-bar-location:hover {
  color: #3A7F4F;
}

@media (max-width: 992px) {
  .header-name-span {
    display: none;
  }
  .ds_wrapper_menu_main {
    justify-content: end !important;
  }
}
.menu-item-has-children {
  position: relative;
}
.menu-item-has-children .sub-menu {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  min-width: 200px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  list-style: none;
  height: auto !important;
  border-radius: 8px;
}
.menu-item-has-children .sub-menu li {
  display: block;
  width: 100%;
}
.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 5px 15px;
}
.menu-item-has-children svg {
  transition: all 0.3s;
}
.menu-item-has-children:hover .sub-menu {
  display: block !important;
}
.menu-item-has-children:hover svg {
  transform: rotate(180deg);
}

@media (max-width: 992px) {
  .ds_logo_main {
    height: 68px !important;
  }
}
@media (max-width: 767px) {
  .header_icons .brown-btn {
    display: none;
  }
}
.m-nav-row-cta-wrap {
  padding: 8px 0;
}
.m-nav-row-cta-wrap .btn {
  width: 48% !important;
  display: flex !important;
  justify-content: center !important;
}

/*border-radius*/
.ds_newsletter {
  position: relative;
  z-index: 1;
}
.ds_newsletter .ds_newsletter_wrap {
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1200px) {
  .ds_newsletter .ds_newsletter_wrap {
    flex-direction: column;
    gap: 2em;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right {
  color: #000000;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    width: 15em;
    height: auto;
  }
}
@media (max-width: 1199px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    width: 7em;
    height: auto;
  }
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    display: none;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h3 {
  color: #3A7F4F;
  margin-bottom: 0.5rem;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h3:nth-of-type(2) {
  margin-top: 2.75rem;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h4 {
  margin-top: 1em;
  margin-bottom: 0.25em;
  font-size: 1.5em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right span {
  font-size: 1em;
  line-height: 2em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail {
  margin-top: 1.125em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone a,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail a {
  color: currentColor;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone a svg,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail a svg {
  width: 1.5em;
  height: 1.5em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_address {
  max-width: 8.625em;
  margin-bottom: 1.625em;
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_address {
    max-width: unset;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right a {
  transition: 0.4s all;
}

.ds_footer {
  padding-top: 6.25em;
  background: #2A221D;
  color: #F9F9F9;
  margin-top: -1px;
  position: relative;
}
.ds_footer::before {
  content: "";
  position: absolute;
  left: -16px;
  bottom: 0px;
  width: 180px;
  height: 280px;
  background-image: url("/wp-content/uploads/2025/12/Group-3-1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .ds_footer::before {
    left: -130px;
  }
}
@media (max-width: 1100px) {
  .ds_footer::before {
    display: none;
  }
}
.ds_footer .ds_footer_wrapper {
  margin-bottom: 5.5em;
}
.ds_footer .ds_footer_wrapper .ds_footer_wrapper_content {
  position: relative;
  z-index: 10;
  font-size: 0.875em;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .ds_footer .ds_footer_wrapper .ds_footer_wrapper_content {
    display: grid;
    grid-template-columns: 30% 30% 30%;
    row-gap: 40px;
  }
  .ds_footer .ds_footer_wrapper .ds_footer_wrapper_content > :nth-child(4) {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  .ds_footer .ds_footer_wrapper .ds_footer_wrapper_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 4em;
  }
}
.ds_footer .ds_footer_bottom_line {
  background-color: #3A7F4F;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  margin-bottom: 40px !important;
}
.ds_footer .ds_footer_bottom_line .container {
  padding: 2em;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .ds_footer .ds_footer_bottom_line .container {
    flex-direction: column-reverse;
    justify-content: center;
    text-align: center;
    gap: 1em;
  }
}
.ds_footer a {
  text-decoration: none;
  color: currentColor;
}
.ds_footer a:hover {
  text-decoration: underline;
}
.ds_footer .column {
  max-width: 20%;
}
@media (max-width: 1200px) {
  .ds_footer .column {
    max-width: unset;
  }
}
.ds_footer .column h5 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}
.ds_footer .column a {
  text-decoration: underline;
  margin-bottom: 1em;
}
.ds_footer .column.c1 {
  padding-right: 2em;
}
@media (max-width: 1200px) {
  .ds_footer .column.c1 {
    padding-right: 3em;
  }
}
.ds_footer .column.c2 {
  align-items: center;
  padding-right: 2em;
  padding-left: 2em;
}
@media (max-width: 1200px) {
  .ds_footer .column.c2 {
    padding-left: 3em;
    padding-right: 3em;
  }
}
@media (max-width: 767px) {
  .ds_footer .column.c2 {
    justify-items: center;
    border-right: 0;
  }
}
.ds_footer .column.c2 .ds_footer_menu {
  display: flex;
  flex-direction: column;
}
.ds_footer .column.c2 .ds_footer_menu a {
  transition: all 0.3s;
}
.ds_footer .column.c2 .ds_footer_menu a:hover span {
  color: #9DBD78 !important;
}
@media (max-width: 575px) {
  .ds_footer .column.c2 .ds_footer_menu {
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.ds_footer .column.c2 .ds_footer_cont_wrap {
  display: flex;
  gap: 4.2857em;
  justify-content: end;
}
@media (max-width: 575px) {
  .ds_footer .column.c2 .ds_footer_cont_wrap {
    gap: 1.5em;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.ds_footer .column.c2 .ds_footer_cont_wrap > div {
  display: flex;
  gap: 4.375rem;
  align-items: center;
}
.ds_footer .column.c2 .ds_footer_cont_wrap > div a {
  display: flex;
  gap: 0.75em;
  align-items: center;
}
.ds_footer .column.c2 .ds_footer_nets {
  display: flex;
  gap: 2rem;
  justify-content: end;
}
.ds_footer .column.c2 .ds_footer_net_wrap {
  justify-content: end;
}
.ds_footer .column.c2 .ds_footer_net_wrap .ds_kontakt_row {
  gap: 1.57143em;
}
.ds_footer .column.c1 img {
  margin-bottom: 1.375rem;
}
@media (max-width: 767px) {
  .ds_footer .column.c1 {
    border-right: 0;
  }
}
.ds_footer .column.c1 .ds_footer_row {
  gap: 0.5em;
  width: fit-content;
}
.ds_footer .column.c1 .ds_footer_row:last-child {
  margin-top: 1.125rem;
}
.ds_footer .column.c3 {
  border-right: 0 !important;
  padding-right: 2em;
  padding-left: 2em;
}
@media (max-width: 1200px) {
  .ds_footer .column.c3 {
    padding-left: 3em;
    padding-right: 3em;
  }
}
@media (max-width: 767px) {
  .ds_footer .column.c3 {
    justify-items: center;
  }
}
.ds_footer .column.c3 .ds_footer_menu {
  display: flex;
  flex-direction: column;
}
@media (max-width: 575px) {
  .ds_footer .column.c3 .ds_footer_menu {
    gap: 1em;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.contact-map-wrap {
  margin-top: 3.75em;
  margin-bottom: 3.75em;
}

.footer-cta-section {
  position: relative;
  margin-bottom: 0;
}
.footer-cta-section::before {
  content: "";
  position: absolute;
  left: 40px;
  top: 160px;
  width: 86px;
  height: 96px;
  background-image: url("/wp-content/uploads/2025/12/Group-5.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1400px) {
  .footer-cta-section::before {
    top: 16px;
    height: 76px;
    width: 68px;
  }
}

.section-cta-wrap {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 30px;
  display: flex;
  padding: 6em 0;
}
@media (max-width: 1400px) {
  .section-cta-wrap {
    height: fit-content;
  }
}
@media (max-width: 767px) {
  .section-cta-wrap {
    height: fit-content;
    padding: 3em;
  }
}
.section-cta-wrap .cta-wrap-text-side {
  max-width: 60%;
}
@media (max-width: 767px) {
  .section-cta-wrap .cta-wrap-text-side {
    max-width: 80%;
  }
}
.section-cta-wrap h2 {
  font-size: 45px;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .section-cta-wrap h2 {
    font-size: 2.125em;
  }
}
.section-cta-wrap p {
  margin-bottom: 2rem;
  font-size: 15px;
  font-weight: 500;
  max-width: 530px;
}
.section-cta-wrap::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 80px;
  width: 520px;
  height: 560px;
  background-image: url("/wp-content/uploads/2025/12/83fe3de1f9f4ded50d41082bdf54ca6a4a49f870.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1200px) {
  .section-cta-wrap::after {
    width: 420px;
    height: 500px;
    right: 0;
  }
}
@media (max-width: 992px) {
  .section-cta-wrap::after {
    width: 320px;
    height: 400px;
    right: -40px;
  }
}
@media (max-width: 767px) {
  .section-cta-wrap::after {
    display: none;
  }
}
.section-cta-wrap::before {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -80px;
  width: 480px;
  height: 500px;
  background-image: url("/wp-content/uploads/2025/12/Group-4-1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1200px) {
  .section-cta-wrap::before {
    width: 420px;
    height: 420px;
    right: -120px;
  }
}
@media (max-width: 992px) {
  .section-cta-wrap::before {
    width: 320px;
    height: 400px;
  }
}
@media (max-width: 767px) {
  .section-cta-wrap::before {
    width: 256px;
    height: 280px;
    right: 0;
  }
}
@media (max-width: 475px) {
  .section-cta-wrap::before {
    display: none;
  }
}

.partners {
  margin-bottom: 6em;
}
.partners p {
  margin-top: 1em;
  margin-bottom: 3em;
}

.partners-wrap-wrap {
  display: flex;
  justify-content: center;
}
.partners-wrap-wrap .partners-img-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
  max-width: 760px;
}
.partners-wrap-wrap .partners-img-wrap img {
  height: 106px;
}

.f-contact-row {
  margin-top: 1.5em !important;
  font-weight: 800 !important;
  gap: 1.25em !important;
}

@media (max-width: 767px) {
  .column {
    text-align: left !important;
  }
  .column.c2, .column.c3 {
    padding-left: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: start !important;
  }
}
.footer-contact-part {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-upper-with-logo {
  margin-bottom: 48px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1.25em;
}
.footer-socials a {
  height: 42px;
  width: 42px;
  border-radius: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-socials a:hover {
  background-color: #3A7F4F;
  opacity: 1 !important;
}
.footer-socials a img {
  margin-bottom: 0 !important;
}

.ds_newsletter_wrap {
  position: relative;
}
.ds_newsletter_wrap::after {
  content: "";
  position: absolute;
  left: -160px;
  bottom: 160px;
  width: 220px;
  height: 296px;
  background-image: url("/wp-content/uploads/2025/12/image-144.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1400px) {
  .ds_newsletter_wrap::after {
    height: 260px;
    width: 180px;
    left: -120px;
  }
}
@media (max-width: 1200px) {
  .ds_newsletter_wrap::after {
    display: none;
  }
}

.ds_newsletter_left {
  position: relative;
  background-color: #3A7F4F;
  padding: 4em;
  border-radius: 1em;
  width: 50%;
  height: fit-content;
  z-index: 5;
}
@media (max-width: 1200px) {
  .ds_newsletter_left {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .ds_newsletter_left {
    padding: 3em;
  }
}
@media (max-width: 1200px) {
  .ds_newsletter_left {
    flex-grow: 1;
  }
}
.ds_newsletter_left h2 {
  color: #FFFFFF;
  margin-top: 16px;
  font-size: 2.875em;
}
@media (max-width: 767px) {
  .ds_newsletter_left h2 {
    font-size: 2em;
  }
}
.ds_newsletter_left .ds_form_wrap input, .ds_newsletter_left .ds_form_wrap textarea {
  background-color: rgba(255, 255, 255, 0.2) !important;
  border: 0 !important;
  color: white !important;
  font-family: "Nunito", sans-serif !important;
}
.ds_newsletter_left .ds_form_wrap input::placeholder, .ds_newsletter_left .ds_form_wrap textarea::placeholder {
  color: white !important;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row {
  display: flex;
  gap: 1em;
  margin-top: 1.125em;
}
@media (max-width: 991px) {
  .ds_newsletter_left .ds_form_wrap .ds_form_row {
    flex-grow: 1;
    flex-direction: column;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row label {
  display: flex;
  flex-direction: column;
  gap: 0.375em;
  flex-grow: 1;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row label span {
  font-weight: 700;
  color: #FFFFFF;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row > div {
  display: flex;
  justify-content: end;
  gap: 1.625rem;
  align-items: center;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
  max-width: 15.5rem;
}
@media (max-width: 991px) {
  .ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
    max-width: unset;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child {
  justify-content: end;
  font-size: 0.875em;
  color: #F9F9F9;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a {
  text-decoration: none;
  color: #3A7F4F;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a:hover {
  text-decoration: underline;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child .btn {
  font-size: 1rem;
}

.footer-cta-section-wrap {
  margin-top: 86px;
  padding: 0;
}

.footer-instagram {
  margin-top: 120px;
  margin-bottom: 120px;
}

.foot-ig-head-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.foot-ig-head-wrap h2 {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .foot-ig-head-wrap {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}

.ig-head-btns {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .ig-head-btns {
    flex-direction: column;
  }
}

.footer-ig-images-wrap {
  margin-top: 60px;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}
@media (max-width: 1200px) {
  .footer-ig-images-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-ig-images-wrap .footer-ig-img-wrap {
  width: 288px;
  height: 216px;
  position: relative;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: calc((100% - 80px) / 3);
    flex-shrink: 1;
  }
}
@media (max-width: 992px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 450px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: 100%;
  }
}
.footer-ig-images-wrap .footer-ig-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}
.footer-ig-images-wrap .footer-ig-img-wrap:hover .footer-ig-overlay {
  opacity: 1;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay img {
  height: 60px;
  width: auto;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay .overlay-go-to {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  text-decoration: underline;
  font-weight: 800;
}

.ds_newsletter_map_wrap {
  width: 100%;
  height: 420px;
  margin-top: 96px;
}
@media (max-width: 992px) {
  .ds_newsletter_map_wrap {
    max-width: unset;
    width: 100%;
    min-height: 400px;
  }
}
.ds_newsletter_map_wrap iframe {
  border-radius: 30px;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .ds_newsletter_map_wrap iframe {
    height: 400px;
  }
}

.ds_newsletter_right {
  width: 45%;
}
@media (max-width: 1200px) {
  .ds_newsletter_right {
    max-width: unset;
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .ds_form_row {
    flex-direction: column;
  }
}
.ds_footer_menu a {
  transition: all 0.3s;
}
.ds_footer_menu a span {
  transition: all 0.3s;
}
.ds_footer_menu a:hover {
  color: #3A7F4F !important;
}

.footer-under-text-wrap a {
  transition: all 0.3s;
}
.footer-under-text-wrap a span {
  transition: all 0.3s;
}
.footer-under-text-wrap a:hover {
  color: #3A7F4F !important;
}

.ds_footer_img {
  width: 164px;
  height: auto;
}

.contact-upper-contacts-wrap {
  min-height: 208px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .contact-upper-contacts-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .contact-upper-contacts-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-upper-contacts-wrap .contact-upper-part {
  background-color: #FFFAF3;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.contact-upper-contacts-wrap .contact-upper-part a {
  margin-top: auto;
}
.contact-upper-contacts-wrap .contact-upper-part h3, .contact-upper-contacts-wrap .contact-upper-part span, .contact-upper-contacts-wrap .contact-upper-part div, .contact-upper-contacts-wrap .contact-upper-part a {
  position: relative;
  z-index: 2;
}
.contact-upper-contacts-wrap .contact-upper-part h3 {
  margin-top: 12px;
  margin-bottom: 32px;
  font-size: 22px;
  line-height: 22px;
  text-decoration: underline;
}
.contact-upper-contacts-wrap .contact-upper-part:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 137px;
  height: 145px;
  background-image: url("/wp-content/uploads/2025/12/Mask-group-1.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .contact-upper-contacts-wrap .contact-upper-part:nth-child(1)::after {
    bottom: 12px;
    transform: unset;
    top: unset;
  }
}
.contact-upper-contacts-wrap .contact-upper-part:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 137px;
  height: 145px;
  background-image: url("/wp-content/uploads/2025/12/Mask-group-2.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .contact-upper-contacts-wrap .contact-upper-part:nth-child(2)::after {
    bottom: 12px;
    transform: unset;
    top: unset;
  }
}
.contact-upper-contacts-wrap .contact-upper-part:nth-child(3) h3 {
  font-size: 16px;
  line-height: 24px;
}
.contact-upper-contacts-wrap .contact-upper-part:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 137px;
  height: 145px;
  background-image: url("/wp-content/uploads/2025/12/Pin-1.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .contact-upper-contacts-wrap .contact-upper-part:nth-child(3)::after {
    bottom: -12px;
    transform: unset;
    top: unset;
  }
}

.contact-particle {
  margin-top: 32px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-particle img {
  height: 90px;
  width: 90px;
}
.contact-particle .contact-particle-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-particle .contact-particle-text h4 {
  margin: 0 !important;
  font-size: 22px !important;
}

.second-particle-contact span {
  font-weight: 800;
  font-size: 16px !important;
  line-height: 26px !important;
}

.contact-social-part a {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
}
.contact-social-part a:hover {
  text-decoration: underline;
}
.contact-social-part a:hover img {
  opacity: 0.75;
}
.contact-social-part a img {
  transition: all 0.3s;
  height: 60px;
}
.contact-social-part a span {
  font-weight: 800;
}

.wp-google-time {
  display: none !important;
}

.rpi-dot {
  background-color: #EBF2ED !important;
}

.wp-gr .rpi-dot.active {
  background-color: #3A7F4F !important;
}

.wp-gr:not(.wp-dark) .grw-review-inner.grw-backgnd {
  background-color: #FFFAF3 !important;
}

.wp-gr .grw-review .wp-google-left {
  display: flex !important;
  align-items: center !important;
}

.wp-gr.wpac a.wp-google-name {
  color: black !important;
  font-family: "Paytone One", sans-serif !important;
  font-weight: 400;
}

.wp-gr .wp-google-text {
  font-family: "Nunito", sans-serif !important;
}

.footer-reviews-section h2 {
  margin-top: 20px;
}

.bottom-footer-ig h5 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
}
.bottom-footer-ig .footer-ig-img-wrap {
  width: 166px;
  height: 171px;
  position: relative;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .bottom-footer-ig .footer-ig-img-wrap {
    width: calc((100% - 80px) / 3);
    flex-shrink: 1;
  }
}
@media (max-width: 992px) {
  .bottom-footer-ig .footer-ig-img-wrap {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 450px) {
  .bottom-footer-ig .footer-ig-img-wrap {
    width: 100%;
  }
}
.bottom-footer-ig .footer-ig-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
}
.bottom-footer-ig .footer-ig-img-wrap:hover .footer-ig-overlay {
  opacity: 1;
}
.bottom-footer-ig .footer-ig-img-wrap .footer-ig-overlay {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s;
}
.bottom-footer-ig .footer-ig-img-wrap .footer-ig-overlay img {
  height: 60px;
  width: auto;
}
.bottom-footer-ig .footer-ig-img-wrap .footer-ig-overlay .overlay-go-to {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  text-decoration: underline;
  font-weight: 800;
}

.bottom-footer-imgs-wrap {
  display: flex;
  gap: 20px;
}

.footer-col-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}

.footer-under-contacts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-under-contacts .footer-under-con {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-under-contacts .footer-under-con .footer-under-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-under-contacts .footer-under-con .footer-under-text-wrap h5 {
  margin-bottom: 0 !important;
}
.footer-under-contacts .footer-under-con .footer-under-text-wrap a {
  margin-bottom: 0 !important;
}

.ds_contact_alert {
  color: white;
  margin-top: 8px;
}

/*border-radius*/
.ds_HPsection {
  position: relative;
  width: 100%;
  margin-bottom: 0;
  height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: black;
}
.ds_HPsection .ds_slider_bg_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.ds_HPsection .ds_slide_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  opacity: 0;
  animation: sliderZoomBlur 18s infinite;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: overlay;
}
.ds_HPsection .ds_slide_item:nth-child(1) {
  animation-delay: 0s;
}
.ds_HPsection .ds_slide_item:nth-child(2) {
  animation-delay: 6s;
}
.ds_HPsection .ds_slide_item:nth-child(3) {
  animation-delay: 12s;
}
.ds_HPsection .ds_sliderHP_wrap {
  width: 100%;
  height: 100%;
  margin-top: 128px;
  padding-bottom: 64px;
}
@media (max-width: 1200px) {
  .ds_HPsection .ds_sliderHP_wrap {
    padding-bottom: 128px;
  }
}
@media (max-width: 992px) {
  .ds_HPsection .ds_sliderHP_wrap {
    margin-top: 0;
  }
}
.ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  height: 100%;
  padding-top: 2em;
}
@media (max-width: 1200px) {
  .ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con {
    flex-direction: column;
    align-items: start;
    gap: 3em;
  }
}
@media (max-width: 560px) {
  .ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con {
    padding-top: 0 !important;
  }
}
.ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con .hp-text-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 55em;
  height: fit-content;
  position: relative;
  box-sizing: content-box;
  gap: 1.125em;
}
.ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con .hp-text-wrapper .sliderHP_btns {
  display: flex;
  gap: 2em;
  margin-top: 0.5em;
}
@media (max-width: 560px) {
  .ds_HPsection .ds_sliderHP_wrap .ds_sliderHP_con .hp-text-wrapper .sliderHP_btns {
    flex-direction: column;
  }
}

@keyframes sliderZoomBlur {
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(0px);
  }
  5% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
    transform: scale(1.1);
    filter: blur(3px);
  }
  38.33% {
    opacity: 0;
    transform: scale(1.15);
    filter: blur(5px);
  }
  100% {
    opacity: 0;
    transform: scale(1);
    filter: blur(0px);
  }
}
.hp_subheading {
  font-weight: 800;
  font-size: 0.875em;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ds_sliderHP_text {
  font-weight: 700;
  margin-top: 0.5;
  font-size: 1.5em;
  color: white;
}

.ds_sliderHP_title {
  color: white;
  font-size: 4.25em;
  font-weight: 400;
  margin-top: 0.5rem;
  line-height: 130%;
}
@media (max-width: 560px) {
  .ds_sliderHP_title {
    font-size: 2.75em;
  }
}

.ds_HPsection {
  position: relative;
  overflow: hidden;
}

.floating-icon {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  opacity: 0.5;
}
.floating-icon:nth-of-type(1) {
  top: 15%;
  left: 5%;
  width: 60px;
}
.floating-icon:nth-of-type(2) {
  top: 35%;
  right: 8%;
  width: 45px;
}
.floating-icon:nth-of-type(3) {
  bottom: 20%;
  left: 12%;
  width: 50px;
}
.floating-icon:nth-of-type(4) {
  bottom: 15%;
  right: 15%;
  width: 70px;
}

/*border-radius*/
.ds_features {
  margin-bottom: 0 !important;
  margin-top: -96px;
}
.ds_features .container .ds_features_wrap {
  display: grid;
  grid-template-columns: calc(33% - 22px) calc(33% - 22px) calc(33% - 22px);
  gap: 40px;
}
@media (max-width: 1200px) {
  .ds_features .container .ds_features_wrap {
    grid-template-columns: calc(33% - 22px) calc(33% - 22px) calc(33% - 22px);
    gap: 32px;
  }
}
@media (max-width: 992px) {
  .ds_features .container .ds_features_wrap {
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .ds_features .container .ds_features_wrap {
    grid-template-columns: 100%;
    gap: 40px;
  }
}
.ds_features .container .ds_features_wrap .ds_features_item {
  border-radius: 20px;
  display: flex;
  align-items: start;
  gap: 24px;
  width: 100%;
  color: #000000;
  background-color: white;
  position: relative;
  padding: 36px;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 1400px) {
  .ds_features .container .ds_features_wrap .ds_features_item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .ds_features .container .ds_features_wrap .ds_features_item {
    flex-direction: row;
  }
}
@media (max-width: 420px) {
  .ds_features .container .ds_features_wrap .ds_features_item {
    flex-direction: column;
  }
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1.125em;
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top .h3-feature-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75em;
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top h3 {
  line-height: 120%;
  font-size: 1.25em;
}
.ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top img {
  height: 64px;
}
@media (max-width: 640px) {
  .ds_features .container .ds_features_wrap .ds_features_item .ds_features_item_top img {
    height: 48px;
  }
}

.feature-p {
  line-height: 180% !important;
}

/*border-radius*/
.ds_imageText {
  padding: 3.75em 0;
}
.ds_imageText .container h1 {
  margin-bottom: 1.375rem;
}
.ds_imageText .container .ds_imageText_wrap {
  display: flex;
  flex-direction: row-reverse;
  gap: 3em;
  align-items: center;
}
.ds_imageText .container .ds_imageText_wrap.reverse {
  flex-direction: row;
}
@media (max-width: 991px) {
  .ds_imageText .container .ds_imageText_wrap.reverse {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .ds_imageText .container .ds_imageText_wrap {
    flex-direction: column;
  }
}
.ds_imageText .container .ds_imageText_wrap .ds_imageText_left {
  flex: 1;
}
.ds_imageText .container .ds_imageText_wrap .ds_imageText_left .imageText_link {
  margin-top: 2em;
}
.ds_imageText .container .ds_imageText_wrap .ds_imageText_right {
  width: 37.5em;
  height: 32.125em;
  overflow: hidden;
  border-radius: 1.25em;
}
@media (max-width: 1399px) {
  .ds_imageText .container .ds_imageText_wrap .ds_imageText_right {
    width: 30.5em;
    height: 25.125em;
  }
}
@media (max-width: 1199px) {
  .ds_imageText .container .ds_imageText_wrap .ds_imageText_right {
    width: 25.5em;
    height: 20.125em;
    max-width: 100%;
  }
}
.ds_imageText .container .ds_imageText_wrap .ds_imageText_right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/*border-radius*/
.ds_news {
  padding: 3.75em 0;
}
.ds_news .container .ds_section_title {
  gap: 1em;
  margin-bottom: 1.75em;
}
.ds_news .container .ds_section_title h2 {
  text-align: center;
  color: #9DBD78;
  margin-bottom: 1.75rem;
}
.ds_news .container .ds_news_text {
  font-size: 1em;
  color: #666666;
}
.ds_news .container .ds_news_wrap {
  display: grid;
  padding: 2.125em 0;
}
.ds_news .container .ds_news_wrap.ds_news_col2 {
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .ds_news .container .ds_news_wrap {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 575px) {
  .ds_news .container .ds_news_wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/*border-radius*/
.ds_news_item {
  position: relative;
  text-align: left;
  text-decoration: none;
  display: flex;
  gap: 2em;
  padding: 1em;
}
.ds_news_item .ds_news_item_left .ds_news_img_wrapper {
  overflow: hidden;
  border-radius: 7px;
}
.ds_news_item p {
  color: #666666;
  font-size: 1.125em;
  line-height: 1.5em;
  margin-bottom: 0;
}
.ds_news_item img {
  height: auto;
  transition: all;
  transition-duration: 200ms;
}
.ds_news_item .ds_tag {
  position: absolute;
  top: 0;
  right: 0;
  color: #FFFFFF;
}
.ds_news_item h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  height: 2.5em;
  font-size: 26px;
  font-weight: 500;
  color: #333333;
}
.ds_news_item .ds_news_item_meta {
  display: flex;
  justify-content: space-between;
  margin: 0.437rem 0;
}
.ds_news_item .ds_news_item_meta .ds_news_item_author {
  font-size: 1em;
  font-weight: 400;
  color: #333333;
}
.ds_news_item .ds_news_item_meta .ds_news_item_date {
  font-size: 1em;
  font-weight: 400;
  color: #666666;
}

.ds_news_item:hover img {
  scale: 1.1;
}

.accordion_wrapper {
  display: grid;
  grid-template-columns: calc(50% - 16px) calc(50% - 16px);
  gap: 32px;
}
@media (max-width: 992px) {
  .accordion_wrapper {
    grid-template-columns: 100%;
  }
}
.accordion_wrapper .accordion_item {
  border-radius: 20px;
}
.accordion_wrapper .accordion_item .accordion_header {
  display: flex;
  border: 0;
  background: #F9F9F9;
  color: #000000;
  padding: 1em 2.625em;
  font-weight: 700;
  justify-content: space-between;
  width: 100%;
  border-radius: 1.25em;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
}
.accordion_wrapper .accordion_item .accordion_header svg {
  width: 1.75em;
  height: 1.75em;
  transition: 0.4s all;
}
.accordion_wrapper .accordion_item .accordion_header.open svg {
  transform: scaleY(-1);
}
.accordion_wrapper .accordion_item .accordion_body {
  margin-top: -8px;
  background: #F9F9F9;
  border-radius: 0 0 20px 20px;
}
.accordion_wrapper .accordion_item .accordion_panel {
  padding: 1.5em 2.625em;
}
.accordion_wrapper .accordion_item .accordion_panel p {
  font-weight: 500;
}

.ds_jobs_items .ds_job_item {
  width: 26.25em;
  padding: 1.375em;
  box-shadow: 6px 6px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 1.25em;
  color: #000000;
  transition: 0.4s all;
  background: #FFFFFF;
}
.ds_jobs_items .ds_job_item:hover {
  transform: scale(1.05);
}
@media (max-width: 575px) {
  .ds_jobs_items .ds_job_item {
    width: 100%;
  }
}
.ds_jobs_items .ds_job_item img {
  height: 9.75em;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0.5em;
  overflow: hidden;
}
.ds_jobs_items .ds_job_item a {
  color: currentColor;
  text-decoration: none;
}
.ds_jobs_items .ds_job_item a > div {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  margin-top: 0.25em;
}
.ds_jobs_items .jobs_slider > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.625em;
  row-gap: 1.5em;
}
@media (max-width: 991px) {
  .ds_jobs_items .jobs_slider > div {
    grid-template-columns: 1fr;
  }
}

body.page-template-ds_jobs .ds_jobs_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.25em;
}
@media (max-width: 1399px) {
  body.page-template-ds_jobs .ds_jobs_items {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 991px) {
  body.page-template-ds_jobs .ds_jobs_items {
    grid-template-columns: 1fr;
  }
}

body.single-job .ds_job_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  body.single-job .ds_job_wrap {
    grid-template-columns: 1fr;
  }
  body.single-job .ds_job_wrap .ds_job_right_img {
    display: none;
  }
}
body.single-job .ds_job_wrap:nth-of-type(1) h1 {
  text-align: start;
}
body.single-job .ds_job_wrap:nth-of-type(1) h2 {
  margin-bottom: 2rem;
  margin-top: 2.625rem;
}
body.single-job .ds_job_wrap p {
  max-width: 29.5em;
  text-align: start;
}
body.single-job .ds_job_wrap .ds_job_right {
  text-align: center;
}
body.single-job .ds_job_wrap:nth-of-type(2) {
  margin-top: 2.625rem;
}
body.single-job .ds_job_wrap:nth-of-type(2) .ds_job_left_title,
body.single-job .ds_job_wrap:nth-of-type(2) .ds_job_right_title {
  gap: 1.625em;
  margin-bottom: 2em;
}
body.single-job .ds_job_wrap:nth-of-type(2) p {
  margin-bottom: 2em;
}

body.single-service .ds_imageText {
  padding-top: 0;
}
body.single-service .ds_imageText h1 {
  text-align: start;
}
body.single-service .ds_imageText h2 {
  margin-bottom: 1.125rem;
}
body.single-service .ds_imageText .container .ds_imageText_wrap .ds_imageText_right {
  height: auto;
  width: unset;
}
body.single-service .ds_features {
  background: unset;
}
body.single-service .ds_features .ds_features_wrap .ds_features_item {
  background: unset;
  color: #000000;
}
body.single-service .ds_features .ds_features_wrap .ds_features_item h3 {
  color: #3A7F4F;
}

.home main {
  padding-top: 64px;
}
.home main .ds_imageText {
  background: url("/wp-content/uploads/2025/06/background-divider.svg") bottom center no-repeat;
  background-size: 100% 100%;
  color: #F9F9F9;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .home main .ds_imageText {
    background-size: 100% 35%;
  }
  .home main .ds_imageText::after {
    background: #000000;
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    bottom: calc(35% - 1px);
    right: 0;
    z-index: -1;
  }
}
.home main .ds_services .ds_services_wrap {
  column-gap: 7.125em;
  position: relative;
  padding: 3.75em 0;
}
.home main .ds_services .ds_services_wrap h1 {
  margin-bottom: 1.125rem;
  max-width: calc(100% - 11rem);
}
.home main .ds_services .ds_services_wrap .services_text {
  margin-bottom: 2em;
  max-width: calc(100% - 11em);
}
.home main .ds_services .ds_services_wrap .services_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.875em;
  row-gap: 1.5em;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .home main .ds_services .ds_services_wrap .services_wrap {
    grid-template-columns: 1fr;
  }
}
.home main .ds_services .ds_services_wrap .services_wrap .ds_services_item a {
  display: flex;
  gap: 2.625em;
  padding: 1.5em;
  background: #3A7F4F;
  box-shadow: 6px 6px 20px 0px rgba(0, 0, 0, 0.1490196078);
  border-radius: 1.25em;
  text-decoration: none;
  color: currentColor;
  font-weight: 400;
  white-space: unset;
}
.home main .ds_services .ds_services_wrap .services_wrap .ds_services_item h3 {
  color: #F9F9F9;
  margin-bottom: 0.375em;
  min-height: 5rem;
}
@media (max-width: 991px) {
  .home main .ds_services .ds_services_wrap .services_wrap .ds_services_item h3 {
    min-height: unset;
  }
}
.home main .ds_services .ds_services_wrap .services_wrap .ds_services_item img {
  width: 3.875em;
  height: 3.875em;
  align-self: center;
}
.home main .ds_services .ds_services_wrap .ds_services_left {
  height: fit-content;
}
@media (max-width: 1399px) {
  .home main .ds_services .ds_services_wrap .ds_services_left {
    height: 25em;
  }
}
@media (max-width: 1199px) {
  .home main .ds_services .ds_services_wrap .ds_services_left {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
  }
}
.home main .ds_services .ds_services_wrap .ds_services_left img {
  width: auto;
  height: 100%;
}
.home main .ds_jobs {
  padding: 3.75em 0;
}
.home main .ds_jobs .ds_jobs_wrap {
  justify-content: space-between;
  gap: 1.5em;
  flex-wrap: wrap;
}
.home main .ds_jobs .ds_jobs_right {
  min-width: 0;
}
.home main .ds_jobs .ds_jobs_left {
  width: 25em;
  flex-shrink: 0;
}
.home main .ds_jobs .ds_jobs_left h1 {
  margin-bottom: 1.375rem;
}
.home main .ds_jobs .ds_jobs_left .jobs_link {
  margin-top: 2em;
}

.services-slider-section {
  padding: 6em 0;
}
.services-slider-section .container .text-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-slider-section h2 {
  margin-bottom: 3rem;
  margin-top: 1.5rem;
  max-width: 640px;
}
.services-slider-section .swiper-button-prev, .services-slider-section .swiper-button-next {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background-color: #3A7F4F;
}
.services-slider-section .swiper-button-prev svg, .services-slider-section .swiper-button-next svg {
  fill: none !important;
  height: 14px !important;
}

.services-slider-container {
  display: grid;
  grid-template-columns: 31% 31% 31%;
  gap: 32px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .services-slider-container {
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .services-slider-container {
    grid-template-columns: calc(50% - 12px) calc(50% - 12px);
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .services-slider-container {
    grid-template-columns: 100%;
    gap: 32px;
  }
}

.service-slide {
  border-radius: 15px;
  color: #000000;
  flex-shrink: 0;
  height: auto;
  border: 1.5px solid rgba(15, 46, 21, 0.1019607843);
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.service-slide .service-home-img {
  width: 100%;
  height: 284px;
  border-radius: 20px 20px 0 0;
  object-fit: cover;
  object-position: center;
}
.service-slide .service-heading-wrap {
  background-color: #3A7F4F;
  width: 100%;
  padding: 1em 2em;
  margin-top: -8px;
}
.service-slide h3 {
  font-size: 1.5em !important;
  line-height: 1.5em !important;
  font-weight: 400;
  color: white;
}
.service-slide .service-slide-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 2em;
  width: 100%;
}
.service-slide .service-slide-text p {
  margin-bottom: 1em;
}
.service-slide .service-slide-text .service-price {
  font-weight: 600;
  text-decoration: underline;
}
.service-slide .service-slide-text a {
  margin-top: auto;
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: underline;
}
.service-slide .service-slide-text a:hover {
  transition: all 0.3s;
  color: #3A7F4F;
}

.cta-service {
  border: 0 !important;
  color: white !important;
  background-image: linear-gradient(rgba(170, 122, 207, 0.85), rgba(170, 122, 207, 0.85)), url("/wp-content/uploads/2025/11/8e6b709b93578d728b6660a2fb343f6cb246687c-1-scaled.webp");
  background-size: cover, 85%;
  background-repeat: no-repeat;
  background-position: center, right -80px bottom -400px;
}
@media (max-width: 1200px) {
  .cta-service {
    background-position: center, right -80px bottom -280px;
  }
}
@media (max-width: 540px) {
  .cta-service {
    background-position: center, right -80px bottom -600px;
  }
}
@media (max-width: 460px) {
  .cta-service {
    background-position: center, right -80px bottom -400px;
  }
}
.cta-service .service-slide-text {
  max-width: 65%;
}

.services-under-btns {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 3em;
}
@media (max-width: 540px) {
  .services-under-btns {
    flex-direction: column;
    align-items: center;
  }
}

.why-us-section {
  margin-top: 6em;
  margin-bottom: 6em;
}

.why-us-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .why-us-wrapper {
    flex-direction: column;
    gap: 3em;
  }
}
.why-us-wrapper .why-us-image-wrap {
  border-radius: 40px;
  position: relative;
  width: 65%;
  height: 678px;
}
@media (max-width: 992px) {
  .why-us-wrapper .why-us-image-wrap {
    width: 100%;
  }
}
.why-us-wrapper .why-us-image-wrap img {
  position: absolute;
  border-radius: 40px;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.why-us-wrapper .why-us-image-wrap .why-us-image-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border-radius: 40px;
  padding: 4em 3em;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(-47.99deg, rgba(0, 0, 0, 0) 32.48%, #000000 95.57%), linear-gradient(-71.03deg, rgba(0, 0, 0, 0) 4.94%, rgba(0, 0, 0, 0.4) 86.34%);
}
.why-us-wrapper .why-us-image-wrap .why-us-image-text .why-us-text-upper {
  max-width: 400px;
}
.why-us-wrapper .why-us-image-wrap .why-us-image-text .why-us-text-upper h2 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.why-us-wrapper .why-us-benefits-wrap {
  padding: 0 3em;
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5em;
  border-radius: 40px;
  background-color: #F9F9F9;
}
@media (max-width: 992px) {
  .why-us-wrapper .why-us-benefits-wrap {
    width: 100%;
    padding: 3em 3em;
  }
}
.why-us-wrapper .why-us-benefits-wrap .why-us-benefit {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.why-us-wrapper .why-us-benefits-wrap .why-us-benefit img {
  height: 56px;
  margin-bottom: 1em;
}
.why-us-wrapper .why-us-benefits-wrap .why-us-benefit span {
  font-weight: bold;
  font-size: 1.25em;
}

.about-us-section {
  margin-top: 6em;
  margin-bottom: 80px;
  position: relative;
}
.about-us-section::before {
  content: "";
  position: absolute;
  bottom: 120px;
  right: 0;
  height: 450px;
  width: 250px;
  background-image: url("/wp-content/uploads/2025/12/Vector-12.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.about-us-section .about-us-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .about-us-section .about-us-wrap {
    flex-direction: column;
    gap: 2em;
  }
}
.about-us-section .about-us-wrap .about-us-image-wrap {
  width: 45%;
  position: relative;
}
.about-us-section .about-us-wrap .about-us-image-wrap::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -32px;
  height: 108px;
  width: 108px;
  background-image: url("/wp-content/uploads/2026/01/svgviewer-output-5.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 600px) {
  .about-us-section .about-us-wrap .about-us-image-wrap::before {
    display: none;
  }
}
@media (max-width: 1200px) {
  .about-us-section .about-us-wrap .about-us-image-wrap {
    width: 48%;
  }
}
@media (max-width: 992px) {
  .about-us-section .about-us-wrap .about-us-image-wrap {
    width: 100%;
  }
}
.about-us-section .about-us-wrap .about-us-image-wrap img {
  height: auto;
  width: 100%;
}
.about-us-section .about-us-wrap .about-us-image-wrap .about-us-img-icon-wrap {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background-color: white;
  border-radius: 40px;
  height: 56px;
  display: flex;
  align-items: center;
  width: 156px;
  padding-left: 6px;
}
.about-us-section .about-us-wrap .about-us-image-wrap .about-us-img-icon-wrap img {
  height: 42px;
  width: 42px;
  margin-right: 16px;
}
.about-us-section .about-us-wrap .about-us-image-wrap .about-us-img-icon-wrap span {
  font-weight: bold;
}
.about-us-section .about-us-wrap .about-us-text {
  width: 46%;
}
.about-us-section .about-us-wrap .about-us-text p {
  max-width: 530px;
}
@media (max-width: 992px) {
  .about-us-section .about-us-wrap .about-us-text {
    width: 100%;
  }
}
.about-us-section .about-us-wrap .about-us-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  max-width: 80%;
}
.about-us-section .about-us-wrap .about-us-text h3 {
  font-size: 1.125em;
  margin-bottom: 1.25em;
}
.about-us-section .about-us-wrap .about-us-text p {
  margin-bottom: 1.5em;
}
.about-us-section .about-us-wrap .about-us-text .about-us-benefits {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 2em;
}
.about-us-section .about-us-wrap .about-us-text .about-us-benefits .about-us-ben {
  display: flex;
  gap: 1em;
}
.about-us-section .about-us-wrap .about-us-text .about-us-benefits .about-us-ben .ben-icon-img-wrap {
  height: 36px;
  width: 36px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3A7F4F;
}
.about-us-section .about-us-wrap .about-us-text .about-us-btns {
  display: flex;
  gap: 1.5em;
}
@media (max-width: 420px) {
  .about-us-section .about-us-wrap .about-us-text .about-us-btns {
    flex-direction: column;
  }
}

.hp-reviews-section {
  padding: 6em 0;
}
.hp-reviews-section h2 {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.hp-reviews-section .hp-rev-swiper {
  margin-top: 2em;
}
.hp-reviews-section .swiper-button-prev, .hp-reviews-section .swiper-button-next {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background-color: #3A7F4F;
}
.hp-reviews-section .swiper-button-prev svg, .hp-reviews-section .swiper-button-next svg {
  fill: none !important;
  height: 14px !important;
}

.hp-review-slide {
  display: flex !important;
  justify-content: center !important;
}
.hp-review-slide .hp-review-slide-content {
  padding: 2em;
  border-radius: 30px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  max-width: 980px;
}
@media (max-width: 1200px) {
  .hp-review-slide .hp-review-slide-content {
    max-width: 80%;
  }
}
@media (max-width: 992px) {
  .hp-review-slide .hp-review-slide-content {
    flex-direction: column;
  }
}
@media (max-width: 580px) {
  .hp-review-slide .hp-review-slide-content {
    max-width: 90%;
  }
}
.hp-review-slide .hp-review-image {
  width: 500px;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
}
@media (max-width: 1200px) {
  .hp-review-slide .hp-review-image {
    width: 360px;
    height: 280px;
  }
}
@media (max-width: 992px) {
  .hp-review-slide .hp-review-image {
    width: 100%;
    height: auto;
  }
}
.hp-review-slide .hp-review-left-content {
  max-width: 40%;
}
@media (max-width: 992px) {
  .hp-review-slide .hp-review-left-content {
    max-width: unset;
    width: 100%;
  }
}
.hp-review-slide .hp-review-left-content .review-stars {
  margin-bottom: 1.5em;
  margin-top: 4em;
}
@media (max-width: 1200px) {
  .hp-review-slide .hp-review-left-content .review-stars {
    margin-top: 1.5em;
  }
}
.hp-review-slide .hp-review-left-content p {
  margin-bottom: 1.5em;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap {
  margin-top: 1.5em;
  display: flex;
  gap: 1em;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap .hp-client-info {
  display: flex;
  flex-direction: column;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap .hp-client-info span:first-child {
  font-weight: 800;
  font-size: 1.5em;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap .hp-client-info span:last-child {
  color: #3A7F4F;
  font-weight: 700;
}
.hp-review-slide .hp-review-left-content .hp-rev-client-wrap img {
  border-radius: 72px;
  height: 64px;
  width: 64px;
  object-fit: cover;
  object-position: center;
}

.hp-blog-section .hp-blog-heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 540px) {
  .hp-blog-section .hp-blog-heading-wrap {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}
.hp-blog-section .hp-blog-heading-wrap h2 {
  margin-top: 16px;
}

.reviews-pagination {
  margin-top: 2em;
}
.reviews-pagination .swiper-pagination-bullet {
  border: 1px solid rgba(44, 184, 184, 0.4);
  background: rgba(44, 184, 184, 0.2);
  height: 16px;
  width: 16px;
  opacity: 1;
}
.reviews-pagination .swiper-pagination-bullet-active {
  border: 1px solid #2CB8B8;
  background-color: #2CB8B8;
}

.about-us-social {
  background-color: #9DBD78;
  border-radius: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.about-us-social:hover {
  background-color: #7c995a;
}

.wp-google-powered {
  display: none !important;
}

.wp-gr {
  margin: 0 !important;
  padding: 0 !important;
}

.wp-gr .wp-google-right {
  width: unset !important;
}

.wp-gr .wp-google-rating {
  color: white !important;
}

.hp-google-review-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 100px;
  padding: 20px 30px;
  width: fit-content;
  color: white;
}
.hp-google-review-wrap > svg {
  margin-right: 16px;
}

.blog-grid {
  display: grid;
  justify-content: space-between;
  grid-template-columns: calc(33% - 20px) calc(33% - 20px) calc(33% - 20px);
  gap: 30px;
  margin-top: 4em;
}
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .blog-grid {
    grid-template-columns: 100%;
  }
}

article {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid rgba(15, 46, 21, 0.1019607843);
  transition: all 0.3s;
}
article .img-wrap-a {
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
  aspect-ration: 16/8;
  border-radius: 20px 20px 0 0;
}
article:hover img {
  transform: scale(1.1);
}
article .img-wrap-a img {
  border-radius: 20px 20px 0 0;
  aspect-ratio: 16/8;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
article .article-text-wrap {
  padding-top: 1.5em;
  padding-left: 2em;
  padding-right: 2em;
  padding-bottom: 2.5em;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
article .article-text-wrap .art-heading-link {
  text-decoration: none;
	margin-top:24px !important;
}
article .article-text-wrap .art-heading-link:hover {
  text-decoration: underline;
}
article .article-text-wrap h2 {
  font-size: 1.5em;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
article .article-text-wrap p {
  margin-bottom: 1.5em;
  font-weight: 500;
}
article .article-text-wrap .rubric-span {
  position: absolute;
  left: 0;
  top: -28px;
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #3A7F4F;
  backdrop-filter: blur(5px);
  font-weight: 700;
  padding: 1em 1.25em;
  padding-left: 1.5em;
  border-radius: 0 20px 20px 0;
  width: 75%;
  color: #FFFFFF !important;
}
article .article-text-wrap a {
  margin-top: auto;
}
article .article-text-wrap hr {
  margin-top: auto;
}

.article-date {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-date span {
  font-weight: 700;
}

.blog-h2 {
  margin-top: 1.5rem;
}

.single-article-section {
  margin-bottom: 6em;
}
.single-article-section h1 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: 3em;
}
.single-article-section .single-article-img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  object-position: center;
}
.single-article-section .blog-content {
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.4784313725);
  margin: 2.5em;
  margin-top: 0;
}
.single-article-section .blog-content h2 {
  margin-bottom: 2rem;
}
.single-article-section .blog-content p {
  margin-bottom: 2.5em;
  font-weight: 500;
  font-size: 17px;
}

.single-rubric-span {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 1.5em;
  font-weight: 700;
}
.single-rubric-span .rubric-span-icon {
  color: #3A7F4F;
  font-size: 24px;
  font-weight: 700;
}

.single-article-wrap {
  max-width: 86%;
}
@media (max-width: 992px) {
  .single-article-wrap {
    max-width: 100%;
  }
}

.single-img-and-text-wrap {
  border: 1.5px solid rgba(15, 46, 21, 0.1);
  border-radius: 20px;
  margin-top: 1em;
}

.blog-heading-section {
  z-index: 1;
  margin-bottom: 248px;
}
@media (max-width: 640px) {
  .blog-heading-section {
    margin-bottom: 80px;
  }
}
.blog-heading-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.blog-heading-section .container h1 {
  max-width: 600px;
  text-align: center;
}
.blog-heading-section::after {
  content: "";
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 490px;
  scale: 1;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='1095' height='491' viewBox='0 0 1095 491' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='547.084' cy='466.229' rx='547.084' ry='466.229' transform='matrix(1 0 0 -1 0 490.655)' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .blog-heading-section::after {
    height: 360px;
    background-size: contain;
  }
}
@media (max-width: 992px) {
  .blog-heading-section::after {
    top: 60px;
    height: 300px;
    background-size: contain;
  }
}
@media (max-width: 640px) {
  .blog-heading-section::after {
    display: none;
  }
}

.single-head-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.single-head-container h1 {
  color: white;
}
.single-head-container .single-rubric-span {
  margin-left: 0;
  border-radius: 0 20px 20px 0;
  padding: 24px;
  background-color: #3A7F4F;
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
  color: white;
}
.single-head-container .header-breadcrumbs {
  display: flex;
  gap: 10px;
}
.single-head-container .header-breadcrumbs .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
}
.single-head-container .header-breadcrumbs .disabled-bread {
  opacity: 0.4;
}

.ds-blog-rubrics-wrap {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .ds-blog-rubrics-wrap {
    gap: 16px;
  }
}

.category_name_float {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #603B21 0%, #815E45 100%);
  padding: 0 18px;
  border-radius: 100px;
  color: white;
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
  z-index: 15;
}

.ds-blog-subheading-wrap h2 {
  margin-top: 8px;
}

.about-us-first-upper-wrap {
  display: grid;
  grid-template-columns: 50% 50%;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .about-us-first-upper-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .about-us-first-upper-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
.about-us-first-upper-wrap .about-us-left-part h2 {
  margin-top: 8px;
  margin-bottom: 48px;
  max-width: 440px;
}

.about-us-first-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .about-us-first-imgs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-us-first-imgs img {
  max-width: 100%;
  aspect-ratio: 16/11;
  border-radius: 20px;
}

.story-steps-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  position: relative;
  margin: 0 auto;
  padding: 20px;
  margin-top: 20px;
}
.story-steps-wrapper::before {
  content: "";
  position: absolute;
  top: 90px;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  border-left: 4px dashed white;
  z-index: 0;
}

.cards-wrapper {
  display: contents;
}

.middle-steps-wrapper {
  display: contents;
}

.middle-step {
  grid-column: 2;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
  margin: 40px auto;
  align-self: center;
  transition: all 0.7s;
}
.middle-step.active {
  background-color: #3A7F4F;
}
.middle-step.active img {
  filter: brightness(0) invert(1);
}
.middle-step img {
  width: 28px;
  height: auto;
}
.middle-step:nth-child(1) {
  grid-row: 1;
}
.middle-step:nth-child(2) {
  grid-row: 2;
}
.middle-step:nth-child(3) {
  grid-row: 3;
}
.middle-step:nth-child(4) {
  grid-row: 4;
}

.story-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1019607843);
  color: #000000;
  align-self: center;
  margin: 20px 0;
  transition: all 0.7s;
}
.story-card.active {
  color: white;
  background-color: #3A7F4F;
}
.story-card h3 {
  margin-top: 0;
  margin-bottom: 15px;
}
.story-card p {
  margin: 0;
  line-height: 1.6;
}

.cards-wrapper:first-child .story-card:nth-child(1) {
  grid-column: 1;
  grid-row: 2;
}
.cards-wrapper:first-child .story-card:nth-child(2) {
  grid-column: 1;
  grid-row: 4;
}

.cards-wrapper:last-child .story-card:nth-child(1) {
  grid-column: 3;
  grid-row: 1;
}
.cards-wrapper:last-child .story-card:nth-child(2) {
  grid-column: 3;
  grid-row: 3;
}

@media (max-width: 992px) {
  .story-steps-wrapper {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-top: 64px;
  }
  .story-steps-wrapper::before, .story-steps-wrapper::after {
    display: none;
  }
  .middle-steps-wrapper {
    display: none;
  }
  .story-card {
    width: 100%;
    margin: 0 0 20px 0;
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .cards-wrapper:last-child .story-card:nth-child(1) {
    order: 1;
  }
  .cards-wrapper:first-child .story-card:nth-child(1) {
    order: 2;
  }
  .cards-wrapper:last-child .story-card:nth-child(2) {
    order: 3;
  }
  .cards-wrapper:first-child .story-card:nth-child(2) {
    order: 4;
  }
}
.about-us-steps-section {
  padding-bottom: 100px;
}

.about-horses-section {
  padding-top: 0;
  padding-bottom: 0;
}

.sluzby-heading {
  z-index: 1;
  margin-bottom: 240px;
}
@media (max-width: 640px) {
  .sluzby-heading {
    margin-bottom: 80px;
  }
}
.sluzby-heading .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sluzby-heading .container h1 {
  max-width: 600px;
  text-align: center;
}
.sluzby-heading::after {
  content: "";
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  height: 490px;
  scale: 0.9;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='1095' height='491' viewBox='0 0 1095 491' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='547.084' cy='466.229' rx='547.084' ry='466.229' transform='matrix(1 0 0 -1 0 490.655)' fill='%23F6F9F2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .sluzby-heading::after {
    height: 360px;
    background-size: contain;
  }
}
@media (max-width: 992px) {
  .sluzby-heading::after {
    top: 60px;
    height: 300px;
    background-size: contain;
  }
}
@media (max-width: 640px) {
  .sluzby-heading::after {
    display: none;
  }
}

#individualni-terapie {
  padding-top: 0 !important;
}

.sluzba-section {
  padding-top: 200px;
  margin-bottom: 0;
  position: relative;
}
.sluzba-section:last-of-type {
  margin-bottom: 164px;
}
@media (max-width: 767px) {
  .sluzba-section {
    padding-top: 80px;
  }
}
.sluzba-section .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .sluzba-section .container {
    flex-direction: column !important;
    gap: 56px;
  }
}
.sluzba-section .container .sluzba-text {
  max-width: 45%;
}
@media (max-width: 767px) {
  .sluzba-section .container .sluzba-text {
    max-width: 100%;
  }
}
.sluzba-section .container .sluzba-text .sluzba-podnadpis {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #3A7F4F;
  font-weight: 800;
  margin-bottom: 16px;
}
.sluzba-section .container .sluzba-text h2 {
  font-size: 2.75em;
  font-weight: 800;
  margin-bottom: 16px;
}
.sluzba-section .container .sluzba-text .sluzba-delka {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 16px;
}
.sluzba-section .container .sluzba-text p {
  margin-bottom: 2em;
}
.sluzba-section .container .sluzba-img {
  width: 45%;
  height: auto;
  aspect-ratio: 4/3;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 767px) {
  .sluzba-section .container .sluzba-img {
    width: 100%;
  }
}

.sluzba-switched .container {
  flex-direction: row-reverse;
}

.sluzba-section::after {
  content: "";
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%;
  height: 491px;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='459' height='523' viewBox='0 0 459 523' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.3' d='M444.582 0C444.582 22.6123 520.301 210.41 296.516 247.969C117.487 278.017 25.5208 443.176 1.91602 522' stroke='%23AA7ACF' stroke-width='4' stroke-dasharray='10 10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto;
  pointer-events: none;
}
@media (max-width: 767px) {
  .sluzba-section::after {
    display: none !important;
  }
}
.sluzba-section:last-of-type::after {
  display: none;
}

.sluzba-switched::after {
  transform: scaleX(-1);
}

.homepage-services-section {
  position: relative;
}
.homepage-services-section::before {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 80px;
  height: 76px;
  width: 76px;
  background-image: url("/wp-content/uploads/2025/12/Vector-3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.homepage-services-section::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 160px;
  width: 86px;
  height: 96px;
  background-image: url("/wp-content/uploads/2025/12/Group-5.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1400px) {
  .homepage-services-section::after {
    top: 16px;
    height: 76px;
    width: 68px;
  }
}

.services-homepage-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.reservations-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  margin-top: 116px;
}

.services-list {
  display: grid;
  grid-template-columns: calc(33% - 8px) calc(33% - 8px) calc(33% - 8px);
  gap: 24px;
}
@media (max-width: 992px) {
  .services-list {
    grid-template-columns: calc(50% - 12px) calc(50% - 12px);
  }
}
@media (max-width: 600px) {
  .services-list {
    grid-template-columns: 100%;
  }
}
.services-list .service-item {
  width: 100%;
  border: 2px solid #3A7F4F;
  padding: 40px;
  border-radius: 20px;
  background-color: white;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s;
}
.services-list .service-item:hover {
  background-color: #3A7F4F;
  color: white;
}
.services-list .service-item:hover .service-item-icon-wrap {
  background-color: white;
}
.services-list .service-item:hover .service-item-icon-wrap img {
  filter: invert(0);
}
.services-list .service-item .service-item-icon-wrap {
  background-color: #3A7F4F;
  height: 66px;
  width: 66px;
  border-radius: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: inherit;
}
.services-list .service-item .service-item-icon-wrap img {
  max-height: 35px;
  max-width: 35px;
  color: white;
  filter: invert(1);
  transition: inherit;
}
.services-list .service-item h3 {
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 8px;
}
.services-list .service-item p {
  font-weight: 600;
  text-decoration: underline;
}

.calendar-container {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}
@media (max-width: 992px) {
  .calendar-container {
    gap: 32px;
  }
}
@media (max-width: 767px) {
  .calendar-container {
    flex-direction: column;
  }
}
.calendar-container .flatpickr-calendar {
  padding: 40px;
  border-radius: 20px;
  width: 560px;
  height: fit-content;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843) !important;
}
@media (max-width: 1400px) {
  .calendar-container .flatpickr-calendar {
    width: 480px;
  }
}
@media (max-width: 767px) {
  .calendar-container .flatpickr-calendar {
    width: 100%;
  }
}
.calendar-container .flatpickr-calendar .flatpickr-monthDropdown-months {
  font-weight: 800;
  font-size: 1em;
  margin-bottom: 24px;
}
.calendar-container .flatpickr-calendar .flatpickr-weekdays {
  margin-top: 16px;
}
.calendar-container .flatpickr-calendar .flatpickr-weekday {
  font-weight: 700 !important;
  color: black !important;
}

.flatpickr-innerContainer {
  display: flex;
  justify-content: center;
}

#flatpickr-mount {
  flex: 0 0 auto;
  display: none;
}

.slots-container {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843) !important;
  padding: 40px 60px;
  border-radius: 20px;
  width: 480px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1400px) {
  .slots-container {
    width: 428px;
  }
}
@media (max-width: 992px) {
  .slots-container {
    padding: 40px 40px;
  }
}
@media (max-width: 767px) {
  .slots-container {
    width: 100%;
  }
}
.slots-container h3 {
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}
.slots-container #slots-output {
  flex-direction: column;
  display: flex;
  gap: 12px;
}
.slots-container .slot-btn {
  width: 100%;
  height: 48px;
  border: 2px solid rgba(58, 127, 79, 0.2);
  border-radius: 20px;
  background-color: white;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.slots-container .slot-btn:hover {
  background-color: #3A7F4F;
  color: white;
}

.flatpickr-day.selected {
  background: #3A7F4F !important;
  border-color: #3A7F4F !important;
}

.form-title {
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 10px;
  color: #000;
}

.booking-summary {
  text-align: center;
  color: #3A7F4F;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 40px;
  text-decoration: underline;
}

.form-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1/-1;
}

.form-group label {
  display: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #333;
  font-weight: 700;
}

.consents {
  margin-bottom: 40px;
  padding-left: 5px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.checkbox-container input {
  display: none;
}

.checkmark {
  height: 20px;
  width: 20px;
  background-color: rgba(58, 127, 79, 0.1019607843);
  border-radius: 50%;
  margin-right: 15px;
  position: relative;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #3A7F4F;
}

.form-actions-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  gap: 24px;
}

.btn-back-outline {
  background: transparent;
  border: 2px solid #9ccc65;
  color: #7cb342;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-back-outline:hover {
  background: #f1f8e9;
}

.btn-submit-purple {
  background: #3A7F4F;
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-submit-purple:hover {
  background: #9565b4;
}

@media (max-width: 600px) {
  .form-grid-layout {
    grid-template-columns: 1fr;
  }
  .form-actions-row {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .btn-back-outline, .btn-submit-purple {
    width: 100%;
    justify-content: center;
  }
}
#step-3.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-summary-wrap {
  padding: 40px 48px;
  border-radius: 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843);
}
@media (max-width: 550px) {
  .booking-summary-wrap {
    padding: 32px;
  }
}

#step-4.active {
  display: flex !important;
  justify-content: center;
}

.step4-wrapper {
  padding: 40px 48px;
  border-radius: 20px;
  border: 1.5px solid rgba(15, 46, 21, 0.1019607843);
  width: 480px;
  display: flex;
  flex-direction: column;
}
.step4-wrapper h3 {
  width: 100%;
  text-align: center !important;
  margin-bottom: 8px;
}
.step4-wrapper h4 .qr-code-pay-heading {
  margin-bottom: 8px;
}

#qr-image {
  margin: 16px 0;
}

.qr-img-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.payment-price-p {
  font-weight: 700;
  font-size: 1.25em;
}

.flatpickr-current-month .numInputWrapper {
  display: none !important;
}

.flatpickr-monthDropdown-months {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  border: none !important;
  background: transparent !important;
  pointer-events: none !important;
  font-weight: 700 !important;
  font-size: 1.3em !important;
  color: #000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: transparent !important;
}

.flatpickr-current-month {
  width: 100% !important;
  left: 0 !important;
  padding-top: 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  height: 8px !important;
}

.reservation-detail-wrap {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-top: 64px;
}
@media (max-width: 992px) {
  .reservation-detail-wrap {
    flex-direction: column-reverse;
  }
}

.reservation-detail-grid {
  width: 100%;
}
.reservation-detail-grid h2 {
  margin-top: 64px;
  margin-bottom: 24px;
}

.detail-row {
  width: 100%;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.1019607843);
  display: flex;
  padding: 16px 0;
}
@media (max-width: 520px) {
  .detail-row {
    flex-direction: column;
  }
}
.detail-row .detail-label {
  width: 200px;
  font-weight: 800;
  font-size: 20px;
}
.detail-row .detail-value {
  font-size: 20px;
  font-size: 600;
}

.reservation-status-wrap {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  padding: 40px;
}
.reservation-status-wrap img {
  margin-bottom: 16px;
  width: 100%;
  max-width: 320px;
  height: auto;
}

.payment-status-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 20px;
  font-weight: 600;
  min-width: 330px;
}

@media (max-width: 1380px) {
  .reservation-detail-section {
    margin-top: 80px;
  }
}

.variant-options {
  margin-top: 8px;
}

#config-service-title {
  margin-bottom: 32px;
  text-align: center;
}

.pax-selector {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.pax-selector .pax-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(50% - 10px);
}
.pax-selector input {
  width: 100%;
}

.prubeh-steps-wrap {
  width: 100%;
  height: 540px;
  display: grid;
  grid-template-columns: 30% 30%;
  grid-auto-flow: column;
  grid-template-rows: 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  background-image: url("/wp-content/uploads/2025/12/image-1-e1765287049117.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  padding-top: 80px;
  margin-top: 32px;
}
@media (max-width: 1400px) {
  .prubeh-steps-wrap {
    grid-template-columns: 25% 25%;
    background-size: 50%;
    background-position: center;
  }
}
@media (max-width: 1200px) {
  .prubeh-steps-wrap {
    grid-template-columns: 30% 30%;
  }
}
@media (max-width: 992px) {
  .prubeh-steps-wrap {
    background-image: unset;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 40px;
  }
}
.prubeh-steps-wrap .prubeh-step {
  display: flex;
  height: fit-content;
  align-items: center;
  gap: 24px;
}
.prubeh-steps-wrap .prubeh-step:nth-child(1) {
  flex-direction: row-reverse;
  text-align: end;
}
.prubeh-steps-wrap .prubeh-step:nth-child(2) {
  flex-direction: row-reverse;
  text-align: end;
}
.prubeh-steps-wrap .prubeh-step:nth-child(1) {
  align-items: end;
}
.prubeh-steps-wrap .prubeh-step:nth-child(2) {
  align-items: end;
}
@media (max-width: 1400px) {
  .prubeh-steps-wrap .prubeh-step {
    flex-direction: column !important;
    align-items: start;
  }
}
@media (max-width: 992px) {
  .prubeh-steps-wrap .prubeh-step {
    flex-direction: row !important;
    align-items: center !important;
    text-align: start !important;
  }
}
@media (max-width: 450px) {
  .prubeh-steps-wrap .prubeh-step {
    flex-direction: column !important;
    align-items: start !important;
  }
}
.prubeh-steps-wrap .prubeh-step .prubeh-number {
  height: 90px;
  width: 90px;
  border-radius: 90px;
  flex-shrink: 0;
  background-color: #3A7F4F;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Paytone One", sans-serif;
  font-size: 2.75em;
  font-weight: 400;
  color: white;
}
.prubeh-steps-wrap .prubeh-step .prubeh-step-text-wrap h5 {
  font-size: 1.45em;
}
.prubeh-steps-wrap .prubeh-step .prubeh-step-text-wrap p {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}

.prubeh-section {
  position: relative;
}
.prubeh-section::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 80px;
  height: 80px;
  width: 80px;
  background-image: url("/wp-content/uploads/2025/12/Vector-3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.prubeh-section::before {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 80px;
  height: 80px;
  width: 80px;
  background-image: url("/wp-content/uploads/2025/12/Vector-3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.prubeh-section .container .text-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.our-alpaky-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .our-alpaky-wrap {
    display: grid;
    grid-template-columns: calc(50% - 16px) calc(50% - 16px);
    row-gap: 40px;
  }
}
@media (max-width: 767px) {
  .our-alpaky-wrap {
    grid-template-columns: 100%;
  }
}
.our-alpaky-wrap .our-alpak-card {
  position: relative;
  width: 30%;
  height: auto;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
@media (max-width: 1200px) {
  .our-alpaky-wrap .our-alpak-card {
    width: 100%;
  }
}
.our-alpaky-wrap .our-alpak-card .alpak-name {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #603B21 0%, #815E45 100%);
  padding: 0 24px;
  border-radius: 100px;
  color: white;
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
}
.our-alpaky-wrap .our-alpak-card .our-alpak-img {
  height: 256px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px 20px 0 0;
}
.our-alpaky-wrap .our-alpak-card .about-upper {
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #3A7F4F;
  margin-top: -8px;
}
.our-alpaky-wrap .our-alpak-card .about-upper .alpak-age-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.our-alpaky-wrap .our-alpak-card .about-upper .alpak-age-wrap span {
  font-size: 22px;
  color: white;
  font-family: "Paytone One", sans-serif;
}
.our-alpaky-wrap .our-alpak-card .alpak-text-wrap {
  padding: 32px;
  font-size: 14px;
  line-height: 24px;
}

.horses-section-wrap {
  position: relative;
}
.horses-section-wrap::before {
  content: "";
  position: absolute;
  bottom: 40px;
  right: 80px;
  height: 76px;
  width: 76px;
  background-image: url("/wp-content/uploads/2025/12/Vector-3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.horses-section-wrap::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 160px;
  width: 86px;
  height: 96px;
  background-image: url("/wp-content/uploads/2025/12/Group-5.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 1400px) {
  .horses-section-wrap::after {
    top: 16px;
    height: 76px;
    width: 68px;
  }
}

.our-alpaky-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.sluzba-about-cont {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .sluzba-about-cont {
    flex-direction: column;
    gap: 64px;
  }
}
.sluzba-about-cont .sluzba-about-text {
  width: 45%;
}
@media (max-width: 992px) {
  .sluzba-about-cont .sluzba-about-text {
    width: 100%;
  }
}
.sluzba-about-cont .sluzba-about-text h2 {
  margin-top: 12px;
  margin-bottom: 2rem;
}
.sluzba-about-cont .sluzba-about-text .sluzba-first-p {
  margin-bottom: 2rem;
  font-weight: 700;
}
.sluzba-about-cont .sluzba-about-text .sluzba-second-p {
  margin-bottom: 2rem;
}
.sluzba-about-cont .sluzba-about-text .sluzba-about-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1200px) {
  .sluzba-about-cont .sluzba-about-text .sluzba-about-btns {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 992px) {
  .sluzba-about-cont .sluzba-about-text .sluzba-about-btns {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 500px) {
  .sluzba-about-cont .sluzba-about-text .sluzba-about-btns {
    flex-direction: column;
    align-items: start;
  }
}
.sluzba-about-cont .sluzba-img-wrap {
  position: relative;
  width: 45%;
}
@media (max-width: 992px) {
  .sluzba-about-cont .sluzba-img-wrap {
    width: 100%;
  }
}
.sluzba-about-cont .sluzba-img-wrap::after {
  content: "";
  position: absolute;
  top: -48px;
  right: -64px;
  height: 80px;
  width: 80px;
  background-image: url("/wp-content/uploads/2025/12/Group-89226.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: scaleX(-1);
}
@media (max-width: 660px) {
  .sluzba-about-cont .sluzba-img-wrap::after {
    display: none;
  }
}
.sluzba-about-cont .sluzba-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
}

.sluzba-vyhody-wrap {
  display: grid;
  grid-template-columns: calc(33% - 10px) calc(33% - 10px) calc(33% - 10px);
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1200px) {
  .sluzba-vyhody-wrap {
    grid-template-columns: calc(50% - 12px) calc(50% - 12px);
    gap: 24px;
  }
}
@media (max-width: 1200px) {
  .sluzba-vyhody-wrap {
    grid-template-columns: 100%;
    gap: 32px;
  }
}
.sluzba-vyhody-wrap .sluzba-vyh-card {
  display: flex;
  gap: 24px;
  border-radius: 20px;
  padding: 24px 36px;
  box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, 0.1019607843);
}
.sluzba-vyhody-wrap .sluzba-vyh-card img {
  width: 56px;
  height: fit-content;
}
.sluzba-vyhody-wrap .sluzba-vyh-card .vyh-text h3 {
  line-height: 120%;
  font-size: 1.5em;
  font-weight: 400;
  margin-bottom: 16px;
}
.sluzba-vyhody-wrap .sluzba-vyh-card .vyh-text p {
  line-height: 180% !important;
}

.sluzba-faq-wrap {
  display: flex;
  gap: 20px;
  margin-top: 60px;
  align-items: flex-start;
}
.sluzba-faq-wrap .faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sluzba-faq-wrap .faq-box {
  background-color: white;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  box-shadow: 0px 0px 15px 2px rgba(0, 0, 0, 0.1019607843);
}
.sluzba-faq-wrap .faq-box .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
}
.sluzba-faq-wrap .faq-box .faq-question span {
  font-family: "Paytone One", sans-serif !important;
  font-weight: 400;
  font-size: 1.1em;
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open {
  width: 45px;
  height: 45px;
  background-color: #3A7F4F;
  color: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  line-height: 1;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open:hover {
  background-color: #1F4C2D;
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open .line-h, .sluzba-faq-wrap .faq-box .faq-question .faq-open .line-v {
  position: absolute;
  height: 2px;
  background-color: white;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open .line-h {
  width: 16px;
}
.sluzba-faq-wrap .faq-box .faq-question .faq-open .line-v {
  width: 16px;
  transform: rotate(90deg);
}
.sluzba-faq-wrap .faq-box.active .faq-question .faq-open .line-v {
  transform: rotate(45deg);
}
.sluzba-faq-wrap .faq-box.active .faq-question .faq-open .line-h {
  transform: rotate(-45deg);
}
.sluzba-faq-wrap .faq-box .faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.sluzba-faq-wrap .faq-box.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px 20px;
  border-top: 1px dashed white;
}
.sluzba-faq-wrap .faq-box .faq-answer p {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sluzba-faq-wrap {
    flex-direction: column;
    padding: 10px;
  }
}
.hp-gallery-upper-imgs {
  display: grid;
  grid-template-columns: calc(33% - 20px) calc(33% - 20px) calc(33% - 20px);
  gap: 30px;
  margin-bottom: 36px;
}
.hp-gallery-upper-imgs img {
  width: 100%;
  height: 284px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .hp-gallery-upper-imgs img {
    height: 200px;
  }
}

.hp-gallery-lower-imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  align-items: stretch;
}
.hp-gallery-lower-imgs .hp-gallery-texts {
  grid-column: 2/span 2;
  grid-row: 1/span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hp-gallery-lower-imgs .hp-gallery-texts h2 {
  margin-top: 20px;
  margin-bottom: 24px;
}
.hp-gallery-lower-imgs .hp-gallery-texts p {
  margin-bottom: 32px;
}
.hp-gallery-lower-imgs .hp-gallery-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .hp-gallery-lower-imgs .hp-gallery-img {
    height: 180px;
  }
}
.hp-gallery-lower-imgs .hp-gallery-img:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
}
.hp-gallery-lower-imgs .hp-gallery-img:nth-of-type(2) {
  grid-column: 1;
  grid-row: 2;
}
.hp-gallery-lower-imgs .hp-gallery-img:nth-of-type(3) {
  grid-column: 4;
  grid-row: 1;
}
.hp-gallery-lower-imgs .hp-gallery-img:nth-of-type(4) {
  grid-column: 4;
  grid-row: 2;
}

@media (max-width: 767px) {
  .hp-gallery-section .container {
    display: flex;
    flex-direction: column-reverse;
  }
  .hp-gallery-upper-imgs {
    margin-bottom: 0;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .hp-gallery-upper-imgs .hp-gallery-img {
    height: auto;
    aspect-ratio: 16/9;
  }
  .hp-gallery-lower-imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
    gap: 20px;
  }
  .hp-gallery-lower-imgs .hp-gallery-texts {
    grid-column: 1/-1;
    grid-row: 1;
    margin-bottom: 16px;
  }
  .hp-gallery-lower-imgs .hp-gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }
  .hp-gallery-lower-imgs .hp-gallery-img:nth-of-type(1) {
    grid-column: 1;
    grid-row: 2;
  }
  .hp-gallery-lower-imgs .hp-gallery-img:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2;
  }
  .hp-gallery-lower-imgs .hp-gallery-img:nth-of-type(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .hp-gallery-lower-imgs .hp-gallery-img:nth-of-type(4) {
    grid-column: 2;
    grid-row: 3;
  }
}
.photogallery-images-wrap {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.photogallery-images-wrap img {
  width: 100%;
  height: 284px;
  object-fit: cover;
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .photogallery-images-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .photogallery-images-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.photogallery-videos-wrap {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.photogallery-videos-wrap iframe {
  width: 100%;
  height: 480px;
  border-radius: 20px;
}
@media (max-width: 1200px) {
  .photogallery-videos-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .photogallery-videos-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.photogallery-more-videos-btn {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.products-filtering-wrap {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .products-filtering-wrap {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.products-filtering-wrap .products-categories-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 560px) {
  .products-filtering-wrap .products-categories-wrap {
    gap: 16px;
  }
}
.products-filtering-wrap #products-filter-sort {
  background-color: white;
  color: black;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 60px !important;
  padding-right: 24px;
  padding-left: 24px;
  width: 287px;
  font-family: "Paytone One", sans-serif;
  text-transform: uppercase;
  font-weight: 400 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: 0 !important;
}
@media (max-width: 992px) {
  .products-filtering-wrap #products-filter-sort {
    width: 100%;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: 100%;
  }
}

.custom-product-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843);
}
.custom-product-card .card-image-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: #FFFAF3;
  border-radius: 20px 20px 0 0;
}
.custom-product-card .card-image-wrapper .product-loop-image {
  height: 240px;
  width: auto;
}
.custom-product-card .card-content {
  padding: 32px;
  border-radius: 0 0 20px 20px;
  flex-grow: 1;
  height: auto;
  display: flex;
  flex-direction: column;
}
.custom-product-card .card-content .woocommerce-loop-product__title {
  margin: 14px 0;
  font-size: 22px;
}
.custom-product-card .card-content .woocommerce-loop-product__title a {
  text-decoration: none !important;
}
.custom-product-card .card-content .card-excerpt {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 16px;
}
.custom-product-card .card-content .card-price {
  margin: 14px 0 24px 0;
  margin-top: auto;
}
.custom-product-card .card-content .card-price .woocommerce-Price-amount {
  font-family: "Paytone One", sans-serif;
  font-size: 35px;
  line-height: 35px;
  color: #3A7F4F;
}

.product-grid {
  display: flex;
  gap: 80px;
}
@media (max-width: 992px) {
  .product-grid {
    flex-direction: column;
    gap: 56px;
  }
}

.product-gallery {
  flex: 1;
  width: 100%;
}
.product-gallery .gallery-inner {
  background-color: #FFFAF3;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
@media (max-width: 992px) {
  .product-gallery .gallery-inner {
    min-height: 400px;
  }
}
.product-gallery .gallery-inner img {
  max-width: 100%;
  height: auto;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-info .product-title {
  font-size: 45px;
  line-height: 55px;
  font-weight: 400;
  margin: 12px 0 24px 0;
  color: #111111;
}
@media (max-width: 600px) {
  .product-info .product-title {
    font-size: 32px;
    line-height: 48px;
  }
}
.product-info .product-stock-status {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.product-info .product-stock-status .status-dot {
  width: 30px;
  height: 30px;
  background-color: #3A7F4F;
  border-radius: 50%;
  margin-right: 16px;
}
@media (max-width: 600px) {
  .product-info .product-stock-status .status-dot {
    height: 24px;
    width: 24px;
  }
}
.product-info .product-stock-status .status-text {
  color: #3A7F4F;
  font-weight: 400;
  font-size: 22px;
  line-height: 22px;
  font-family: "Paytone One", sans-serif;
}
@media (max-width: 600px) {
  .product-info .product-stock-status .status-text {
    font-size: 20px;
  }
}
.product-info .product-description {
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 30px;
  max-width: 90%;
}
.product-info .product-price {
  font-family: "Paytone One", sans-serif;
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .product-info .product-price {
    font-size: 38px;
    line-height: 38px;
  }
}
.product-info .product-price del {
  opacity: 0.5;
  font-size: 0.7em;
  margin-right: 10px;
}
.product-info .product-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 420px) {
  .product-info .product-actions {
    flex-direction: column-reverse;
    align-items: start;
  }
}
.product-info .product-actions .quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-info .product-actions .quantity-wrapper .qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3E7C4F;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}
.product-info .product-actions .quantity-wrapper .qty-btn:hover {
  background-color: #2e5c3b;
}
.product-info .product-actions .quantity-wrapper .qty-btn:focus {
  outline: none;
}
.product-info .product-actions .quantity-wrapper .quantity {
  margin: 0;
  display: flex;
  align-items: center;
}
.product-info .product-actions .quantity-wrapper .quantity input[type=number] {
  border: none;
  background: transparent;
  width: 40px;
  height: auto;
  padding: 0;
  padding-bottom: 4px;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  color: #111111;
  -moz-appearance: textfield;
  margin: 0;
  font-family: "Paytone One", sans-serif;
}
.product-info .product-actions .quantity-wrapper .quantity input[type=number]:focus {
  outline: none;
}
.product-info .product-actions .quantity-wrapper .quantity input[type=number]::-webkit-outer-spin-button, .product-info .product-actions .quantity-wrapper .quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.related-products-grid {
  margin-top: 40px;
}

.white-brown-border-btn.active {
  background-color: #603B21;
  color: white;
}

.cart-page-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 60px;
}
@media (max-width: 992px) {
  .cart-page-layout {
    flex-direction: column;
  }
}
.cart-page-layout .cart-main-content {
  flex: 2;
  width: 100%;
}
.cart-page-layout .cart-sidebar {
  flex: 1;
  width: 100%;
  max-width: 450px;
}
@media (max-width: 992px) {
  .cart-page-layout .cart-sidebar {
    max-width: 100%;
  }
}

.cart-page-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 60px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cart-page-layout {
    flex-direction: column;
  }
}
.cart-page-layout .cart-main-content {
  flex: 2;
  width: 100%;
}
.cart-page-layout .cart-sidebar {
  flex: 1;
  width: 100%;
  max-width: 450px;
}
@media (max-width: 992px) {
  .cart-page-layout .cart-sidebar {
    max-width: 100%;
  }
}

.woocommerce-cart-form .shop_table {
  border: none !important;
  border-collapse: collapse;
  width: 100%;
}
.woocommerce-cart-form .shop_table thead {
  background-color: transparent;
}
.woocommerce-cart-form .shop_table thead th {
  border-bottom: 2px solid #eee;
  padding: 15px 0;
  font-family: "Paytone One", sans-serif;
  font-weight: 400 !important;
  font-size: 16px;
  color: #111;
  text-transform: none;
  text-align: left;
}
.woocommerce-cart-form .shop_table tbody td {
  border-bottom: 1px solid #eee;
  padding: 24px 0;
  vertical-align: middle;
  background-color: transparent;
}
.woocommerce-cart-form .shop_table tbody .product-remove {
  width: 40px;
}
.woocommerce-cart-form .shop_table tbody .product-remove a.remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #D32F2F;
  color: white !important;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  border: none;
}
.woocommerce-cart-form .shop_table tbody .product-remove a.remove:hover {
  opacity: 0.8;
  background-color: #b71c1c;
}
.woocommerce-cart-form .shop_table tbody .product-thumbnail {
  width: 100px;
  padding-right: 20px;
}
.woocommerce-cart-form .shop_table tbody .product-thumbnail img {
  width: 54px;
  height: auto;
  border-radius: 10px;
  mix-blend-mode: multiply;
}
.woocommerce-cart-form .shop_table tbody .product-name {
  font-weight: 700;
  font-size: 16px;
}
.woocommerce-cart-form .shop_table tbody .product-name a {
  text-decoration: none;
  color: #111;
}
.woocommerce-cart-form .shop_table tbody .product-price, .woocommerce-cart-form .shop_table tbody .product-subtotal {
  font-family: "Paytone One", sans-serif;
  font-family: 400 !important;
  font-size: 18px;
  color: #111;
}
.woocommerce-cart-form .shop_table tbody .product-subtotal {
  font-weight: 700;
}
.woocommerce-cart-form .shop_table tbody .quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}
.woocommerce-cart-form .shop_table tbody .quantity-wrapper .qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #3E7C4F;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: background 0.3s;
}
.woocommerce-cart-form .shop_table tbody .quantity-wrapper .qty-btn:hover {
  background-color: #2e5c3b;
}
.woocommerce-cart-form .shop_table tbody .quantity-wrapper .quantity {
  margin: 0;
}
.woocommerce-cart-form .shop_table tbody .quantity-wrapper .quantity input[type=number] {
  border: none;
  background: transparent;
  width: 40px;
  height: auto;
  padding: 0;
  text-align: center;
  font-family: "Paytone One", sans-serif;
  font-size: 20px;
  color: #111;
  -moz-appearance: textfield;
}
.woocommerce-cart-form .shop_table tbody .quantity-wrapper .quantity input[type=number]::-webkit-outer-spin-button, .woocommerce-cart-form .shop_table tbody .quantity-wrapper .quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.woocommerce-cart-form .shop_table tbody tr:last-child td.actions {
  padding-top: 30px;
  border-bottom: none;
}
.woocommerce-cart-form .shop_table tbody tr:last-child td.actions > button[name=update_cart] {
  display: none;
}

.cart-sidebar .cart-collaterals {
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}
.cart-sidebar .cart-collaterals h2 {
  font-size: 24px;
  margin-top: 0;
  font-weight: 400;
  margin-bottom: 20px;
  border-bottom: none;
  color: #111;
}
.cart-sidebar .cart-collaterals .coupon-sidebar-wrapper {
  margin-bottom: 30px;
}
.cart-sidebar .cart-collaterals .coupon-sidebar-wrapper .coupon-label {
  display: block;
  font-weight: 400;
  margin-bottom: 10px;
  color: #111;
}
.cart-sidebar .cart-collaterals .coupon-sidebar-wrapper .coupon-input-group {
  display: flex;
  background: #EEF2EE;
  border-radius: 50px;
}
.cart-sidebar .cart-collaterals .coupon-sidebar-wrapper .coupon-input-group input#coupon_code {
  border: none;
  background: transparent;
  flex-grow: 1;
  padding: 10px 20px;
  outline: none;
  font-size: 14px;
  color: #111;
}
.cart-sidebar .cart-collaterals .coupon-sidebar-wrapper .coupon-input-group input#coupon_code::placeholder {
  color: #666;
  font-style: italic;
}
.cart-sidebar .cart-collaterals .coupon-sidebar-wrapper .coupon-input-group button.apply-coupon-btn {
  background-color: #3E7C4F;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 25px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s;
  width: 116px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-sidebar .cart-collaterals .coupon-sidebar-wrapper .coupon-input-group button.apply-coupon-btn:hover {
  background-color: #2e5c3b;
}
.cart-sidebar .cart-collaterals .shop_table th {
  text-align: left;
  font-weight: 400;
  color: #111;
  border-top: none;
}
.cart-sidebar .cart-collaterals .shop_table td {
  text-align: right;
  font-weight: 800;
  color: #111;
  border-top: none;
}
.cart-sidebar .cart-collaterals .shop_table .order-total td {
  font-size: 24px;
  font-family: "Paytone One", sans-serif;
}

.shop_table {
  width: 100%;
}

.wc-proceed-to-checkout .checkout-button {
  width: 100%;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.woocommerce-cart article {
  border: 0 !important;
}

.woocommerce-checkout article {
  border: 0 !important;
}

.woocommerce-account article {
  border: 0 !important;
}

.woocommerce-page article {
  border: 0 !important;
}

.ds-checkout-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding-bottom: 80px;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .ds-checkout-container {
    flex-direction: column;
  }
}

.ds-col-left {
  flex: 2;
  width: 100%;
}

.ds-col-right {
  flex: 1;
  width: 100%;
  max-width: 450px;
}
@media (max-width: 992px) {
  .ds-col-right {
    max-width: 100%;
  }
}

.ds-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.ds-title {
  font-family: "Paytone One", sans-serif;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 25px;
  color: #111;
}

.ds-checkout-form .ds-billing-fields,
.ds-checkout-form .ds-shipping-fields,
.ds-checkout-form .ds-notes-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.ds-checkout-form .ds-billing-fields h3,
.ds-checkout-form .ds-shipping-fields h3 {
  display: none !important;
}
.ds-checkout-form .form-row {
  width: calc(50% - 10px) !important;
  margin: 0 !important;
  padding: 0;
  flex-grow: 0;
}
@media (max-width: 576px) {
  .ds-checkout-form .form-row {
    width: 100% !important;
  }
}
.ds-checkout-form .form-row.notes {
  width: 100% !important;
}
.ds-checkout-form .form-row label {
  display: none;
}
.ds-checkout-form .form-row input.input-text,
.ds-checkout-form .form-row textarea,
.ds-checkout-form .form-row select {
  width: 100%;
  border: 2px solid #ddd;
  background-color: #fff;
  border-radius: 10px !important;
  padding: 15px 25px;
  font-size: 14px;
  outline: none;
  height: 50px;
  box-sizing: border-box;
  transition: all 0.2s;
  color: #111;
  font-weight: 600;
  margin: 0;
  font-family: "Nunito", sans-serif;
}
.ds-checkout-form .form-row input.input-text::placeholder,
.ds-checkout-form .form-row textarea::placeholder,
.ds-checkout-form .form-row select::placeholder {
  color: #333;
  font-weight: 600;
}
.ds-checkout-form .form-row input.input-text:focus,
.ds-checkout-form .form-row textarea:focus,
.ds-checkout-form .form-row select:focus {
  border-color: #3A7F4F;
}
.ds-checkout-form .form-row textarea {
  height: 120px;
  padding-top: 15px;
}
.ds-checkout-form .select2-container .select2-selection--single {
  height: 50px;
  border-radius: 10px !important;
  border: 2px solid #ddd;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.ds-checkout-form .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  color: #111;
  font-weight: 600;
  font-size: 14px;
}
.ds-checkout-form .select2-container .select2-selection--single .select2-selection__arrow {
  top: 12px;
  right: 20px;
}
.ds-checkout-form .ds-shipping-toggle {
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}
.ds-checkout-form .ds-shipping-toggle h3#ship-to-different-address {
  font-size: 16px;
  margin: 0;
}
.ds-checkout-form .ds-shipping-toggle h3#ship-to-different-address label {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  color: #111;
}
.ds-checkout-form .ds-shipping-toggle h3#ship-to-different-address label input[type=checkbox] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #ddd;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  cursor: pointer;
  outline: none;
  background-color: #fff;
}
.ds-checkout-form .ds-shipping-toggle h3#ship-to-different-address label input[type=checkbox]:checked {
  background-color: #3E7C4F;
  border-color: #3E7C4F;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white' width='16px' height='16px'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.ds-sidebar-card .ds-shipping-section,
.ds-sidebar-card .ds-payment-section {
  margin-bottom: 30px;
}
.ds-sidebar-card ul#shipping_method,
.ds-sidebar-card ul.payment_methods {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}
.ds-sidebar-card ul#shipping_method li,
.ds-sidebar-card ul.payment_methods li {
  list-style: none !important;
  list-style-type: none !important;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #EEF2EE;
  margin-bottom: 12px;
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: 0;
}
.ds-sidebar-card ul#shipping_method li:hover,
.ds-sidebar-card ul.payment_methods li:hover {
  background: #e0e6e0;
}
.ds-sidebar-card ul#shipping_method li input[type=radio],
.ds-sidebar-card ul.payment_methods li input[type=radio] {
  margin: 0 15px 0 0;
  accent-color: #3E7C4F;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.ds-sidebar-card ul#shipping_method li label,
.ds-sidebar-card ul.payment_methods li label {
  flex: 1;
  font-weight: 700;
  font-size: 14px;
  color: #111;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: auto;
}
.ds-sidebar-card ul#shipping_method li .payment_box,
.ds-sidebar-card ul.payment_methods li .payment_box {
  display: none !important;
}
.ds-sidebar-card .ds-sidebar-total {
  margin-top: 20px;
  margin-bottom: 20px;
}
.ds-sidebar-card .ds-sidebar-total .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  color: #111;
}
.ds-sidebar-card .ds-sidebar-total .row strong {
  font-size: 24px;
  font-family: "Paytone One", sans-serif;
}
.ds-sidebar-card #place_order {
  width: 100%;
  background-color: #3E7C4F;
  color: white;
  border-radius: 50px;
  padding: 18px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  border: none;
  transition: opacity 0.3s;
  cursor: pointer;
  display: block;
  margin-top: 20px;
}
.ds-sidebar-card #place_order:hover {
  opacity: 0.9;
  background-color: #2e5c3b;
}
.ds-sidebar-card .woocommerce-privacy-policy-text {
  font-size: 11px;
  color: #888;
  margin-top: 15px;
  text-align: center;
  line-height: 1.4;
}
.ds-sidebar-card .woocommerce-privacy-policy-text a {
  color: #111;
  text-decoration: underline;
}

.ds-recap-section {
  margin-top: 60px;
}
.ds-recap-section .ds-recap-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.ds-recap-section .ds-recap-item .ds-recap-img {
  width: 60px;
  margin-right: 20px;
}
.ds-recap-section .ds-recap-item .ds-recap-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  mix-blend-mode: multiply;
}
.ds-recap-section .ds-recap-item .ds-recap-info {
  flex: 1;
  font-weight: 700;
  color: #111;
}
.ds-recap-section .ds-recap-item .ds-recap-info strong {
  color: #666;
  margin-left: 5px;
  font-weight: 400;
}
.ds-recap-section .ds-recap-item .ds-recap-price {
  font-family: "Paytone One", sans-serif;
  font-size: 16px;
  color: #111;
}
.ds-recap-section .ds-recap-total-row {
  margin-top: 20px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 18px;
}
.ds-recap-section .ds-recap-total-row .green-text {
  color: #3E7C4F;
  font-family: "Paytone One";
  font-size: 24px;
}

.woocommerce-NoticeGroup {
  display: none !important;
}

.product-detail-section {
  margin-top: 80px;
}

.thankyou-section .container {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}
@media (max-width: 992px) {
  .thankyou-section .container {
    display: flex;
    flex-direction: column-reverse;
  }
}
.thankyou-section .container .thanks-img-part img {
  width: 90%;
  height: auto;
}
.thankyou-section .container .thanks-text-part {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wc-empty-cart-message {
  margin-bottom: 16px;
}

.woocommerce-LostPassword a {
  transition: all 0.3s;
}
.woocommerce-LostPassword a:hover {
  color: #3A7F4F;
}

.added_to_cart {
  margin-top: 8px;
  transition: all 0.3s;
}
.added_to_cart:hover {
  color: #3A7F4F;
}

#shipping_postcode {
  margin-bottom: 20px;
}

.checkout-inline-error-message {
  margin-bottom: 0 !important;
  margin-top: 8px;
  color: red;
}

.woocommerce-cart .woocommerce-message {
  color: #3A7F4F;
}

.woocommerce-form-login {
  margin-bottom: 32px;
}

.woocommerce-account section {
  margin-top: 56px;
  margin-bottom: 0;
}
.woocommerce-account .woocommerce-column {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.woocommerce-account .woocommerce {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 992px) {
  .woocommerce-account .woocommerce {
    flex-direction: column;
  }
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  min-width: 320px;
  padding: 32px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
  height: fit-content;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 0 !important;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active {
  color: #3A7F4F;
  font-weight: 800;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  font-size: 18px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
  color: #3A7F4F;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  width: 100%;
  padding: 32px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content mark {
  background-color: transparent;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .u-columns .woocommerce-Address {
  width: 100% !important;
  max-width: unset;
}

.woocommerce-column--billing-address, .woocommerce-column--shipping-address {
  width: 100% !important;
  max-width: unset;
}

.woocommerce-columns--addresses {
  margin-bottom: 0;
}

.woocommerce-table--order-details th, .woocommerce-table--order-details td {
  text-align: left;
}

.woocommerce-order-details {
  margin-bottom: 40px;
}

.woocommerce-Button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  background-color: #3A7F4F;
  color: #FFFFFF;
  gap: 1em;
  outline: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  height: 54px;
  border-radius: 80px;
  font-weight: 400;
  letter-spacing: 2px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Paytone One", sans-serif !important;
  outline: 0 !important;
  border: 0;
}
.woocommerce-Button:hover {
  background-color: #1F4C2D;
}
.woocommerce-Button svg {
  width: 1.375em;
  height: 1.375em;
}

body.woocommerce-account:not(.logged-in) .entry-content {
  display: flex;
  justify-content: center;
}
body.woocommerce-account:not(.logged-in) .entry-content .woocommerce {
  display: flex;
  flex-direction: column !important;
  max-width: 560px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.0784313725);
  padding: 32px;
  padding-top: 0 !important;
}
@media (max-width: 400px) {
  body.woocommerce-account:not(.logged-in) .entry-content .woocommerce {
    padding: 24px;
  }
}
body.woocommerce-account:not(.logged-in) .entry-content .woocommerce label {
  line-height: 32px;
  font-weight: 500;
}
body.woocommerce-account:not(.logged-in) .entry-content .woocommerce h2 {
  margin-top: 0;
  margin-bottom: 16px;
}
body.woocommerce-account:not(.logged-in) .entry-content .woocommerce .woocommerce-form-login__rememberme {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
}
body.woocommerce-account:not(.logged-in) .entry-content .woocommerce .woocommerce-form-login__rememberme input {
  width: 24px !important;
  height: 24px !important;
  accent-color: #3A7F4F;
}
body.woocommerce-account:not(.logged-in) .entry-content .woocommerce .woocommerce-form-login__submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.woocommerce-form-register__submit {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.form-login-wrapper .woocommerce-notices-wrapper {
  margin-top: 32px;
  color: red !important;
}

.woocommerce .woocommerce-notices-wrapper {
  margin-top: 32px;
  color: red !important;
}

.packages-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
}
.packages-wrapper .package-wrap {
  width: 100%;
  padding: 70px 50px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 20px;
}
@media (max-width: 767px) {
  .packages-wrapper .package-wrap {
    padding: 32px;
  }
}
.packages-wrapper .package-wrap .package-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
}
.packages-wrapper .package-wrap .package-table th {
  text-align: left;
  font-family: "Paytone One", sans-serif;
  font-weight: 400;
  padding-bottom: 20px;
  font-size: 24px;
}
@media (max-width: 992px) {
  .packages-wrapper .package-wrap .package-table th {
    font-size: 20px;
  }
}
@media (max-width: 500px) {
  .packages-wrapper .package-wrap .package-table th {
    font-size: 18px;
  }
}
.packages-wrapper .package-wrap .package-table td {
  background-color: rgba(58, 127, 79, 0.2);
  height: 72px;
  font-weight: 800;
  padding: 8px 8px;
}
.packages-wrapper .package-wrap .package-table td:first-child {
  padding-left: 32px;
  border-radius: 10px 0 0 10px;
}
.packages-wrapper .package-wrap .package-table td:last-child {
  padding-right: 24px;
  border-radius: 0 10px 10px 0;
}

.under-cenik-section .sluzba-about-text p {
  margin-top: 24px;
}
.under-cenik-section .sluzba-about-btns {
  margin-top: 32px;
}
.under-cenik-section .sluzba-img-wrap:after {
  top: 16px !important;
  right: -16px !important;
  height: 88px;
  width: 88px;
}

.under-cenik-img {
  width: 100% !important;
  height: auto !important;
}

.cv-variations-list {
	margin-bottom: 2em;
}

.cv-label {
	font-family: "Paytone One", sans-serif !important;
}

.cv-options {
	display: flex;
	align-items:center;
	flex-wrap: wrap;
	gap: 1em;
	margin-top:0.5em;
	margin-bottom: 1em;
}

.cv-opt {
	cursor: pointer;
	padding: 12px 16px;
	min-width: 48px;
	border-radius: 50px;
	background-color: rgb(238, 242, 238);
	border: 2px solid rgb(58, 127, 79);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	transition: all 0.25s;
	line-height: 1em !important;
}

.cv-opt:hover, .cv-opt.active {
	background-color: rgb(58, 127, 79);
	color: white;
}

.product-description p {
	margin-top:1em;
}

.horni-oznameni {
	width:100%;
	padding: 8px 0;
	background-color: #3A7F4F;
	color:white;
	display:flex;
	align-items:center;
	top:0;
	z-index:9999;
	text-align:center;
}

.header-with-all-wrap {
	position:fixed;
	z-index:9999;
	width: 100%;
}

.packeta-widget-button button {
	width: fit-content !important;
}

/*# sourceMappingURL=ds_front.css.map */
