:root {
  --main-color: rgba(164, 91, 44, 1);
  --main-color-hover: rgba(184, 108, 57, 1);
  --main-color-light: rgba(212, 165, 116, 1);
  --text-color: rgba(48, 48, 48, 1);
  --text-color-dark: rgba(26, 37, 45, 1);
  --text-color-light: rgba(102, 102, 102, 1);
  --border-color: rgba(153, 169, 173, 1);
  --dark-background: rgba(26, 37, 45, 1);
  --light-background: rgba(246, 239, 234, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  font-size: 18px;
  font-family: "Brandon FFF", Arial, sans-serif;
  /* overflow-x: hidden !important; */
}

.scraped-container {
  max-width: 1230px;
  width: 100%;
}

html {
  overflow-x: hidden !important;
}

.mbl {
  display: none !important;
}

.element-wrapper {
  justify-content: center;
  text-decoration: inherit;
  min-height: 0px;
}

.section-wrap {
  padding: 90px 0px 40px;
}

.section-wrap.has-bg {
  background-color: var(--light-background);
}

.section-wrap.bottom-padding {
  padding: 90px 0px 60px;
}

.section-wrap.banner-layout {
  padding-top: 40px;
}

.custom {
  width: 360px;
  max-width: 100%;
  margin: 0 auto !important;
}

*,
::after,
::before {
  box-sizing: border-box;
  border-width: 0px;
  border-style: solid;
  border-color: rgb(229, 231, 235);
}

p {
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

.heading-small {
  font-size: 30px;
  line-height: 135%;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Kapra Neue Pro custom", sans-serif;
  color: var(--text-color);
}

.headline-base {
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
  font-size: 48px;
  line-height: 55px;
  font-family: "Kapra Neue Pro custom", sans-serif;
}

.headline-base.long {
  max-width: 1020px;
}

.headline-base.full-width {
  max-width: 100%;
}

.title-highlit {
  color: var(--main-color);
}

.switch-opt {
  display: flex;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  position: relative;
  z-index: 1;
  padding: 5px;
  border: 1px solid rgba(229, 232, 235, 1);
  border-radius: 8px;
}

.continuity-box.active,
.continuity-box.active2 {
  background-color: var(--main-color);
  color: white;
  border-color: var(--main-color);
}

.continuity-box {
  flex: 1 1 0%;
  padding: 8px 6px;
  text-align: center;
  background-color: white;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s;
  position: relative;
  margin: 0px;
  font-size: 16px;
}

.continuity-box .save-text {
  padding: 5px 8px;
  border-radius: 30px;
  font-size: 14px;
  color: white;
  font-weight: 600;
  background: var(--main-color);
  white-space: nowrap;
}

.continuity-box.active2 .save-text {
  color: var(--main-color);
  background: white;
}

.continuity-box:first-child {
  border-radius: 8px 8px 8px 8px;
}

.continuity-box:last-child {
  border-radius: 8px 8px 8px 8px;
}

.continuity-box:not(.active):not(.active2):hover {
  background-color: rgb(234, 234, 234);
}

.max-w-178 {
  max-width: 178px;
}

.max-w-700 {
  max-width: 700px;
  margin: 0px auto !important;
}

.relative {
  position: relative;
}

.fk-collapsible-list:focus-visible {
  outline: unset;
}

.fk-collapsible-list-left-label {
  display: flex;
  flex-direction: row;
  border: none;
  align-items: center;
  padding: 15px 5px 15px 15px;
  cursor: pointer;
  background: var(--light-background);
  border-radius: 10px;
}

.gap-25 {
  gap: 25px;
}

.slick-arrow {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

i.fa-angle-right,
i.fa-angle-left {
  color: rgb(255, 255, 255);
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: rgba(0, 203, 53, 1);
  border-radius: 50%;
}

.shine {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: rgba(0, 203, 53, 1) 0px 0px 10px;
  animation: 2s linear 0s infinite normal none running shine;
}

@keyframes shine {
  0% {
    box-shadow: rgba(0, 203, 53, 1) 0px 0px 10px;
  }

  50% {
    box-shadow: rgba(0, 203, 53, 1) 0px 0px 20px,
      rgba(0, 203, 53, 1) 0px 0px 20px, rgba(0, 203, 53, 1) 0px 0px 20px;
  }

  100% {
    box-shadow: rgba(0, 203, 53, 1) 0px 0px 10px;
  }
}

@keyframes red-shine {
  0% {
    box-shadow: rgb(231, 76, 60) 0px 0px 10px;
  }

  50% {
    box-shadow: rgb(231, 76, 60) 0px 0px 20px, rgb(231, 76, 60) 0px 0px 20px,
      rgb(231, 76, 60) 0px 0px 20px;
  }

  100% {
    box-shadow: rgb(231, 76, 60) 0px 0px 10px;
  }
}

[data-gjs-type="text"][class*="gjs-comp-selected"] {
  outline: purple solid 3px !important;
}

.fk-row {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  height: auto;
  max-width: 100%;
}

.fk-row.cc-selected {
  outline: red solid 3px !important;
}

.bsFlexWrapClass {
  flex-wrap: wrap;
}

.fk-col {
  min-height: 25px;
  padding: 0;
  flex-grow: 1;
  width: min-content;
}

.fk-col.cc-selected {
  outline: rgb(248, 186, 3) solid 3px !important;
}

[data-slide-id="slick-slide20"] {
  width: 100%;
}

[data-slide-id="cc-id-rzW1qY4Ua8lb"] {
  width: 100%;
}

[data-slide-id="cc-id-LW0B2uqXAvfg"] {
  width: 100px;
  padding: 0px;
}

[data-slide-id="cc-id-8EukH3qb4fEk"] {
  width: 100px;
  padding: 0px;
}

[data-slide-id="cc-id-TCyaFMYvaxA8"] {
  width: 100%;
}

[data-slide-id="cc-id-mchVPXqifrB5"] {
  width: 100%;
}

[data-slide-id="cc-id-SD3ZbonDfVRu"] {
  width: 100px;
  padding: 0px;
}

[data-slide-id="cc-id-FCRUCU2BSo20"] {
  width: 100px;
  padding: 0px;
}

[data-slide-id="slick-slide220"] {
  margin: 0px;
  padding: 0px;
  width: 100%;
}

.cc-carousel-container {
  width: 100%;
  max-width: 100vw;
  padding: 0px;
  margin: 0 auto;
  height: auto;
}

.cc-carousel-slide {
  width: 100%;
  margin: 5px;
  padding: 0px;
  height: auto;
}

.cc-carousel-image {
  width: 100%;
  height: auto;
}

.cc-bottom-nav-carousel,
.cc-bottom-nav-carousel .cc-thumbnail-carousel-slide {
  padding: 0px;
  margin: 5px;
}

.cc-side-nav-carousel {
  padding: 5px;
  margin: 5px auto;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  max-width: 100vw;
}

.cc-side-nav-carousel .cc-vertical-carousel-nav {
  width: 25%;
  height: auto;
}

.cc-side-nav-carousel .cc-vertical-carousel-main {
  width: 65%;
  height: auto;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.fk-collapsible-list-collection {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fk-collapsible-list-wrapper {
  margin: 0;
  padding: 0px;
  width: 100%;
}

.fk-collapsible-list-label-text {
  text-align: left;
  padding: 0;
  width: 100%;
  font-weight: 700;
  color: var(--main-color);
}

.fk-collapsible-list-label-icon {
  padding: 5px;
  font-size: 12px;
  color: var(--main-color);
}

.fk-collapsible-list-label-icon .open-icon {
  transform: rotate(90deg);
}

.fk-collapsible-list-label-icon .close-icon {
  transform: rotate(180deg);
}

.fk-collapsible-list summary::marker {
  content: none;
}

.fk-collapsible-list summary::-webkit-details-marker {
  display: none;
}

details[open] .fk-collapsible-list-content {
  display: block;
}

.fk-collapsible-list-icon-rotate {
  padding: 0px 5px;
}

.fk-collapsible-list-content {
  padding: 10px 16px;
  margin-bottom: 16px;
  border: none;
  text-align: left;
}

.fk-headline.h2 {
  margin-bottom: 20px;
}

.background-0C7787FF {
  background-color: rgb(12, 119, 135);
}

.font-FFFFFFFF {
  color: rgb(255, 255, 255);
}

.background-F1E9B2FF {
  background-color: rgb(241, 233, 178);
}

.benefits-accordion details summary > .fk-collapsible-list-left-label {
  color: rgb(12, 119, 135) !important;
}

.benefits-accordion details[open] summary > .fk-collapsible-list-left-label {
  background-color: rgb(12, 119, 135) !important;
}

.benefits-accordion
  details[open]
  summary
  > .fk-collapsible-list-left-label
  .fk-collapsible-list-label-text,
.benefits-accordion
  details[open]
  summary
  > .fk-collapsible-list-left-label
  .fk-collapsible-list-label-icon
  > div
  i {
  color: rgb(255, 255, 255) !important;
}

.ftr-links > span a {
  color: rgb(48, 48, 48);
  text-decoration: none;
  transition: 0.65s;
}

.ftr-links > span a:hover {
  color: var(--main-color);
  text-decoration: underline;
}

.sticky.show {
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 10;
}

.fk-cc-id-kKEspdkCzZhA {
  height: 343px;
  width: 100%;
  max-width: 100%;
}

.font-0C7787FF {
  color: rgb(12, 119, 135);
}

.cc-carousel-text {
  font-weight: bold;
  color: black;
  text-align: center;
  padding: 5px;
}

.cc-bottom-nav-carousel .cc-thumbnail-carousel-slide,
.cc-bottom-nav-carousel .cc-thumbnail-carousel-image {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.background-22194D1A {
  background-color: rgba(34, 25, 77, 0.1);
}

.background-22194D00 {
  background-color: rgba(34, 25, 77, 0);
}

.background-22194DFF {
  background-color: rgb(34, 25, 77);
}

.background-22194D1C {
  background-color: rgba(34, 25, 77, 0.11);
}

.background-22194D0D {
  background-color: rgba(34, 25, 77, 0.05);
}

.background-FF55FFFF {
  background-color: rgb(255, 85, 255);
}

.background-F5F5F5FF {
  background-color: rgb(245, 245, 245);
}

.background-F5F5F51A {
  background-color: rgba(245, 245, 245, 0.1);
}

.background-F5F5F500 {
  background-color: rgba(245, 245, 245, 0);
}

.background-F5F5F517 {
  background-color: rgba(245, 245, 245, 0.09);
}

.background-F5F5F50D {
  background-color: rgba(245, 245, 245, 0.05);
}

.fgsdawted {
  background: linear-gradient(
    transparent 40%,
    rgba(250, 204, 21, 0.3) 40%,
    rgba(250, 204, 21, 0.3) 85%,
    transparent 85%
  );
}

.background-F5A623FF {
  background-color: rgb(245, 166, 35);
}

.background-FED084FF {
  background-color: rgb(254, 208, 132);
}

.bundles-main-wrap {
  margin-top: 30px;
}

.bundles-main-wrap.big {
  margin-top: 30px;
}

.desk-top {
  display: block !important;
}

.gap-10 {
  gap: 10px;
}

.mx-750 {
  max-width: 750px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 10px 12px;
  line-height: 1.5;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin: 20px auto;
  white-space: normal;
  font-family: Helvetica, serif;
  font-size: 16px;
}

.btn.btn-primary {
  background: var(--main-color);
  border-color: var(--main-color);
  border-radius: 9px;
  box-shadow: 0px 30px 18px rgba(0, 0, 0, 0.1),
    0px 13px 13px rgba(0, 0, 0, 0.17), 0px 3px 7px rgb(0 0 0 / 20%);
  font-weight: 600;
  max-width: none;
  margin: 8px auto 0px;
  color: white;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Kapra Neue Pro custom", sans-serif;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 5px;
  width: 100%;
}

.bundle-wrap .btn.btn-primary {
  width: calc(100% - 20px);
  max-width: 270px;
}

.btn.btn-primary.light {
  color: var(--main-color);
  background: white;
}

.btn.btn-primary.light:hover {
  color: var(--main-color);
  border-color: var(--main-color);
  background: white;
}

.btn.btn-primary.btn-one-style:active:focus {
  border-color: var(--main-color-hover);
  background: var(--main-color-hover);
  box-shadow: none;
  color: white;
}

.btn.btn-primary:hover {
  background: var(--main-color-hover);
  border-color: var(--main-color-hover);
}

.btn.btn-primary:not(.light):active {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.btn-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
  background: var(--main-color-hover);
}

.btn.btn-primary.btn-one-style:focus {
  background: var(--main-color-hover);
  border-color: var(--main-color-hover);
  box-shadow: none;
}

.fk-image-defaults {
  width: auto;
  height: auto;
  max-width: 100%;
}

.product-image {
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  max-height: 200px;
}

.circle-container {
  position: relative;
  width: 20px;
  margin-right: 5px;
}

.red-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: rgb(231, 76, 60);
  border-radius: 50%;
}

.red-shine {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: rgb(231, 76, 60) 0px 0px 10px;
  animation: 2s linear 0s infinite normal none running red-shine;
}

.logo-img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  margin: 0 auto;
}

/* Prevent initial flash by hiding carousel until ready */
.multi-carousel-container {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.multi-carousel-container.slick-initialized {
  opacity: 1;
}

.cc-carousel-container[data-cc-carousel-nav="true"] .slick-slide img {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.cc-carousel-container[data-cc-carousel-nav="true"]
  .slick-slide.slick-current
  img {
  opacity: 1;
}

.header {
  padding: 40px 0px 30px;
}

.prodcut-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px;
  margin-bottom: 40px;
}

.prodcut-wrap .left-col {
  width: 50%;
}

.slider-wrapp-left {
  width: 100%;
  display: block;
}

/* Benefits list styling */
.benefits-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 0;
}

.benefits-list.card-list {
  padding: 20px 16px;
}

.benefits-list.card-list .benefits-list-item {
  align-items: flex-start;
  margin-bottom: 12px;
}

.benefits-list.card-list .benefits-check-icon {
  margin-top: 4px;
}

.benefits-list-item {
  display: block;
  align-items: center;
  margin-bottom: 4px;
}

.benefits-list-item strong {
  display: contents;
}

.product-list .benefits-list-item {
  font-size: 12px;
  line-height: 16px;
}

.bundles-main-wrap.big .product-list .benefits-list-item {
  font-size: 16px;
  line-height: 28px;
}

.product-list .benefits-check-icon {
  width: 16px;
  height: 16px;
  margin-right: 5px;
  flex-shrink: 0;
}

.bundles-main-wrap.big .bundle-bottom-info {
  padding: 16px 10px 16px;
  font-size: 12px;
}

.bundles-main-wrap.big .price-unit-cost {
  font-size: 40px;
}

.bundles-main-wrap.big .bundle-price {
  padding: 12px 0px 12px;
  font-size: 22px;
}

.bundles-main-wrap.big .bundle-content-info {
  padding: 16px 8px 0px;
}

.bundles-main-wrap.big .btn.btn-primary {
  padding: 8px;
  font-size: 24px;
}

.bundles-main-wrap.big .bundle-header-wrap {
  font-size: 18px;
  padding: 20px 8px 10px;
}

.bundles-main-wrap.big .bundle-heading {
  font-size: 36px;
}

.bundles-main-wrap.big .bundle-badge {
  font-size: 20px;
  padding: 6px;
}

.benefits-check-icon {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  flex-shrink: 0;
}

.slick-slide img {
  border-radius: 10px;
}

/* Review Card Styling */
.review-card {
  background: white;
  border: 1px solid rgba(164, 91, 44, 1);
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 10px;
  font-size: 16px;
  line-height: 20px;
  margin: 0px 10px;
  text-align: left;
}

.review-stars img {
  width: 100%;
  height: auto;
  max-width: 110px;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.reviewer-info {
  display: flex;
  font-weight: 600;
  align-items: center;
}

.customer-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-right: 6px;
  object-fit: cover;
}

.verified-badge {
  display: flex;
  align-items: center;
}

.verified-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.product-right-wrap {
  padding: 0px 5px;
}

.product-right-col {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 18px;
}

.prodcut-info-wrap .rating-wrap {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
}

.prodcut-info-wrap .main-heading {
  margin: 8px 0px 0px 0px;
  font-size: 40px;
  line-height: 45px;
  font-family: "Kapra Neue Pro custom", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.switcher-wrap {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.product-description,
.text-description {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 16px;
  text-align: left;
}

.product-right-wrap .product-image {
  max-height: 126px;
}

.card-bundles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 15px;
  align-items: center;
  justify-items: center;
}

.warning-box-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.warning-box {
  display: flex;
  align-items: center;
  background: rgba(255, 194, 203, 1);
  border: 1px solid rgba(231, 76, 60, 1);
  border-radius: 10px;
  font-size: 14px;
  text-align: left;
  justify-content: center;
  padding: 3px 16px 3px 10px;
  gap: 6px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

.bundle-header-wrap {
  background: transparent;
  padding: 12px 8px 10px;
  font-size: 12px;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 3px;
  display: flex;
  flex-direction: column;
  font-weight: 500;
}

.bundle-heading {
  font-size: 24px;
  font-family: "Kapra Neue Pro custom", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 120%;
  /* font-family: "Kapra Neue Pro custom", sans-serif; */
}

.bundle-wrap {
  height: fit-content;
  transition: border-color 0.3s;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--light-background);
  width: 100%;
}

.bundle-wrap.primary {
  background-color: var(--main-color);
  color: white;
}

.bundle-wrap.primary .price-unit-cost {
  color: white;
}

.bundle-wrap.primary .days-cost-label {
  background: rgba(255, 255, 255, 0.22);
  border-color: white;
}

.price-unit-cost {
  display: flex;
  text-align: center;
  justify-content: center;
  width: 100%;
  font-size: 32px;
  line-height: 36px;
  color: var(--main-color);
  padding: 0px;
  font-weight: 600;
}

.price-unit-cost div:last-child {
  font-size: 12px;
  line-height: 32px;
  transform: translate(2px, 9px);
  font-weight: 500;
  font-family: "Brandon FFF", Arial, sans-serif;
}

strong,
.bold,
.fk-collapsible-list-left-label,
.continuity-box .save-text,
.bundle-badge,
.date-holder,
.ftr-links > span a {
  font-weight: 700;
}

.bundle-price {
  width: 100%;
  padding: 6px 0px 10px;
  font-size: 14px;
  text-align: center;
}

.bundle-badge {
  background-color: var(--dark-background);
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px;
  font-size: 13px;
  line-height: 100%;
  text-align: center;
  justify-content: center;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 24px;
}

.primary .bundle-badge {
  background: rgba(63, 125, 79, 1);
}

.bundle-content-info-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0px 2px;
}

.bundle-bottom-info {
  font-size: 12px;
  min-height: auto;
  text-align: center;
  padding: 14px 10px 14px;
}

.bundle-content-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px 0px;
  width: 100%;
}

.bundle-content-info .btn.btn-primary {
  max-width: 270px;
  width: 100%;
}

.less-amount {
  font-size: 12px;
  padding: 4px 15px;
  background: var(--main-color);
  color: white;
  font-weight: 700;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 33px;
  margin-top: 6px;
}

.box-payment-image {
  padding: 9px 0px;
  width: 100%;
  margin-bottom: 10px;
  object-fit: contain;
}

.stock-info {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  width: 100%;
}

.stock-info img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.icon-text-item {
  display: inline-block;
  text-align: center;
}

.icon-text-item span {
  display: inline;
}

.icon-text-item img {
  margin: 0px 6px;
}

.icon-text-item .circle-container {
  transform: translate(0px, -5px);
  display: inline-block;
}

.payemnt-info-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.payemnt-info-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.payemnt-info-item-content {
  max-width: 384px;
  width: 100%;
}

.payemnt-info-item-content img {
  width: 100%;
}

.bundle-wrap .payemnt-info-item-content {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.bundle-wrap .payemnt-info-item-content img {
  padding: 8px;
  width: 100%;
  max-width: 360px;
  margin-bottom: -14px;
  margin-top: 10px;
}

.guarantee-wrap {
  margin: 40px 0px 12px;
  display: block;
  width: 100%;
}

.guarantee-item-wrap {
  display: flex;
  align-items: center;
  background: var(--light-background);
  padding: 16px 20px;
  border-radius: 10px;
  text-align: left;
  gap: 20px;
}

.guarantee-icon-wrap {
  width: 120px;
  min-width: 120px;
}

.guarantee-item.big .guarantee-item-wrap {
  gap: 30px;
  background: transparent;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.guarantee-item.big .guarantee-icon-wrap {
  width: 216px;
  height: 216px;
  min-width: 216px;
}

.guarantee-text-description {
  margin-top: 10px;
  font-size: 16px;
  line-height: 21px;
}

.centered {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.centered p {
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.full-width {
  width: 100%;
}

/* General Content Block Styles */
.content-block {
  margin-bottom: 70px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.two-column-layout {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
}

.two-column-layout.review-wrap {
  gap: 56px;
  margin: 40px 0px;
}

.banner-layout .two-column-layout {
  gap: 0;
  background: var(--dark-background);
  border-radius: 30px;
  overflow: hidden;
}

.banner-layout .content-image img {
  border-radius: 0;
}

.banner-layout .content-column:last-child {
  padding: 50px 50px 50px 40px;
}

.banner-layout .headline-base {
  text-align: left;
  margin-left: 0;
  margin-bottom: 20px;
}

.banner-layout .content-text {
  font-size: 28px;
  line-height: 36px;
}

.banner-layout .cta-section {
  margin-left: 0;
  margin-top: 30px;
}

.white-text,
.white-text .footer-item {
  color: white;
}

.content-column {
  flex: 1;
}

.review-wrap .content-column:first-child {
  flex: 0.75;
}

.content-image {
  width: 100%;
  height: auto;
  position: relative;
}

.content-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}

.content-text p {
  margin-bottom: 16px;
}

.content-conclusion {
  margin-top: 20px;
}

.content-conclusion p {
  margin-bottom: 15px;
}

/* List Styles */
.numbered-list,
.x-marked-list,
.checkmark-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-item {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.item-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  font-family: "Kapra Neue Pro custom", sans-serif;
}

.item-number {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -10px;
  font-weight: bold;
  color: var(--text-color);
  font-family: "Kapra Neue Pro custom", sans-serif;
  flex-shrink: 0;
}

.review-wrap .item-number {
  font-size: 66px;
  width: 106px;
  height: auto;
  margin: 0;
  line-height: 1;
}

.review-wrap .list-item {
  gap: 12px;
  font-size: 22px;
}

.item-icon {
  color: rgba(231, 76, 60, 1);
  font-size: 20px;
  font-weight: bold;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* List Container Styles */
.list-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.item-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.progress-bar {
  width: 100%;
  height: 22px;
  border-radius: 0;
  background-color: var(--light-background);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: var(--main-color);
  transition: width 0.3s ease;
}

/* CTA Section */
.cta-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 62px;
}

.cta-section {
  max-width: 450px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.cta-section .btn.btn-primary {
  margin: 0;
  font-size: 30px;
  padding: 12px;
  box-shadow: none;
}

.cta-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: black;
}

.footer-icon {
  width: 20px;
  height: 20px;
}

.footer-item:last-child .footer-icon {
  height: 28px;
  width: 28px;
}

.footer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Cards Grid Styles */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.card-item {
  flex: 0 0 calc(33.333% - 20px);
  max-width: 400px;
  background: white;
  padding: 0px;
  box-shadow: none;
  overflow: hidden;
  border-radius: 20px;
  border: 2px solid var(--dark-background);
  display: flex;
  flex-direction: column;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background-color: var(--dark-background);
  color: white;
  padding: 8px 20px;
}

.card-title {
  font-weight: bold;
  margin: 0;
  font-size: 22px;
}

.card-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 200px;
  overflow: hidden;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-image-section {
  width: 100%;
  height: auto;
  padding: 28px 28px;
}

.card-image-section img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.card-label {
  background-color: var(--main-color);
  color: white;
  padding: 0px 30px;
  text-align: center;
  font-size: 18px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 110%;
}

/* Features Grid Structure */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 110px;
  height: 110px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text {
  max-width: 160px;
  font-weight: 600;
}

/* Video Slider Styles */
.videos-grid {
  margin-top: 40px;
  overflow: hidden;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.3s ease;
  width: 100%;
  /* Desktop: 100% to show all 4 */
}

.video-container {
  position: relative;
  width: 25%;
  flex-shrink: 0;
  padding: 0 15px;
  box-sizing: border-box;
  cursor: pointer;
  /* 4 videos = 25% each */
}

.video-container:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-player {
  width: 100% !important;
  height: 100% !important;
  object-fit: fill;
  border-radius: 20px;
  position: relative;
  top: 0;
  left: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.play-icon,
.pause-icon {
  width: 100%;
  height: 100;
  object-fit: contain;
}

.pause-icon {
  display: none;
}

.results-wrapper {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  flex-direction: column;
  display: flex;
}

.results-wrapper .card-header {
  min-height: 68px;
}

.relusts-wrap-item {
  justify-content: flex-start;
  align-items: center;
  max-width: 900px;
  position: relative;
  flex-direction: column;
  display: flex;
  width: 100%;
}

.results-description-wrapper {
  position: relative;
}

.sircle-row {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--dark-background);
  top: 30px;
  left: -8px;
  transform: rotate(45deg);
}

.results-row.reverse .sircle-row {
  left: auto;
  right: -8px;
}

.results-row {
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 25px;
  padding-bottom: 25px;
  flex-direction: row;
  display: flex;
  width: 100%;
}

.left-results {
  justify-content: center;
  align-items: flex-end;
  width: 40%;
  flex-direction: column;
  display: flex;
}

.date-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  font-size: 30px;
  flex-direction: row;
  display: flex;
  font-weight: 600;
}

.svg-icon._32x32 {
  width: 64px;
  height: 64px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.midd-results {
  justify-content: flex-start;
  align-items: center;
  width: 20%;
  flex-direction: column;
  display: flex;
  margin-top: 8px;
}

.icon-dot {
  border: none;
  background: white;
  width: 60px;
  height: 60px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.icon-dot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.line-holder {
  justify-content: center;
  align-items: flex-start;
  width: 40px;
  display: flex;
}

.line-dotted {
  border-left: 2px dashed var(--main-color);
  width: 2px;
  height: 100%;
  position: absolute;
}

.right-results {
  width: 40%;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.mobile-content {
  display: none;
}

/* Steps Grid Structure */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 80px;
  align-items: start;
}

.step-item {
  position: relative;
  background: white;
  display: flex;
  flex-direction: column;
}

.step-number {
  width: 64px;
  height: 64px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 2;
  font-size: 40px;
  color: white;
  line-height: 100%;
  font-family: "Kapra Neue Pro custom", sans-serif;
}

.step-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 4px solid var(--main-color);
  border-radius: 16px;
  box-shadow: 0px 7px 14px rgba(0, 0, 0, 0.22);
}

.step-content {
  padding: 0px;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  margin-top: 32px;
}

.step-title {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: bold;
}

.step-description {
  flex-grow: 1;
  line-height: 1.5;
}

/* Testimonials Grid Structure */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.testimonial-item {
  display: flex;
  padding: 12px 24px 12px 16px;
  border-radius: 10px;
  border: none;
  background: white;
  gap: 8px;
  box-shadow: 0px 2px 3px hsl(0deg 0% 0% / 25%);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-text-wrap {
  background: rgba(240, 242, 245, 1);
  padding: 10px 12px;
  border-radius: 20px;
  margin-bottom: 3px;
}

.testimonial-name {
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 2px;
}

.testimonial-description {
  font-size: 14px;
  margin: 0;
  line-height: 133%;
}

.testimonial-actions {
  display: flex;
  align-items: center;
  font-family: arial;
  font-weight: 600;
  color: hsl(0deg 0% 12% / 60%);
}

.testimonial-action-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial-action-btn {
  color: rgba(102, 102, 102, 1);
  cursor: auto;
  font-size: 11px;
}

.testimonial-reply {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  margin-left: 0px;
  padding-left: 0px;
}

.faq-big {
  margin-top: 50px;
}

.faq-big .fk-collapsible-list-left-label {
  background: white;
  border-radius: 0;
  font-size: 24px;
  line-height: 36px;
  padding: 15px;
}

.faq-big .fk-collapsible-list-content {
  background: white;
  padding-bottom: 20px;
}

.custom-inner {
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
}

.content-wrap-30 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 0px 130px;
  text-align: center;
}

.footer-logo {
  width: 100%;
  max-width: 150px;
  margin-bottom: 20px;
}

.disclaimer-box {
  max-width: 600px;
  padding: 20px 20px;
  border: 1px solid rgba(228, 228, 228, 1);
  text-align: center;
  font-size: 16px;
  line-height: 19px;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}

.disclaimer-box div {
  max-width: 474px;
}

.subtitle {
  font-size: 22px;
}

.has-icons {
  position: relative;
  overflow: hidden;
}

.has-icons > .fk-col {
  z-index: 1;
}

.bg-image {
  position: absolute;
  z-index: 0;
}

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

.bg-image.image-1 {
  right: -170px;
  top: -90px;
  width: 600px;
  max-width: 50%;
}

.bg-image.image-2 {
  left: -260px;
  width: 800px;
  bottom: -60px;
  max-width: 60%;
}

.bg-image.image-3 {
  right: -170px;
  top: 13%;
  width: 500px;
  max-width: 50%;
}

.bg-image.image-4 {
  left: -110px;
  width: 330px;
  max-width: 25%;
  top: 5%;
}

.bg-image.image-5 {
  left: -290px;
  width: 900px;
  bottom: 10%;
  max-width: 70%;
}

.mobile-view {
  display: none;
}

details summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::marker {
  display: none;
}

.styky-botton-wrapp {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark-background);
  padding: 16px;
  z-index: 999;
  box-shadow: 0px 20px 60px rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  transform: translate(0px, 100%);
  opacity: 0;
}

.styky-botton-wrapp.is-shown {
  transform: translate(0px, 0px);
  opacity: 1;
}

.sticky-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sticky-bottom-content-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-bottom-content-item span {
  display: flex;
  width: 50%;
  text-align: center;
  justify-content: flex-end;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.sticky-bottom-content-item .btn.btn-primary {
  font-size: 25px;
  box-shadow: none;
  margin: 0px auto 0px 24px;
  max-width: 280px;
  padding: 10px;
}

.timer-top-wrap {
  position: sticky;
  top: 0;
  z-index: 999;
}

.timer-top-wrap .section_row {
  max-width: none !important;
}

.timer-top-wrap .custom {
  margin: 0 !important;
}

.fall-banner {
  background-color: var(--light-background);
  padding: 10px 0px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: block;
  inset: 0px 0% auto;
  overflow: hidden;
  z-index: 99;
  position: relative;
  top: 0;
}

.fall-content {
  flex-flow: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  padding: 0;
  height: 100%;
}

.fall-inside {
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  padding: 0;
  max-width: 510px;
  height: 100%;
  color: white;
}

.fall-subheadline-text {
  text-align: center;
  font-size: 15.75px;
  line-height: 24px;
  font-weight: 600;
  color: var(--dark-background);
}

.fall-header-text {
  text-align: center;
  font-size: 28px;
  font-weight: 900;
  line-height: 24px;
  font-family: "Kapra Neue Pro custom";
  color: var(--main-color);
}

.fall-timer {
  background: transparent;
  padding: 0;
  border-radius: 5px;
  justify-content: center;
  align-items: flex-start;
  width: 150px;
  display: flex;
}

.fall-block {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fall-time-text-helloween {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 900;
  line-height: 22px;
  background: var(--dark-background);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.fall-text-bottom {
  color: rgba(26, 37, 45, 1);
  font-size: 12px;
  font-weight: 600;
  line-height: 14.4px;
}

.fall-double-dot {
  color: rgb(255, 255, 255);
  margin-left: 3.4px;
  margin-right: 3.4px;
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
}

.image-desktop-1 {
  position: absolute;
  right: 50px;
  height: 100%;
}

.image-desktop-2 {
  align-self: center;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0%;
  right: auto;
}

.image-mobile-2 {
  display: none;
}

.image-mobile-1 {
  display: none;
}

.black-friday-banner .separatorX {
  margin: 0px 10px;
  color: white;
}

.days-cost-label {
  padding: 3px 10px;
  border: 1px dashed var(--main-color);
  background: white;
  border-radius: 20px;
  font-size: 12px;
}

/* Kapra Neue Pro - Bold */
@font-face {
  font-family: "Kapra Neue Pro custom";
  src: url("https://cdn.jsdelivr.net/gh/saroasoyan1/fonts@main/kapra/KapraNeuePro-Bold.woff2")
    format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Kapra Neue Pro - SemiBold */
@font-face {
  font-family: "Kapra Neue Pro custom";
  src: url("https://cdn.jsdelivr.net/gh/saroasoyan1/fonts@main/kapra/KapraNeuePro-SemiBold.woff2")
    format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Kapra Neue Pro - Medium */
@font-face {
  font-family: "Kapra Neue Pro custom";
  src: url("https://cdn.jsdelivr.net/gh/saroasoyan1/fonts@main/kapra/KapraNeuePro-MediumExpanded.woff2")
    format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Brandon Text - Regular */
@font-face {
  font-family: "Brandon FFF";
  src: url("https://cdn.jsdelivr.net/gh/saroasoyan1/fonts@main/brandon/HvDTrial_BrandonText-Regular.woff2")
      format("woff2"),
    url("https://cdn.jsdelivr.net/gh/saroasoyan1/fonts@main/brandon/HvDTrial_BrandonText-Regular.woff")
      format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Brandon Text - Medium */
@font-face {
  font-family: "Brandon FFF";
  src: url("https://cdn.jsdelivr.net/gh/saroasoyan1/fonts@main/brandon/HvDTrial_BrandonText-Medium.woff2")
      format("woff2"),
    url("https://cdn.jsdelivr.net/gh/saroasoyan1/fonts@main/brandon/HvDTrial_BrandonText-Medium.woff")
      format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Brandon Text - Bold */
@font-face {
  font-family: "Brandon FFF";
  src: url("https://cdn.jsdelivr.net/gh/saroasoyan1/fonts@main/brandon/HvDTrial_BrandonText-Bold.woff2")
      format("woff2"),
    url("https://cdn.jsdelivr.net/gh/saroasoyan1/fonts@main/brandon/HvDTrial_BrandonText-Bold.woff")
      format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@media screen and (max-width: 991px) {
  .fall-inside {
    position: relative;
  }

  .fall-timer {
    z-index: 99;
    position: relative;
  }

  .header-banner {
    z-index: 99;
    position: relative;
  }

  .image-desktop-1 {
    display: none;
    right: -5px;
  }

  .image-desktop-2 {
    display: none;
  }

  .image-mobile-2 {
    display: block;
    position: absolute;
    inset: -11px -35px 0% auto;
  }

  .image-mobile-1 {
    align-self: flex-start;
    display: block;
    position: absolute;
    inset: -12px auto 0% -53px;
  }
}

@media (min-width: 768px) {
  .prodcut-wrap {
    align-items: stretch;
  }

  .slider-wrapp-left {
    position: sticky;
    top: 10px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    overflow: hidden;
  }

  .scraped-container {
    padding: 0px 10px;
  }

  .desktop-view {
    display: none !important;
  }

  .mobile-view {
    display: block;
  }

  .header {
    padding: 20px 0px 10px;
  }

  .logo-img {
    max-width: 126px;
  }

  .multi-carousel-container.slick-initialized {
    margin-left: -5px;
    margin-right: -5px;
  }

  .slick-slide img {
    border-radius: 6px;
  }

  .prodcut-info-wrap .rating-wrap {
    font-size: 12px;
  }

  .review-stars img {
    max-width: 80px;
  }

  .prodcut-info-wrap .main-heading {
    font-size: 30px;
    line-height: 35px;
  }

  .warning-box {
    gap: 0px;
    padding: 4px 8px 4px 10px;
    font-size: 12px;
    width: auto;
  }

  .card-bundles {
    grid-template-columns: repeat(1, 1fr);
  }

  .bundle-header-wrap.mobile-view,
  .bundles-main-wrap.big .bundle-header-wrap {
    display: flex;
    text-align: left;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
    margin-bottom: 14px;
    width: 100%;
    font-size: 3vw;
    /* font-size: 12px; */
  }

  .bundles-main-wrap.big .bundle-heading {
    font-size: 24px;
  }

  .bundles-main-wrap.big .price-unit-cost {
    font-size: 32px;
  }

  .bundle-badge,
  .bundles-main-wrap.big .bundle-badge {
    padding: 9px;
    font-size: 15px;
  }

  .bundle-content-info-wrap {
    flex-direction: row;
    padding: 6px;
  }

  .product-image {
    width: 43%;
  }

  .bundle-wrap .payemnt-info-item-content img {
    padding: 14px;
    margin-bottom: -20px;
  }

  .bundle-content-info,
  .bundles-main-wrap.big .bundle-content-info {
    width: 57%;
    justify-content: flex-start;
    text-align: left;
    padding: 15px 0px 0px 12px;
    align-items: flex-start;
  }

  .bundle-heading {
    width: 100%;
  }

  .bundle-header-wrap.mobile-view > div {
    width: 100%;
    font-size: 7vw;
  }

  .bundle-header-wrap.mobile-view > div:not(.bundle-heading) {
    font-size: 3.1vw;
  }

  .price-unit-cost {
    width: 100%;
    justify-content: flex-start;
    font-size: 10vw;
    margin-bottom: 1.6vw;
    line-height: 8vw;
    /* margin-bottom: 14px; */
  }

  .bundle-price,
  .bundles-main-wrap.big .bundle-price {
    text-align: left;
    padding: 0;
    margin-bottom: 12px;
    font-size: 4vw;
    /* font-size: 14px; */
  }

  .price-unit-cost div:last-child {
    font-size: 3vw;
    line-height: 7vw;
    transform: translate(2px, 2vw);
  }

  .bundle-wrap.primary .days-cost-label {
    font-size: 3.6vw;
  }

  .custom {
    width: auto;
  }

  .benefits-list {
    width: 100%;
    text-align: left;
  }

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

  .mob-reverce.two-column-layout {
    flex-direction: column-reverse;
  }

  .cards-grid {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .feature-item {
    width: 40%;
  }

  .sircle-row {
    display: none;
  }

  .bundle-wrap .btn.btn-primary {
    max-width: none;
    margin: 15px auto 0px;
    font-size: 22px;
    padding: 10px;
  }

  .product-list .benefits-list-item,
  .bundles-main-wrap.big .product-list .benefits-list-item {
    line-height: 20px;
    font-size: 12px;
  }

  .icon-text-item {
    font-size: 13px;
  }

  .icon-text-item .circle-container {
    margin: 0;
  }

  .icon-text-item img {
    margin: 0px 4px;
  }

  .guarantee-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .review-card.mobile-view {
    margin: 12px 0px 0px;
    padding: 4px 16px;
    display: flex;
  }

  .verified-badge {
    font-size: 13px;
  }

  .heading-small {
    font-size: 28px;
    line-height: 33px;
  }

  .headline-base {
    font-size: 32px;
    line-height: 38px;
  }

  .section-wrap {
    padding: 32px 0px 32px;
  }

  .section-wrap.bottom-padding {
    padding: 32px 0px 32px;
  }

  .mobile-image-format-v2 {
    width: 100%;
  }

  .mobile-image-format-v2 img {
    height: 234px;
    width: 100%;
  }

  .cta-section .btn.btn-primary {
    font-size: 6vw;
  }

  .item-icon {
    width: 26px;
    height: 26px;
  }

  .subtitle {
    font-size: 18px;
    line-height: 24px;
  }

  .review-wrap .content-column:first-child {
    display: none;
  }

  .review-wrap .item-number {
    font-size: 46px;
    min-width: 75px;
    width: 75px;
  }

  .review-wrap .list-item {
    gap: 16px;
    font-size: 18px;
    line-height: 24px;
  }

  .cta-wrapper {
    margin-top: 32px;
  }

  .videos-section .scraped-container {
    padding: 0;
  }

  .videos-section .cta-wrapper,
  .videos-section .fk-headline,
  .videos-section .subtitle {
    padding: 0px 10px;
  }

  .svg-icon._32x32 {
    width: 40px;
    height: 40px;
  }

  .section-wrap.banner-layout {
    padding-top: 0px;
  }

  .banner-layout .scraped-container {
    padding: 0px 18px;
  }

  .banner-layout .two-column-layout {
    border-radius: 16px;
  }

  .banner-layout .content-column:last-child {
    padding: 24px 12px;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
  }

  .banner-layout .headline-base {
    text-align: center;
    margin-bottom: 0px;
  }

  .banner-layout .cta-section {
    margin-right: auto;
    margin-left: auto;
  }

  .banner-layout .content-text {
    font-size: 22px;
    line-height: 28px;
  }

  .banner-layout .content-text p {
    margin-bottom: 0;
  }

  .banner-layout .footer-item {
    font-size: 12px;
  }

  .banner-layout .guarantee-text-wrap {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }

  .content-wrap-30 {
    font-size: 18px;
  }

  .prodcut-wrap {
    flex-direction: column;
    margin-bottom: 12px;
  }

  .prodcut-wrap .left-col {
    width: 100%;
  }

  .order_1 {
    order: 1;
  }

  .less-amount {
    max-width: 240px !important;
  }

  .mbl {
    display: block !important;
  }

  .ingredient {
    max-width: 148px;
    width: 100%;
  }

  .fk-row {
    flex-wrap: wrap;
  }

  .red-shine {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: rgb(231, 76, 60) 0px 0px 10px;
    animation: 2s linear 0s infinite normal none running red-shine;
  }

  .slider-wrapper {
    padding: 0 15%;
    /* Add padding to show peek of adjacent videos */
  }

  .slider-track {
    width: 400%;
    /* Mobile: 400% for scrolling */
  }

  .video-container {
    width: 25%;
    /* Mobile: 25% for scrolling */
  }

  .feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
    gap: 60px;
  }

  .testimonial-item {
    padding: 15px;
    gap: 12px;
  }

  .testimonial-avatar {
    width: 40px;
    height: 40px;
  }

  .testimonial-reply {
    margin-left: -15px;
  }

  .results-row {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    padding-top: 16px;
    padding-bottom: 48px;
    padding-left: 64px;
    position: relative;
  }

  .results-row.reverse {
    flex-flow: column-reverse wrap;
  }

  .left-results {
    justify-content: center;
    align-items: flex-start;
    width: 100%;
  }

  .midd-results {
    width: 30px;
    position: static;
    top: 28px;
    margin: 0;
  }

  .icon-dot {
    border-width: 7px;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 15px;
    left: 0;
  }

  .line-holder {
    position: static;
    display: block;
  }

  .line-dotted {
    position: absolute;
    top: 40px;
    left: 22px;
  }

  .right-results {
    width: 100%;
  }

  .section-wrap.faq-section {
    margin-top: 20px;
  }

  .faq-section .fk-headline {
    max-width: 300px;
    margin: 0 auto;
  }

  .faq-big {
    margin-top: 32px;
  }

  .faq-big .fk-collapsible-list-left-label {
    font-size: 20px;
    line-height: 26px;
  }

  .footer-content {
    padding: 20px 0px 120px;
  }

  .styky-botton-wrapp {
    padding: 10px;
  }

  .sticky-bottom-content-item {
    flex-direction: column;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }

  .sticky-bottom-content-item span {
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 16px;
  }

  .sticky-bottom-content-item .btn.btn-primary {
    margin: 0 auto;
    max-width: none;
    padding: 6px;
  }

  .bg-image {
    display: none;
  }

  .fall-content {
    max-width: none;
    width: 100%;
  }

  .fall-inside {
    width: 100%;
    gap: 16px;
    padding: 0px 10px;
  }

  #ig2h4 {
    display: none !important;
  }

  .banner-mobile {
    display: block;
  }

  .fall-banner {
    justify-content: center;
    align-items: stretch;
    display: flex;
  }

  .fall-subheadline-text {
    font-size: 14px;
    line-height: 18px;
  }

  .fall-header-text {
    font-size: 22px;
  }

  .fall-timer {
    width: auto;
    height: 42px;
  }

  .fall-time-text-helloween {
    font-size: 18.7px;
    line-height: 19px;
  }

  .fall-text-bottom {
    font-size: 11px;
    line-height: 13.2px;
  }

  .fall-double-dot {
    font-size: 14px;
    line-height: 21px;
  }

  .image-mobile-1 {
    height: 100%;
    inset: 0;
  }

  .image-mobile-2 {
    inset: 0;
    left: auto;
    height: 65px;
    top: -10px;
    right: -10px;
    z-index: 100;
  }
}

@media (max-width: 480px) {
  div#cc-id-oXNHfHxfyp8E {
    font-size: 12px;
  }

  .gap-25 {
    gap: 10px;
  }

  .slider-track {
    width: 400%;
    /* Mobile: 400% for scrolling */
  }

  .video-container {
    width: 25%;
    /* Mobile: 25% for scrolling */
  }
}
.slick-arrow {
  height: 63px !important;
  width: 63px !important;
}
