.section-gradient {
  width: 100%;
  height: 97px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: inherit;
  pointer-events: none;
  position: absolute;
  bottom: -28px;
}
.section-gradient-top{
  position: absolute;
  top: -24px;
  z-index: 999999;
  height: 90px;
  transform: rotate(180deg);
  width: 100%;
}
.section-gradient-b{
  transform: rotate(180deg);
  width: 100%;
  z-index: 999999;
  position: absolute;
  top: 0px;
}
.section-gradient-t{
  width: 100%;
  z-index: 999999;
  position: absolute;
  bottom: 0;
}
.newcontainer{
  max-width: 1920px;
  margin: 0 auto;
}
.tips-section {
  padding-left: 40px;
  padding-right: 0; /* THIS makes last card touch edge */
  overflow: hidden;
  padding-bottom: 60px;
}


.tips-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.tips-header h2 {
    font-size: 50px;
    font-weight: 700;
}

.blue { color: #1f6fb2; }
.orange { color: #f58220; }

.more-btn {
  background: #e7f1fb;
  color: #1f6fb2;
  padding: 17px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
}

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

.custom-arrows {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.custom-arrows button {
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}


.tip-card {
  background: #f3f3f3;
  border-radius: 22px;
  padding: 15px;
  margin: 0 10px;
  overflow: hidden;
}
.tip-text {
  padding: 22px 11px 14px;
}

.tip-text strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: #111;
}

.tip-text p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  color: #111;
  display: -webkit-box;
    -webkit-line-clamp: 4;      /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 80px;
}
.tip-text h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #111;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 2;      /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.tip-image {
  position: relative;
  margin-top: 10px;
}

.tip-image img {
  width: 100%;
  border-radius: 16px;
  height: 180px;
  object-fit: inherit;
}

img.slider-arrowimg {
  transform: rotate(-45deg);
  width: 21px;
}
.tips-slider .slick-list {
  padding-right: 0 !important;
}
.tips-slider {
  margin-left: 100px; /* space for arrows */
}
.tip-card {
  margin-right: 0;
}

/* hero section */
.hero {
  position: relative;
  height: 130vh;
  overflow: hidden;
}


/* VIDEO */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,.15),
    rgba(0,0,0,.35)
  );
  z-index: 1;
}

/* BASE CARD */
.hero-card {
  position: absolute;
  width: 239px;
  min-height: 230px;
  padding: 20px;
  background: rgba(70, 145, 210, 0.67);
  border-radius: 22px;
  color: #fff;
  /*backdrop-filter: blur(12px);*/
  box-shadow: 0 25px 50px rgba(0,0,0,.25);
  z-index: 2;
}

.hero-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 0px;
  line-height: 20px;
}

.hero-card p {
  font-size: 15px;
  opacity: .95;
}
.hero-card p.textcard {
  max-width: min-content;
}
.hero-card img {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 150px;
  max-width: fit-content;
}

/* ARROW */
.arrow-hero {
  position: absolute;
  bottom: 16px;
  right: 20px;
  width: 34px;
  height: 34px;
  background: #0b3a66;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}
.arrows-card {
  bottom: 16px;
  left: 20px;
  position: absolute;
  background: #00519d;
  color: #fff;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

/* EXACT POSITIONS (MATCH IMAGE) */
.card-1 { top: 8%; left: 19%; }
.card-2 { top: 8%; right: 19%; } /* 🔴 MARKED CARD */
.card-3 { top: 40%; left: 2%; }
.card-4 { top: 40%; right: 2%; }

/* BOTTOM INFO */
.hero-info {
  position: absolute;
  bottom: 6%;
  width: 368px;
  padding: 12px 22px;
  background: rgba(255,255,255,.92);
  border-radius: 22px;
  box-shadow: 0 25px 45px rgba(0,0,0,.25);
  z-index: 3;
}

.hero-info h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.hero-info p {
  font-size: 14px;
  color: #444;
  max-width: 280px;
}

.hero-info.left { left: 2%; }
.hero-info.right { right: 2%; }

.arrow-hero.orange {
  background: #f58220;
  color: #fff;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
img.hero-arrowimg {
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 0.3s ease;
  width: 21px;
}
button.next-arrow img, button.slider-next img{
  transform: rotate(180deg);
}

/* MOBILE */
@media (max-width: 1024px) {
  .hero-card { width: 220px; }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 40px 20px;
  }

  .hero-card,
  .hero-info {
    position: relative;
    margin: 20px auto;
  }
  .card-3 {
    left: 19%;
  }
  .card-4{
    right: 19%;
  }
  .hero-info.left { left: 0%; }
.hero-info.right { right: 0%; }
}

/* second section css */


.contact-hero {
  position: relative;
  padding: 70px 0;
  overflow: visible;
}

/* BACKGROUND IMAGE + FADE */
.hero-bg {
  position: absolute;
  inset: 0;
	background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.95) 0%,
      rgba(255,255,255,0.85) 35%,
      rgba(255,255,255,0.55) 60%,
      rgba(255,255,255,0.25) 80%,
      rgba(255,255,255,0.1) 100%
    ),
    url("callcenter-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* FLEXBOX LAYOUT */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
}

/* COLUMNS */
.hero-col {
  flex: 1;
}

.hero-left {
  flex: 1.2;
}

.hero-center {
  flex: 1;
  text-align: center;
}

.hero-right {
  flex: 1;
  text-align: right;
}

/* LEFT */
.logo {
  max-width: 140px;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 14px;
  line-height: 1.6;
}

.hero-text span {
  color: #f58220;
  font-weight: 600;
}

.hero-text strong {
  display: block;
  margin-top: 10px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  margin-top: 25px;
  background: #f58220;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* PHONE */

.phone-wrap {
  position: absolute;
  top: 0;
  left: 42%;
  z-index: 9999; /* now this WORKS */
}
.phone {
  max-width: 300px;
  /*transform: rotate(-6deg);*/
  border-radius: 28px;
  /*box-shadow: 0 25px 60px rgba(0,0,0,.25);*/
}

/* RIGHT INFO */
.hero-right h4 {
  margin-bottom: 20px;
  font-size: 16px;
}

.hero-right p {
  font-size: 14px;
  margin-bottom: 14px;
}

.hero-right span {
  color: #f58220;
  font-weight: 600;
}

/* product listing section css */
/* WRAPPER */
.category-wrapper {
  background: #4b7f92;
  padding-bottom: 60px;
  padding-top: 40px;
  position: relative;
}

/* HEADER */
.category-header {
  padding: 40px 60px;
  color: #fff;
  position: relative;
  display: grid;
  gap: 30px;
  grid-template-columns: 1.3fr 2fr;
}

.category-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 20px;
}

.sub-links {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 50px;   /* space on the right only */
    row-gap: 0;         /* no space at bottom */
    font-size: 14px;
}

.sub-links a {
    color: #eaf4f8;
    text-decoration: none;
}

.filter-btn {
    position: absolute;
    right: 60px;
    top: 40px;
    background: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #000;
}

/* CONTENT */
.category-content {
    display: grid;
    padding: 0 60px;
    padding-bottom: 50px;
}
.category-content-2{
  padding: 60px;
}

/* PROMO */
.promo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.promo-card img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  /*opacity: 0.75;*/
}

.promo-text {
  position: absolute;
  inset: 0;
  padding: 30px;
  color: #fff;
}

.promo-text h2 {
    font-size: 22px;
    margin-bottom: 20px;
}

.promo-text h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.promo-text p {
    font-size: 14px;
    max-width: 90%;
}

/* PRODUCTS */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.products-grid-2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-align: center;
}

.product-card h4 {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 20px;
  margin-bottom: 6px;
  color: #00519d;
  font-weight: 700;
  min-height: 53px;
}

.product-sub {
  font-size: 14px;
  color: #00519d;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 45px;
}

.orange-btn {
    display: inline-block;
    background-color: #f58220;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: 0.3s ease;
}

.orange-btn:hover {
    background-color: #e06f10;
}


.product-card img {
    max-width: 100%;
    height: 220px;
    object-fit: contain;
    margin-bottom: 15px;
    max-height: 220px;
    width: 100%;
    margin-top: 25px;
}
.top-bar-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    margin-bottom: 15px;
}

.top-bar-price .price {
    font-size: 18px;
    font-weight: 700;
    color: #0b4a8b; /* blue like image */
}

.top-bar-price .icons {
    display: flex;
    gap: 10px;
}

.top-bar-price .icon {
    color: #0b4a8b;
    width: 22px;
    height: 22px;
    display: flex;
}

.top-bar-price .icon svg {
    width: 100%;
    height: 100%;
}

a.actions-moreinfo {
    display: none;
}
.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.product-actions a.actions-addtocart,.btn-outline {
    border: 1px solid #1a73e8;
    background: transparent;
    color: #1a73e8;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
}
a.actions-addtocart {
    padding: 10px 10px !important;
    background: #0b4a8b1c !important;
}
.btn-outline:hover {
    background: #1a73e8;
    color: #fff;
}

.top-row {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 30px;
    margin-bottom: 40px;
}
.top-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bottom-products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}
@media (max-width: 1400px) {
    .bottom-products {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* fourth section css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.solutions {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.solutions h2 {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 20px;
  font-weight: 400;
  color: #111;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.solution-item {
  text-align: left;
  padding: 25px 22px;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.solution-item.active {
    background: #ffffff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
}
.solution-item:hover {
    background: #ffffff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.08);
}

.solution-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  line-height: 21px;
}

.solution-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

.line {
  display: block;
  width: 100%;
  height: 3px;
  margin-bottom: 16px;
}

.solution-item .line {
  background: #f7941d !important;
}

.solution-item.active .line {
  background: #1e6bd6 !important;
}

/* SLICK FIXES */
.slick-list {
  overflow: visible;
}

.slick-slide {
  padding: 0 20px;
}

/* blog slider */
.tips-slider .tip-card.slick-slide {
  padding: 0 20px 20px 20px;
}
/* Slider wrapper */
.slick-wrapper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 60px;
  position: relative;
}

/* SCALE CENTER SLIDE */
/*.slick-center .split-section {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}*/

/* YOUR EXISTING SPLIT CSS (unchanged) */
.split-section {
  display: grid;
  grid-template-columns: 66% 34%;
  min-height: 336px;
  background: #f0f0f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0,0,0,0.08);
  position: relative;
}

/*.split-image {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}*/

.split-image img {
    object-fit: fill;
    height: 100%;
}

.split-content {
  background: #f5f5f5;
  display: flex;
  align-items: center;
}
.content-inner {
  max-width: 520px;
  padding: 35px;
}

.content-inner h3 {
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 18px;
  font-weight: 600;
}

.content-inner p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 22px;
}

.more-link {
  color: #1e6bd6;
  font-weight: 500;
  text-decoration: none;
}
/* PLAY BUTTON */
.play-btn {
  position: absolute;
  bottom: 30px;
  left: 40px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  /*background: #ffffff;*/
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.play-btn img{
  padding: 9px;
  background: #fff;
  border-radius: 28px;
}

.video-text {
  position: absolute;
  bottom: 42px;
  left: 100px;
  font-size: 14px;
  color: #ffffff;
}


/* RESPONSIVE */
@media (max-width: 992px) {
  .split-section {
    grid-template-columns: 1fr;
  }

  .split-image {
    width: 100%;
    margin-left: 0;
    position: relative;
  }
}
/* testimonial section css */

/* SECTION */
.health-section {
  padding: 60px 54px;
  background: #ffffff;
}


/* TITLE */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #004a99;
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 46% 52%;
  gap: 30px;
  align-items: stretch;
}

/* CARD BASE */
.card {
  border-radius: 24px;
  padding: 28px;
}

/* COLORS */
.card-light {
  background: #e9f3fd;
}

.card-blue {
  background: #004a99;
  color: #fff;
}

.card-orange {
  background: #f58220;
  color: #fff;
}

/* BIG LEFT CARD */
.big-card {
  position: relative;
  padding-bottom: 120px;
}

.big-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    margin-top: 0;
    padding-top: 28px !important;
}

.orange {
  color: #f58220;
}

.desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.quotewithimg {
    position: relative;
}

/* QUOTE */
.quote {
    position: absolute;
    max-width: 300px;
    padding: 12px;
    border-radius: 24px;
    background: #447b9257;
    color: #0a0a0a;
    top: 15px;
    left: 15px;
}

/* TEXT */
.quote p {
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 400;
  margin-left: 41px;
}

/* NAME */
.quote strong {
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ROLE */
.quote small {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #222;
}

/* OPEN QUOTE */
.quote::before {
  content: "“";
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 56px;
  font-weight: 700;
  color: #004a99;
  font-family: Cardo;
}

/* CLOSE QUOTE */
.quote::after {
  content: "”";
  position: absolute;
  bottom: 18px;
  right: 22px;
  font-size: 56px;
  font-weight: 700;
  color: #004a99;
  font-family: Cardo;
}

/* REMOVE UNUSED ICON */
.quote-icon {
  display: none;
}


/* IMAGE */
.image-wrap {
  width: 100%;
}

.image-wrap img {
  border-radius: 24px;
}
.card.card-light.big-card {
    padding: 0px;
}
.card.card-light.big-card h3,.card.card-light.big-card p.desc{
  padding: 0 28px;
}
/* BUTTON */
.btn-2 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.arrow-2 {
    background: #f58220;
    color: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: absolute;
    right: -41px;
}

/* RIGHT COLUMN */
.right-col {
  display: grid;
  gap: 30px;
  grid-template-columns: 2fr 2fr;
  align-items: stretch; /* important */
}

/* RIGHT CARDS */
.card-blue h3,
.card-orange h3 {
  font-size: 22px;
  margin-bottom: 12px;
  margin-top: 0px;
}

.card-blue p,
.card-orange p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 18px;
}
.card-blue, .card-orange {
  display: flex;
  flex-direction: column;
  padding: 20px 25px;
  border-radius: 30px;
}
.card-blue .btn, .card-orange .btn {
    margin-top: auto;
    width: fit-content;
    border-radius: 8px;
    font-size: 18px;
}

/* BUTTON VARIANTS */
.btn-orange {
  background: #f58220;
  color: #fff;
  position: static;
}

.btn-blue {
  background: #004a99;
  color: #fff;
  position: static;
}

/* BOTTOM CARD */
.bottom-card {
    margin-top: 16px;
    padding: 21px 21px;
}

.bottom-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    margin-top: 0px;
}

.blue {
  color: #004a99;
}

/* VIDEO SLIDER */
.video-slider-wrap {
  position: relative;
  padding-right: 80px;
}

.video-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
  margin: 0 12px;
}

.video-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.slidertext {
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    background: #fff;
    padding: 7px 7px;
    border-radius: 18px;
    font-weight: 400;
    color: #0056b3;
    font-size: 13px;
    line-height: 1.5;
}

.slidertext small {
  display: block;
  font-weight: 500;
  color: #0056b3;
  margin-top: 4px;
}

/* ARROWS */
.slider-arrows {
  position: absolute;
  right: 0;
  top: 37%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slider-arrows button {
    width: 54px;
    height: 31px;
    border-radius: 50%;
    border: none;
    background: #e6f2ff;
    color: #0056b3;
    font-size: 55px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrows button:hover {
  background: #e6f2ff;
  color: #0056b3;
}
.video-slider-wrap .video-item.slick-slide{
  padding: 0px !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .image-wrap img {
    width: 280px;
  }
}


img.logo-img.site-logo-img {
    height: auto !important;
}

.bottomsection-btn {
    padding: 40px 0px 0px;
    text-align: right;
}

.bottomsection-btn .btn-light {
    display: inline-block;
    background: #c9d3dc;   /* light grey */
    color: #00519d;        /* blue text */
    padding: 16px 36px;
    border-radius: 8px;   /* pill shape */
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.bottomsection-btn .btn-light:hover {
    background: #b8c4cf;
}
.progress-bar {
  position: absolute;
  top: 0;
  left: 17%;
  width: 66%;
  height: 4px;
  background: rgba(255,255,255,0.3);
  z-index: 5;
  margin: 0 auto;
}

.progress {
    width: 0%;
    height: 100%;
    background: #1e6bd6; /* change to your theme red */
}

@media (min-width: 350px) and (max-width:767px) {
  .hero-inner{
    display: block;
    padding: 0 20px;
  }
  .cta-btn {
    text-align: center;
    width: 100%;
}
  .phone-wrap {
    position: relative;
    top: 20px;
    left: 0;
  }
  .phone{
    max-width: 250px;
  }
  .hero-right {
      text-align: center;
  }
  .category-header h1 {
    font-size: 25px;
    display: ruby;
  }
  .category-header {
    padding: 20px;
    grid-template-columns: 1fr;
  }
  .sub-links{
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
  .filter-btn{
    display: none;
  }
  .sub-links a {
    margin-bottom: 10px;
  }
  .category-content{
    padding: 0 20px;
    display: block;
  }
  .top-row {
    grid-template-columns: 1fr;
  }
  .promo-card{
    background: none;
  }
  .promo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
  }
  .products-grid, .bottom-products {
      grid-template-columns: repeat(2, 1fr);
      gap: 11px;
  }
  .products-grid > :last-child, .bottom-products > :last-child {
    display: none;
  }
  .product-card{
    padding: 20px 10px;
  }
  .product-card h4{
    font-size: 18px;
  }
  .product-card img{
    height: 160px;
  }
  .top-bar-price {
    padding: 10px 0px;
    margin-bottom: 0;
  }
  .solutions{
    padding: 20px;
  }
  .solutions h2{
    margin: 0;
    max-width: 100%;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
  }
  .slick-wrapper{
    padding-bottom: 20px;
  }
  .bottomsection-btn{
    text-align: center;
  }
  .progress-bar {
    left: 8%;
    width: 84%;
  }
  .content-inner {
    padding: 1px 10px;
  }
  .tips-section {
    padding-left: 20px;
    padding-bottom: 20px;
  }
  .tips-header {
    display: inline-grid;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .tips-header h2, .section-title {
    font-size: 25px;
  }
  .health-section{
    padding: 20px;
  }
  .section-title{
    margin-bottom: 20px;
    line-height: 25px;
  }
  .grid{
    display: block;
  }
  .big-card h3 {
    font-size: 22px;
    line-height: 25px;
  }
  .desc {
    font-size: 14px;
  }
  .image-wrap img {
    width: 100%;
  }
  .right-side {
    margin-top: 20px;
  }
  .right-col {
    gap: 20px;
    grid-template-columns: 2fr;
  }
  .section-gradient-t{
    left: 0;
  }
}

@media (min-width: 768px) and (max-width:1023px) {
  .health-section{
    padding: 20px;
  }
  .grid {
    display: block;
  }
  .image-wrap img {
    width: 100%;
  }
  .right-side {
    margin-top: 20px;
  }
  .right-col {
    gap: 15px;
    grid-template-columns: 2fr 2fr;
  }
  .tips-section {
    padding-left: 20px;
    padding-bottom: 20px;
  }
  .tips-header {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  .tips-header h2 {
    font-size: 36px;
  }
  .category-header{
    padding: 20px;
    display: block;
  }
  .category-content {
    display: block;
    padding: 20px;
  }
  .top-row{
    display: block;
  }
  .products-grid{
    gap: 11px;
  }
  .promo-card {
    margin-bottom: 21px;
  }
  .product-card{
    padding: 20px 10px;
  }
  .product-actions{
    display: grid;
  }
  .top-bar-price .price {
    font-size: 16px;
  }
  .top-bar-price .icons {
    gap: 9px;
  }
  .bottom-products {
    grid-template-columns: repeat(3, 1fr);
  }
  .bottomsection-btn {
    text-align: center;
  }
  a.btn-outline, .top-bar-price .price {
    margin-bottom: 10px;
  }
  .section-gradient-t{
    left: 0;
  }
  .phone-wrap {
    left: 35%;
  }
  .phone {
    max-width: 250px;
  }
}

@media (min-width: 1024px) and (max-width:1199px) {
  .card-1 {
    left: 6%;
  }
  .card-2 {
    right: 6%;
  }
  .hero {
    height: 63vh;
  }
  .category-content {
    padding: 0 20px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bottom-products {
    grid-template-columns: repeat(3, 1fr);
  }
  .top-row .products-grid > :last-child {
    display: none;
  }
  .top-row {
    grid-template-columns: 1fr 2fr;
  }
}

@media (min-width: 1200px) and (max-width:1399px) {
  .product-actions {
    display: grid;
    gap: 17px;
  }
  .product-card img {
    height: 136px;
  }
  .product-card{
    padding: 18px 10px;
  }
  .top-bar-price .price {
    font-size: 16px;
  }
  .top-bar-price .icons {
    gap: 7px;
  }
}
@media (min-width: 1400px) and (max-width:1599px) {
  .product-card img {
    height: 136px;
  }
  .product-actions {
    gap: 5px;
    justify-content: space-between;
  }
  .product-actions a.actions-addtocart, .btn-outline{
    font-size: 11px;
    padding: 6px 6px;
  }
  .product-card{
    padding: 10px;
  }
}
@media (min-width: 1600px) and (max-width:1799px) {
	.hero-card{
		width:280px;
		min-height: 300px;
	}
	.hero-card h3 {
		font-size: 27px;
		margin-bottom: 20px;
		line-height: 30px;
	}
	.hero-card p {
		font-size: 20px;
	}
	.hero-card img{
		width:190px;
	}
	.arrows-card{
		width:44px;
		height:44px;
	}
	img.hero-arrowimg {
		width: 29px !important;
	}
	.product-actions a.actions-addtocart, .btn-outline{
		padding: 6px;
	}
	.card-blue p, .card-orange p, .desc, .sub-links, .hero-right h4 {
		font-size: 23px;
	}
	.card-blue .btn, .card-orange .btn{
		font-size:25px;
	}
	.bottom-card h3 {
		font-size: 30px;
		margin-bottom: 13px;
	}
	.quote p {
		font-size: 19px;
	}
	.quote {
		max-width: 410px;
		padding: 19px;
	}
	.big-card h3, .card-blue h3, .card-orange h3 {
		font-size: 40px;
	}
	.slidertext{
		font-size:20px;
	}
	.section-title, .category-header h1{
		font-size:50px;
	}
	.sub-links {
		row-gap: 10px;
	}
	body, .hero-text,.solution-item p,.content-inner p,.tip-text p{
		font-size:20px !important;
	}
	.hero-right p {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.phone {
		max-width: 349px;
	}
	.hero-info{
		width: 420px;
	}
	.hero-info h4{
		font-size:25px;
		margin-bottom: 15px;
	}
	.hero-info p {
		font-size: 20px;
		max-width: 346px;
	}
	.solutions h2 {
		font-size: 30px;
	}
	.solutions-grid{
		max-width: 1500px;
	}
	.solution-item h3,.content-inner h3,.tip-text h3 {
		font-size: 23px;
		line-height: 23px;
	}
}
@media (min-width: 1900px) {
	.hero-card{
		width:280px;
		min-height: 300px;
	}
	.hero-card h3 {
		font-size: 27px;
		margin-bottom: 20px;
		line-height: 30px;
	}
	.hero-card p {
		font-size: 20px;
	}
	.hero-card img{
		width:190px;
	}
	.arrows-card{
		width:44px;
		height:44px;
	}
	img.hero-arrowimg {
		width: 29px !important;
	}
	.product-actions a.actions-addtocart, .btn-outline{
		padding: 6px;
	}
	.card-blue p, .card-orange p, .desc, .sub-links, .hero-right h4 {
		font-size: 23px;
	}
	.card-blue .btn, .card-orange .btn{
		font-size:25px;
	}
	.bottom-card h3 {
		font-size: 30px;
		margin-bottom: 13px;
	}
	.quote p {
		font-size: 19px;
	}
	.quote {
		max-width: 410px;
		padding: 19px;
	}
	.big-card h3, .card-blue h3, .card-orange h3 {
		font-size: 40px;
	}
	.slidertext{
		font-size:20px;
	}
	.section-title, .category-header h1{
		font-size:50px;
	}
	.sub-links {
		row-gap: 10px;
	}
	body, .hero-text,.solution-item p,.content-inner p,.tip-text p{
		font-size:20px !important;
	}
	.hero-right p {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.phone {
		max-width: 349px;
	}
	.hero-info{
		width: 420px;
	}
	.hero-info h4{
		font-size:25px;
		margin-bottom: 15px;
	}
	.hero-info p {
		font-size: 20px;
		max-width: 346px;
	}
	.solutions h2 {
		font-size: 30px;
	}
	.solutions-grid{
		max-width: 1500px;
	}
	.solution-item h3,.content-inner h3,.tip-text h3 {
		font-size: 23px;
		line-height: 23px;
	}
}
a.added_to_cart.wc-forward {
    position: absolute;
    left: 50%;
    top: 133%;
}
.product-actions {
   position: relative;
}