:root {
  --textcolor: #252525;
}

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

main {
  display: flex;
  width: 100%;
  flex-direction: column;
}

/* typography start */
body {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.6;
}

.hd-font-lg {
  font-size: 69px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
}

.hd-font-md {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 700;
}

.hd-font-sm {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.hd-font-xs {
  font-size: 32px;
  line-height: 1.5;
  font-weight: 700;
}

p {
  font-size: 20px;
  line-height: 1.4;
}

@media (max-width: 1199px) {
  .hd-font-lg {
    font-size: 50px;
  }
  .hd-font-xs {
    font-size: 24px;
  }
  .hd-font-sm {
    font-size: 28px;
  }
  p {
    font-size: 16px;
  }
  ul li {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .hd-font-lg {
    font-size: 40px;
    line-height: 1.5;
  }
  .hd-font-xs {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hd-font-lg {
    font-size: 36px;
    line-height: 1.4;
  }
  .hd-font-xs {
    font-size: 18px;
  }
  .hd-font-md {
    font-size: 40px;
  }
}
@media (max-width: 520px) {
  .hd-font-lg {
    font-size: 26px;
    line-height: 1.3;
  }
  .hd-font-xs {
    font-size: 18px;
  }
  .hd-font-md {
    font-size: 26px;
  }
}
/* typography end */
/* header start */
header {
  padding: 0 10px;
}
header .hdr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
  padding-left: 25px;
}
@media (max-width: 991px) {
  header .hdr {
    background-color: #f5f5f5;
  }
}
header .hdr .logo {
  max-width: 250px;
  padding: 0;
}
header .hdr .menu {
  max-width: calc(100% - 250px);
  font-size: 14px;
  font-weight: 500;
}
header .hdr .menu a {
  text-decoration: none;
  color: var(--textcolor);
}

/* header end */
/* section1 start */
.section1 img {
  margin-left: auto;
}

@media (max-width: 767px) {
  .section1 img {
    margin: auto;
  }
}
/* section1 end */
/* section2 start */
.section2 {
  background: linear-gradient(180deg, #FFF 0%, #E6EAF3 100%);
  padding: 10px 0 30px;
}
.section2 .box {
  background: linear-gradient(180deg, #F6F6F6 0%, #E8E8E8 100%);
  border-radius: 35px;
  padding: 25px 15px;
}
.section2 .box .bannerImg {
  border: 3px solid #fff;
  border-radius: 35px;
  overflow: hidden;
}
.section2 .box .bannerImg img {
  width: 100%;
}
.section2 .box .price_section {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.section2 .box .price_section .offer {
  display: block;
  font-size: 48px;
  color: #06b561;
  font-weight: 700;
}
.section2 .box .price_section .price_bar {
  color: #626060;
  font-size: 24px;
  margin-left: 15px;
  text-decoration: line-through;
}
.section2 .box h2 {
  margin: 20px 0 25px;
  font-weight: 600;
  line-height: 1.4;
}

.btn-success {
  background-color: #FF0000;
  border-color: #FF0000;
  text-transform: uppercase;
  font-size: 24px;
  width: 100%;
  padding: 10px 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  min-height: 55px;
}

.credit_card {
  margin: 10px 0;
}

.rbox {
  padding: 0 30px;
  flex: 1;
}
.rbox .box {
  margin-top: 25px;
  border: 3px solid #fff;
  border-radius: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rbox .box p {
  margin: 0;
}
.rbox .box .small {
  color: #5E5E5E;
}
.rbox .box .green_text {
  color: #06b561;
  font-weight: bold;
}
.rbox .truck_b {
  font-size: 15px;
  text-align: center;
}
.rbox .frsterrTxt {
  text-align: center;
}
.rbox ul {
  list-style-type: disc;
}
.rbox ul li {
  list-style-type: disc;
  color: #888888;
}
.rbox p {
  color: #888888;
  margin-bottom: 25px;
}
.rbox h3 {
  margin-bottom: 25px;
}

.boxcard {
  margin-top: 25px;
  border: 3px solid #fff;
  border-radius: 25px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 5px;
}
.boxcard p {
  margin: 0;
}

@media (max-width: 767px) {
  .section2 .box {
    margin: 0 5px;
    padding: 15px 5px;
  }
  .rbox {
    padding: 0 15px;
  }
}
/* section2 end */
/* section3 start */
.section3 {
  background: linear-gradient(180deg, #E7EBF4 0%, #C4C3C9 100%);
  padding: 30px 10px;
}
.section3 .box2 {
  gap: 25px;
  padding: 30px 0;
}
.section3 .box2 .bannerImg {
  border-radius: 35px;
  overflow: hidden;
}
.section3 .box2 .bannerImg img {
  width: 100%;
}
.section3 .box2 .rbox2 {
  background-color: #E7EBF4;
  border-radius: 35px;
  padding: 35px 30px;
}

@media (max-width: 767px) {
  .section3 .box2 {
    flex-direction: column;
    margin: 0 0;
    padding: 10px 0;
  }
  .section3 {
    padding: 30px 0;
  }
}
/* section3 end */
/* section4 start */
.section4 {
  background-color: #FFDD5E;
  padding: 70px 0;
}
.section4 .get_box {
  background: #FFDD5E;
  padding: 40px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0px 4px 114px 0px rgba(0, 0, 0, 0.16);
}
.section4 .get_box h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
}
.section4 .get_box h2 .red_text {
  font-weight: 700;
}
.section4 .get_box h2 span {
  font-weight: 400;
  color: #705900;
}
.section4 .get_box .red_text {
  color: #f00;
  font-size: 36px !important;
}

@media (max-width: 767px) {
  .section4 {
    padding: 20px 15px;
  }
  .section4 .get_box {
    padding: 30px 20px;
  }
  .section4 .get_box h2 {
    font-size: 24px;
    line-height: 30px;
  }
  .section4 .get_box .red_text {
    font-size: 26px !important;
  }
}
/* section4 end */
/* section5 start */
.section5 {
  padding: 70px 0;
}
.section5 .feature-box {
  border-radius: 40px;
  border: 1px solid #D8D8D8;
  background: var(--Corners, #FFF);
  box-shadow: 0px 4px 37px 0px rgba(0, 0, 0, 0.07);
  min-height: 370px;
  padding: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  margin-bottom: 25px;
}
.section5 .feature-box .svgbox {
  padding: 25px;
  border-radius: 70px;
  background: #FFF;
  box-shadow: 0px 4px 62px 0px rgba(0, 0, 0, 0.1);
  margin: auto;
}
.section5 .feature-box p {
  margin-top: 25px;
  max-width: 300px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .section5 .feature-box {
    min-height: 300px;
    padding: 20px;
    align-items: start;
    justify-content: center;
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .section5 {
    padding: 45px 0 0;
  }
}
/* section5 end */
/* section6 start */
.section6 {
  padding: 70px 0;
  background-color: #191B13;
}
.section6 img {
  border-radius: 40px;
  box-shadow: 0px 4px 48px 0px rgba(0, 0, 0, 0.66);
}
.section6 h4 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}
.section6 p {
  color: #fff;
}

@media (max-width: 767px) {
  .section6 {
    padding: 15px 0;
  }
}
/* section6 end */
/* easy start */
.easy {
  padding: 50px 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: auto;
  gap: 20px;
}
.easy .easybox {
  padding: 30px;
  text-align: center;
  flex: 0 0 49%;
  text-align: center;
  border-radius: 15px;
}
.easy .easybox:nth-child(1) {
  background-color: #FFDBCC;
}
.easy .easybox:nth-child(2) {
  background-color: #F8D3DD;
}
.easy .easybox:nth-child(3) {
  background-color: #FBF3D0;
}
.easy .easybox:nth-child(4) {
  background-color: #ECF3D8;
}
.easy .easybox img {
  margin-bottom: 20px;
}
.easy .easybox h4 {
  font-weight: 700;
  font-size: 18px;
}
.easy .easybox p {
  line-height: 1.3;
  font-size: 16px;
  color: #5E5E5E;
}

@media (max-width: 991px) {
  .easy .easybox {
    flex: 0 0 48%;
  }
}
@media (max-width: 767px) {
  .easy .easybox {
    flex: 0 0 48%;
  }
  .easy {
    padding: 30px 15px 0;
  }
}
@media (max-width: 520px) {
  .easy .easybox {
    width: 100%;
    flex: none;
    padding: 20px;
  }
}
/* easy end */
/* setsection start */
.set_section {
  padding: 50px 0;
}
.set_section ul {
  display: flex;
  gap: 15px;
  padding: 0;
}
.set_section ul li {
  width: 33.33%;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.set_section ul li img {
  -o-object-fit: contain;
     object-fit: contain;
}
.set_section ul li:first-child {
  background-color: #B4CE64;
}
.set_section ul li:nth-child(2) {
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  color: #252525;
}
.set_section ul li:last-child {
  background-color: #F7C9D6;
}

@media (max-width: 767px) {
  .set_section {
    padding: 20px 0;
  }
  .set_section ul {
    flex-wrap: wrap;
    padding: 0;
  }
  .set_section ul li {
    width: 100%;
  }
}
/* setsection end */
/* customerrating start */
.customer_rating {
  background-color: #191B13;
  padding: 50px 0;
}
.customer_rating img {
  border-radius: 25px;
}
.customer_rating h2 {
  color: #EEEEEE;
}
.customer_rating .rating-text {
  color: #EEEEEE;
  max-width: 500px;
}
.customer_rating .rating-text .rating-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.customer_rating .rating-text .rating-row span {
  font-size: 20px;
  display: flex;
  align-items: center;
}
.customer_rating .rating-text .rating-row span svg {
  width: 18px;
  height: auto;
  margin-right: 5px;
}

@media (max-width: 767px) {
  .customer_rating .rating-text {
    margin: 25px 0 0;
    padding: 0 10px;
  }
}
/* customerrating end */
/* happycustomer start */
.happy_customer {
  background-color: #fff;
  padding: 60px 40px 20px;
  margin: 50px auto;
  border-radius: 25px;
  border: 1px solid #ccc;
}
.happy_customer .happy_box {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 25px 20px 20px;
  min-height: 430px;
  height: 100%;
  background: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.happy_customer .happy_box h5 {
  min-height: 45px;
  font-weight: 700;
}
.happy_customer .happy_box .star_icon {
  font-size: 16px;
  color: #fea21c;
}
.happy_customer .happy_box img {
  margin: 20px 0;
  width: 100%;
}
.happy_customer .happy_box p {
  text-align: left;
}

@media (max-width: 1199px) {
  .happy_customer {
    padding: 60px 20px 20px;
  }
  .happy_customer .happy_box {
    height: auto;
  }
}
/* happycustomer end */
/* eco start */
.eco {
  background-color: #8CC63F;
  padding: 50px 0;
}
.eco h4, .eco p {
  color: #fff;
}
.eco img {
  max-width: 250px;
}

/* eco end */
/* productgrid start */
.productgrid {
  padding: 50px 0;
}
.productgrid .productrow {
  display: flex;
  gap: 15px;
  margin: 0 0;
}
.productgrid .productrow .product-item {
  width: calc(33.33% - 15px);
  border-radius: 20px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 13px;
  padding: 15px;
}
.productgrid .productrow .product-item > * {
  min-width: 100%;
}
.productgrid .productrow .product-item .img-holder {
  flex: 1 1 100%;
  border-radius: 20px;
  position: relative;
  padding-top: 35px;
}
.productgrid .productrow .product-item .img-holder .prod-img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.productgrid .productrow .product-item .img-holder .fda {
  position: absolute;
  left: 4%;
  top: 8%;
  z-index: 1;
}
.productgrid .productrow .product-item .img-holder .productbadge {
  border-radius: 0 15px 0 15px;
  padding: 8px 15px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}
.productgrid .productrow .product-item:nth-child(1) {
  background-color: #FFF5FB;
}
.productgrid .productrow .product-item:nth-child(1) .img-holder {
  background-color: #FEE1F3;
}
.productgrid .productrow .product-item:nth-child(2) {
  background-color: #FFFCF5;
}
.productgrid .productrow .product-item:nth-child(2) .img-holder {
  background-color: #FFF8E0;
}
.productgrid .productrow .product-item:nth-child(2) .img-holder .productbadge {
  background-color: #F7C9D6;
}
.productgrid .productrow .product-item:nth-child(3) {
  background-color: #FBFCF7;
}
.productgrid .productrow .product-item:nth-child(3) .img-holder {
  background-color: #F4F8E8;
}
.productgrid .productrow .product-item:nth-child(3) .img-holder .productbadge {
  background-color: #B4CE64;
}
.productgrid .productrow .product-item .producttitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.productgrid .productrow .product-item .producttitle span {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.productgrid .productrow .product-item .producttitle span svg {
  width: 18px;
  margin-right: 5px;
}
.productgrid .productrow .product-item .producttitle span:last-child {
  font-weight: 400;
}
.productgrid .productrow .product-item button {
  margin-bottom: 10px;
  margin-top: 0 !important;
}
.productgrid .productrow .product-item ul, .productgrid .productrow .product-item li {
  list-style-type: disc;
  font-size: 16px;
}
.productgrid .productrow .product-item > img {
  min-width: 0 !important;
}
.productgrid .productrow .product-item .product-price {
  font-size: 16px;
}
.productgrid .productrow .product-item .product-price .linethrough {
  color: #BEBEBE;
  text-decoration: line-through;
  margin-right: 5px;
  font-weight: 600;
}
.productgrid .productrow .product-item .product-price .offerPrice {
  color: #06B561;
  font-weight: 700;
  font-size: 28px;
}
.productgrid .productrow .product-item .product-price .offerPrice sub {
  color: #BEBEBE;
  font-weight: 400;
  font-size: 13px;
  position: relative;
  top: -3px;
}

@media (max-width: 767px) {
  .productgrid {
    padding: 20px 0;
  }
  .productgrid .productrow {
    flex-wrap: wrap;
  }
  .productgrid .productrow .product-item {
    width: 100%;
  }
}
/* productgrid end */
/* satisfaction start */
.satisfaction {
  background-color: #FCE4F8;
  padding: 50px 0;
}

@media (max-width: 991px) {
  .satisfaction {
    text-align: center;
    padding: 30px 20px;
  }
  .satisfaction img {
    margin-bottom: 20px;
    max-width: 200px;
  }
}
/* satisfaction end */
/* whowe start */
.who_we {
  padding: 30px;
  background: #ffffff;
  margin-top: 1rem;
  border-radius: 25px;
}
.who_we img {
  border-radius: 25px;
}

@media (max-width: 991px) {
  .who_we {
    padding: 30px 0;
  }
}
/* whowe end */
/* footer start */
footer {
  background-color: #191B13;
  padding: 50px 0;
  color: #EEEEEE;
  font-size: 16px;
}
footer .footer-left {
  margin-bottom: 30px;
}
footer .footer-left p {
  font-weight: 300;
  margin-bottom: 0;
  line-height: 1.6;
}
footer .footer-left p span {
  font-weight: 600;
}
footer ul {
  list-style-type: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 10px;
}
footer ul li a {
  text-decoration: none;
  color: #EEEEEE;
  font-size: 16px;
}
footer .footer-logo {
  max-width: 80%;
  margin: 30px 0;
  display: block;
}



.floating-cta {
    display: none;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    height: 90px;
    /* background-color: #fff; */
    background-color: rgb(255 255 255);
    box-shadow: 0 -5px 10px -7px #ccc;
    z-index: 9;
    padding: 0;
}
.btn-1 {
    /* background-color: #3ACD00; */
    background-color: #ff0000;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    padding: 15px 25px;
    border-radius: 20px;
    transition: 0.4s;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
}
.floating-cta .btn-1 {
    font-size: 18px;
    animation-name: jiggle;
    animation-duration: 1s;
    animation-iteration-count: 3;
    animation-timing-function: linear;
}
.floating-cta .btn-1:hover {
    background: #157347;
}
.floating-cta .btn-1 img {
    width: 24px;
    margin-left: 15px;
}
.info-list {
    margin: 20px 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.info-list .info-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.info-list .info-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 5px;
}

.info-item span {
    color: #000000;
    line-height: 1.2;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 991px){
.floating-cta {
    height: auto;
    padding: 15px 0 10px !important;
}
.floating-cta .info-list {
    margin: 10px 0 0;
}
}

@media (max-width: 480px){
  .info-list .info-item img {
    width: 30px;
    height: 30px;
}
.info-item span {
    font-size: 10px;
}
}

@-webkit-keyframes jiggle {
  1% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  5% {
    transform: translate(1px, -1px) rotate(-1deg);
  }
  10% {
    transform: translate(2px, -2px) rotate(0deg);
  }
  15% {
    transform: translate(3px, -3px) rotate(1deg);
  }
  20% {
    transform: translate(2px, -2px) rotate(0deg);
  }
  25% {
    transform: translate(1px, -1px) rotate(-1deg);
  }
  30% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  35% {
    transform: translate(-1px, 1px) rotate(1deg);
  }
  40% {
    transform: translate(-2px, 2px) rotate(0deg);
  }
  45% {
    transform: translate(-3px, 3px) rotate(-1deg);
  }
  50% {
    transform: translate(-2px, 2px) rotate(1deg);
  }
  55% {
    transform: translate(-1px, 1px) rotate(1deg);
  }
  60% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes jiggle {
  1% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  5% {
    transform: translate(1px, -1px) rotate(-1deg);
  }
  10% {
    transform: translate(2px, -2px) rotate(0deg);
  }
  15% {
    transform: translate(3px, -3px) rotate(1deg);
  }
  20% {
    transform: translate(2px, -2px) rotate(0deg);
  }
  25% {
    transform: translate(1px, -1px) rotate(-1deg);
  }
  30% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  35% {
    transform: translate(-1px, 1px) rotate(1deg);
  }
  40% {
    transform: translate(-2px, 2px) rotate(0deg);
  }
  45% {
    transform: translate(-3px, 3px) rotate(-1deg);
  }
  50% {
    transform: translate(-2px, 2px) rotate(1deg);
  }
  55% {
    transform: translate(-1px, 1px) rotate(1deg);
  }
  60% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
