* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 75px;
}

html {
  overflow-y: scroll;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #fbfbfe;
}
body.no-scroll {
  overflow: hidden;
}

/* ------------------- Buttons ------------------- */
.order-now {
  background: #1dd068;
  color: #fff;
  font-size: 18px;
  text-align: center;
  width: auto;
  padding: 0 1em;
  height: 40px;
  line-height: 44px;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.btn-box {
  max-width: 410px;
  width: 100%;
  margin-top: 35px;
}
.btn-box.centered {
  margin: 35px auto 0;
}

.btn {
  width: 100%;
  color: #fff;
  background-color: #ee533f !important;
  border: 1px solid #b83324;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 8px 0px #d4d4e0;
          box-shadow: 0px 4px 8px 0px #d4d4e0;
  font-family: "Inter", sans-serif;
  padding: 8px 25px;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  -webkit-animation: pulse 1.5s infinite ease-in-out;
          animation: pulse 1.5s infinite ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.btn img {
  display: inline-block;
  vertical-align: middle;
  margin: -4px 0 0 15px;
}

.btn-txt {
  width: 100%;
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
.btn-txt p {
  padding: 0 8px;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0;
}
.btn-txt .btn-text1:before {
  display: inline-block;
  margin: -2px 5px 0 0;
  width: 9px;
  height: 9px;
  background: #6fb620;
  border-radius: 50%;
  content: "";
  -webkit-animation: fade 1s ease-in-out infinite;
          animation: fade 1s ease-in-out infinite;
}
.btn-txt .hourglass {
  margin: -2px 3px 0 0;
  -webkit-animation: rotateP 2.5s ease-in-out forwards infinite;
          animation: rotateP 2.5s ease-in-out forwards infinite;
}

/* ------------------- Animations ------------------- */
@-webkit-keyframes fade {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 30%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes fade {
  0% {
    opacity: 100%;
  }
  50% {
    opacity: 30%;
  }
  70% {
    opacity: 100%;
  }
  100% {
    opacity: 100%;
  }
}
@-webkit-keyframes rotateP {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@keyframes rotateP {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@-webkit-keyframes pulse {
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulse {
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* ------------------- Containers ------------------- */
.container-full {
  padding: 48px;
}

.container {
  width: 1170px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* ------------------- Typography ------------------- */
.title {
  text-align: center;
  margin-bottom: 48px;
}
.title p {
  font-size: 19px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.title h2 {
  font-size: 53px;
  line-height: 60px;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
}

.text {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.text p {
  font-size: 20px;
}

.header-top {
  background: #1b1c1f;
  width: 100%;
  padding: 6px 0 3px;
}
.header-top p {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: bold;
  text-align: center;
}
.header-top p span {
  color: #50ea50;
}

header {
  height: 75px;
  padding: 4px 20px;
  -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: sticky;
  top: -60px;
  background-color: white;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header.scrolled {
  width: 100%;
  -webkit-animation: 0.3s headerScrolled forwards;
          animation: 0.3s headerScrolled forwards;
  top: 0;
}

.header-inner {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.header-inner .logo {
  max-height: 55px;
  max-width: 250px;
}
.header-inner nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.header-inner nav a {
  color: #000000;
  font-size: 16px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.hamburger {
  cursor: pointer;
  z-index: 16;
  display: none;
}
.hamburger button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  outline: none;
  -webkit-appearance: none;
  background: none;
  padding: 0;
  cursor: pointer;
  border: none;
}
.hamburger button .bar1,
.hamburger button .bar2,
.hamburger button .bar3 {
  width: 25px;
  height: 3px;
  background-color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 2px 2px 2px 2px;
}
.hamburger button.menu-open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
          transform: rotate(-45deg) translate(-5px, 5px);
  background: #000;
}
.hamburger button.menu-open .bar2 {
  opacity: 0;
}
.hamburger button.menu-open .bar3 {
  -webkit-transform: rotate(45deg) translate(-5px, -5px);
          transform: rotate(45deg) translate(-5px, -5px);
  background: #000;
}

.hero {
  background: url("../img/2000x650-header-bg.png");
  padding: 25px 0;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.hero-inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6.6fr 5.4fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-inner .hero-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.hero-inner .hero-left .hero-rating {
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
  letter-spacing: 0.3px;
}
.hero-inner .hero-left .hero-rating img {
  margin-right: 7px;
}
.hero-inner .hero-left .hero-mobile {
  display: none;
  -webkit-animation: fadeInAnimation ease 1s;
          animation: fadeInAnimation ease 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.hero-inner .hero-left .hero-text {
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin-top: 20px;
}
.hero-inner .hero-left .hero-list {
  list-style-type: none;
  margin-top: 25px;
}
.hero-inner .hero-left .hero-list li {
  padding-left: 40px;
  background: url("../img/listStyle.png") no-repeat 0px 2px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 10px;
  text-align: left;
}
.hero-inner .hero-right {
  width: 100%;
  -webkit-animation: fadeInAnimation ease 1s;
          animation: fadeInAnimation ease 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

h1 {
  font-size: 56px;
  line-height: 62px;
  font-weight: bold;
  margin-top: 30px;
}

/* -------------------  Banner -------------------  */
.promo-banner {
  display: none;
  /*  background-color: #a20f1e; */
  padding: 15px 0 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: url("../img/bg.png") no-repeat left top, #100f0f;
  background-size: cover;
}
.promo-banner .promo-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.promo-banner .promo-content .promo-title {
  font-size: 69px;
  font-style: italic;
  font-weight: 700;
  line-height: 82.8px;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
  font-size: clamp(1.288rem, -0.874rem + 5vw, 4.313rem) !important;
}
.promo-banner .promo-content .promo-sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 clamp(0.406rem, -1.35rem + 3.305vw, 1.625rem);
  background: -webkit-gradient(linear, left top, right top, color-stop(8.91%, rgb(255, 223, 0)), to(rgb(236, 134, 0)));
  background: linear-gradient(90deg, rgb(255, 223, 0) 8.91%, rgb(236, 134, 0) 100%);
  line-height: 120%;
  color: black;
  border-radius: 4px;
  font-weight: 700;
  font-size: clamp(1.313rem, -0.398rem + 3.22vw, 2.5rem);
  line-height: 120%;
}
.promo-banner .promo-content .promo-show-tab,
.promo-banner .promo-content .promo-show-mob,
.promo-banner .promo-content .promo-title-mob,
.promo-banner .promo-content .promo-mob-sale-box {
  display: none;
}
.promo-banner .promo-content .promo-discount .promo-up-to {
  color: #ffdf00;
  font-size: clamp(0.75rem, 0.21rem + 1.017vw, 1.125rem);
  font-style: italic;
  font-weight: 700;
  line-height: normal;
}
.promo-banner .promo-content .promo-discount .promo-up-to .promo-up-to-code {
  color: #000;
  background: #acf4a1;
  background-color: #acf4a1;
  border-radius: 5px;
  padding: 4px clamp(0.094rem, -0.401rem + 0.932vw, 0.438rem);
  font-family: Inter;
  font-size: clamp(0.75rem, 0.48rem + 0.508vw, 0.938rem);
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  font-family: "Poppins", sans-serif;
}
.promo-banner .promo-content .promo-discount .promo-percent {
  font-size: 68px;
  font-style: italic;
  font-weight: 700;
  text-align: left;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #ffdf00;
  position: relative;
}
.promo-banner .promo-content .promo-countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.promo-banner .promo-content .promo-countdown .promo-title-mob {
  display: none;
}
.promo-banner .promo-content .promo-countdown .promo-code {
  display: none;
}
.promo-banner .promo-content .promo-countdown .promo-limited-time {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: white;
}
.promo-banner .promo-content .promo-countdown .promo-timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  margin-top: 2px;
}
.promo-banner .promo-content .promo-countdown .promo-timer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.promo-banner .promo-content .promo-countdown .promo-timer div span:last-child {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
  margin-top: 5px;
}
.promo-banner .promo-content .promo-countdown .promo-timer .promo-time {
  font-size: 26px;
  font-weight: 700;
  line-height: 39px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: black;
  background: -webkit-gradient(linear, left top, right top, color-stop(8.91%, rgb(255, 223, 0)), to(rgb(236, 134, 0)));
  background: linear-gradient(90deg, rgb(255, 223, 0) 8.91%, rgb(236, 134, 0) 100%);
  width: 51px;
  padding: 6px 0px;
}
.promo-banner .promo-content .promo-countdown .promo-timer .promo-deks-time {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  text-underline-position: from-font;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #fff;
  margin-top: 5px;
}

/* ------------------- As seen on ------------------- */
.as-seen-on {
  padding: 25px 0;
  border-bottom: 1px solid #e1e1e1;
  background-color: #fbfbfe;
}
.as-seen-on p {
  font-size: 17px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
  color: #000;
  margin-bottom: 35px;
}

.logos {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.logos img {
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ------------------- Overview -------------------*/
#overview {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.overview {
  display: grid;
  grid-template-columns: 470px auto;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.overview .title {
  text-align: start;
}
.overview .overview-img {
  position: relative;
  width: 470px;
}
.overview .overview-img .overview-back {
  width: 100%;
  -webkit-animation: fadeInAnimation ease 1s;
          animation: fadeInAnimation ease 1s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}
.overview .overview-img .overview-front {
  position: absolute;
  top: 0px;
  right: 80px;
  z-index: 10;
  left: 50%;
  -webkit-transform: translate(-50%, 10%);
          transform: translate(-50%, 10%);
}
.overview .overview-img.hidden-desktop {
  display: none;
}
.overview .overview-p {
  font-size: 17px;
  line-height: 26px;
  font-weight: normal;
  color: #000;
  letter-spacing: 0.5px;
  margin-top: 20px;
  padding-right: 60px;
}

.o-dots1 {
  position: absolute;
  top: 3%;
  left: 37%;
}

.o-dots2 {
  position: absolute;
  right: -4%;
  bottom: -9%;
}

@-webkit-keyframes fadeInAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* ------------------- Features ------------------- */
#features {
  background-color: #131314;
  color: white;
}
#features .title h2 {
  color: #32b9bc;
}

.features {
  max-width: 1528px;
  margin: 24px auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.features .features-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.features .feature-item {
  display: grid;
  grid-template-columns: 80px auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
  margin: 16px 0;
}
.features .feature-item h3 {
  padding-top: 13px;
  font-size: 24px;
}
.features .feature-item p {
  font-size: 20px;
  padding-top: 12px;
}
.features .feature-item img {
  width: 100%;
  max-width: 80px;
}
.features .feature-center {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  -ms-flex-item-align: center;
      align-self: center;
}

/* grid-2 */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid-2 .grid-2-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  padding: 50px 0 0 45px;
  height: 580px;
}
.grid-2 .grid-2-item .text,
.grid-2 .grid-2-item .title {
  text-align: start;
  max-width: 360px;
  margin: 0;
}
.grid-2 .grid-2-item .text p {
  font-size: 17px;
  line-height: 26px;
  font-weight: normal;
  color: #000;
  letter-spacing: 0.5px;
}

/* ------------------- Moneyback ------------------- */
#moneyback {
  background-color: #191919;
}

.moneyback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 80px;
}
.moneyback .moneyback-img {
  width: 100%;
  max-width: 289px;
}
.moneyback .moneyback-text {
  max-width: 624px;
  color: white;
}
.moneyback .moneyback-text .moneyback-title {
  font-size: 53px;
  line-height: 60px;
  font-weight: 600;
  margin-top: 20px;
}
.moneyback .moneyback-text .moneyback-p {
  font-size: 17px;
  line-height: 26px;
  font-weight: normal;
  margin-top: 20px;
  letter-spacing: 0.5px;
}

/* ------------------- Reviews -------------------*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.review .review-img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}
.review .stars {
  display: block;
  margin: 0 auto;
  width: 100px;
  margin-top: 30px;
}
.review p {
  font-size: 17px;
  line-height: 26px;
  font-weight: normal;
  color: #000;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.review .reviewer {
  font-size: 17px;
  line-height: 18px;
  color: #000;
  letter-spacing: 0.3px;
  font-weight: 600;
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}
.review .reviewer img {
  width: 12px;
  border-radius: 0;
}
.review .reviewer span {
  color: #37b72d;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.5px;
}

/* ------------------- Faq ------------------- */
#faq {
  padding-bottom: 0 !important;
}

.accordion-container {
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
          box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
  overflow: hidden;
  margin-bottom: 24px;
}

.accordion {
  background-color: inherit;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-weight: 700 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: rgb(74, 74, 74);
  font-family: "Montserrat", sans-serif;
}
.accordion img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.active img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
}
.panel p {
  padding: 24px;
  color: rgb(74, 74, 74);
  font-size: 16px;
  line-height: 24px;
}

/* ------------------- Box ------------------- */
.s5CompBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 1030px;
  background: #fff;
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 220px;
  margin-bottom: 50px;
  -webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2);
}
.s5CompBox .s5Col1 {
  float: left;
  width: 37%;
  padding: 25px 0;
  position: relative;
}
.s5CompBox .s5Col1 ul {
  float: left;
  list-style-type: none;
  width: 100%;
}
.s5CompBox .s5Col1 ul li {
  float: left;
  width: 100%;
  height: 70px;
  text-align: left;
  font-size: 19px;
  line-height: 74px;
  color: #000;
  letter-spacing: 0.3px;
  font-weight: 600;
  padding: 0 0 0 60px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e7e7e7;
  background: url("../img/comp-point.png") no-repeat 22px 25px;
}
.s5CompBox .s5Col1 ul li:last-child {
  border: none;
}

.s5Col2 {
  float: left;
  width: 19%;
  border-radius: 20px;
  margin: -95px 20px -25px 0;
}
.s5Col2 .s5Col2Top {
  float: left;
  width: 100%;
  height: 115px;
}
.s5Col2 .s5Col2Top .s5Col2Prod {
  display: block;
  margin: -65px auto 10px;
  max-width: 100%;
}
.s5Col2 .s5Col2Top p {
  font-size: 20px;
  line-height: 18px;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}
.s5Col2 .s5Col2Top img {
  height: auto;
}
.s5Col2 ul {
  float: left;
  width: 100%;
  padding-top: 5px;
  list-style-type: none;
}
.s5Col2 ul li {
  float: left;
  width: 100%;
  height: 70px;
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #4d82a8;
}
.s5Col2 ul li:last-child {
  border: none;
  height: 115px;
}
.s5Col2 ul li img {
  height: auto;
  max-width: 100%;
}

.s5Col3 {
  background: #383838;
}
.s5Col3 ul li {
  border-bottom: 1px solid #484848;
}

.s5Col4 {
  background: #383838;
}
.s5Col4 ul li {
  border-bottom: 1px solid #484848;
}

.mobile-btn-container {
  padding: 20px 0;
}

/* ------------------- Footer ------------------- */
footer {
  padding: 20px;
}
footer .footer-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
footer .footer-items .footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
footer .footer-items .footer-item a {
  color: black;
  text-decoration: none;
}
footer .footer-items .footer-item img {
  max-height: 75px;
  width: 250px;
}

@media screen and (max-width: 1500px) {
  .promo-banner .promo-content .promo-title {
    font-size: 50px;
  }
  .promo-banner .promo-content .promo-sale {
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    width: 110px;
    height: 40px;
  }
  .promo-banner .promo-content .promo-show-tab,
  .promo-banner .promo-content .promo-show-mob,
  .promo-banner .promo-content .promo-title-mob,
  .promo-banner .promo-content .promo-mob-sale-box {
    display: none;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to {
    font-size: 18px;
  }
  .promo-banner .promo-content .promo-discount .promo-percent {
    font-size: 50px;
  }
  .promo-banner .promo-content .promo-countdown .promo-title-mob {
    display: none;
  }
  .promo-banner .promo-content .promo-countdown .promo-limited-time {
    font-size: 16px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer {
    gap: 20px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer .promo-time {
    font-size: 22px;
    font-weight: 700;
    line-height: 38px;
    width: 43px;
    padding: 0px 0px;
  }
}
@media only screen and (max-width: 1301px) {
  .container-full {
    padding: 40px 0 40px !important;
  }
  .container,
  .hero-inner {
    width: 750px;
  }
  .logos img {
    height: 25px;
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner .hero-left .hero-list li {
    font-size: 20px;
    margin-top: 5px;
  }
  h1 {
    margin-top: 25px;
    font-size: 40px;
    line-height: 46px;
    font-weight: 900;
  }
  .overview {
    grid-template-columns: auto auto;
    gap: 0;
  }
  .overview .overview-img {
    padding-right: 48px;
    width: 370px;
  }
  .overview .overview-img .overview-front {
    top: 15px;
    right: 80px;
    width: 70%;
    left: 45%;
  }
  .overview .overview-p {
    padding: 0;
  }
  .o-dots1 {
    top: 2%;
    left: 42%;
    width: 200px;
    height: auto;
  }
  .o-dots2 {
    position: absolute;
    right: -4%;
    bottom: -6%;
    width: 420px;
    height: auto;
  }
  .title {
    margin-bottom: 20px;
  }
  .title h2 {
    font-size: 34px;
    line-height: 40px;
    margin-top: 15px;
  }
  .title p {
    font-size: 17px;
  }
  .btn {
    font-size: 18px;
  }
  .moneyback {
    gap: 65px;
  }
  .moneyback .moneyback-img {
    max-width: 250px;
  }
  .moneyback .moneyback-text .moneyback-title {
    font-size: 34px;
    line-height: 40px;
    margin-top: 15px;
  }
  .s5CompBox .s5Col1 {
    padding: 15px 0;
    width: 40%;
  }
  .s5CompBox .s5Col1 ul li {
    height: 60px;
    font-size: 16px;
    line-height: 62px;
    font-weight: 500;
    padding: 0 0 0 50px;
    background-position: 20px 20px;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .s5Col2 {
    width: 18%;
    margin: -95px 15px -25px 0;
  }
  .s5Col2 .s5Col2Top {
    height: 105px;
  }
  .s5Col2 .s5Col2Top .s5Col2Prod {
    margin: -65px auto 10px;
    width: 80px;
  }
  .s5Col2 .s5Col2Top p {
    font-size: 18px;
  }
  .s5Col2 ul li {
    height: 60px;
  }
  .s5Col2 ul li img {
    width: 24px;
  }
}
@media only screen and (max-width: 1100px) {
  .promo-banner .promo-content .promo-title {
    font-size: 35px;
  }
  .promo-banner .promo-content .promo-sale {
    font-size: 21px;
    width: 85px;
    height: 30px;
    line-height: 31px;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to {
    font-size: 12px;
    top: 25px;
  }
  .promo-banner .promo-content .promo-discount .promo-percent {
    font-size: 35px;
  }
  .promo-banner .promo-content .promo-countdown .promo-title-mob {
    display: none;
  }
  .promo-banner .promo-content .promo-countdown .promo-limited-time {
    font-size: 12px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer {
    gap: 20px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer .promo-time {
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    width: 27px;
    padding: 0px 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .order-now {
    display: none;
  }
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: white;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding: 0;
    z-index: 999;
  }
  nav span {
    display: none;
  }
  nav a {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    color: #000;
    font-weight: 500;
    border-bottom: 1px solid #dddddd;
  }
  nav.menu-open {
    height: 100dvh;
  }
  nav.menu-top {
    top: 75px;
  }
  .hamburger {
    display: block;
  }
  .container,
  .hero-inner {
    width: 750px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    max-width: 435px;
    width: 100%;
    padding: 0 15px;
  }
  .hero-inner .hero-left .hero-mobile {
    display: block;
    width: 100%;
  }
  .hero-inner .hero-left .hero-list li {
    font-size: 20px;
    margin-top: 5px;
  }
  .hero-right {
    display: none;
  }
  h1 {
    margin-top: 25px;
    font-size: 40px;
    line-height: 46px;
  }
  .o-dots1 {
    top: 1%;
    left: 15%;
    width: 200px;
    height: auto;
  }
  .o-dots2 {
    position: absolute;
    right: -3%;
    bottom: -5%;
    width: 420px;
    height: auto;
  }
  .overview {
    grid-template-columns: 1fr;
    gap: 0;
    width: calc(100% - 330px);
  }
  .overview .overview-img {
    display: none;
  }
  .overview .overview-img.hidden-desktop {
    display: block !important;
    width: 100%;
    padding: 0;
  }
  .text p {
    font-size: 15px;
  }
  #features .title h2 {
    font-size: 24px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .features .features-col {
    max-width: 600px;
    margin: 0 auto;
  }
  .features .feature-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0;
  }
  .features .feature-item h3 {
    font-size: 20px;
  }
  .features .feature-item p {
    font-size: 16px;
  }
  .features .feature-center {
    display: none;
  }
  .moneyback {
    gap: 45px;
  }
  .review .review-img {
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
  }
  .review .stars {
    margin-top: 25px;
  }
  .overview .overview-img .overview-front {
    top: 4%;
    right: 80px;
    width: 78%;
    left: 51%;
  }
}
@media only screen and (max-width: 915px) {
  .promo-banner .promo-content {
    gap: 15px;
  }
}
@media screen and (max-width: 790px) {
  .promo-banner {
    padding: 10px 5px;
  }
  .promo-banner .promo-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 15px;
  }
  .promo-banner .promo-content .promo-title {
    display: none;
  }
  .promo-banner .promo-content .promo-sale {
    display: none;
  }
  .promo-banner .promo-content .promo-show-tab,
  .promo-banner .promo-content .promo-title-mob,
  .promo-banner .promo-content .promo-mob-sale-box {
    display: none;
  }
  .promo-banner .promo-content .promo-mob-sale-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .promo-banner .promo-content .promo-show-mob {
    display: block;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to {
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 21px;
    text-align: start;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: #ffdf00;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to .promo-up-to-code {
    display: none;
  }
  .promo-banner .promo-content .promo-discount .promo-percent {
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    line-height: 32px;
  }
  .promo-banner .promo-content .promo-countdown .promo-title-mob {
    display: block;
    font-size: 27px;
    font-style: italic;
    font-weight: 900;
    line-height: 32.4px;
    text-align: left;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: white;
  }
  .promo-banner .promo-content .promo-countdown .promo-code {
    color: #000;
    background: #acf4a1;
    background-color: #acf4a1;
    border-radius: 5px;
    padding: 4px 8px;
    margin: 5px 0;
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    font-size: 15px !important;
  }
  .promo-banner .promo-content .promo-countdown .promo-sale-mob {
    display: block;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    text-underline-position: from-font;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    color: black;
    width: 50px;
    background: -webkit-gradient(linear, left top, right top, color-stop(8.91%, rgb(255, 223, 0)), to(rgb(236, 134, 0)));
    background: linear-gradient(90deg, rgb(255, 223, 0) 8.91%, rgb(236, 134, 0) 100%);
    border-radius: 4px;
  }
  .promo-banner .promo-content .promo-countdown .promo-limited-time {
    font-size: 12px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer {
    gap: 20px;
  }
  .promo-banner .promo-content .promo-countdown .promo-timer .promo-time {
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    width: 27px;
    padding: 0px 0px;
  }
}
@media only screen and (min-width: 768px) {
  .mobile-btn {
    position: relative !important;
  }
}
@media only screen and (max-width: 767px) {
  .container-full {
    padding: 25px 0 20px !important;
  }
  .container,
  .features {
    width: 100%;
    padding: 0 15px;
  }
  .container,
  .hero-inner {
    max-width: 600px;
  }
  .logos {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 700px;
    gap: 30px;
  }
  .logos img {
    height: 40px;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-2 .grid-2-item {
    min-height: 238px !important;
    height: auto;
    margin: 0;
    gap: 10px;
    padding: 20px;
  }
  .grid-2 .grid-2-item .title {
    max-width: 100%;
    width: 66.66667%;
    padding: 0;
  }
  .title {
    padding: 0 30px;
  }
  .title h2 {
    font-size: 26px;
    line-height: 32px;
    margin-top: 5px;
  }
  .title p {
    font-size: 14px;
  }
  .overview {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
  }
  .overview .overview-img {
    display: none;
  }
  .overview .overview-img.hidden-desktop {
    display: block !important;
    width: 100%;
    padding: 0;
  }
  .overview .overview-img.hidden-desktop .overview-front {
    width: 80%;
  }
  .overview .overview-p {
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px;
  }
  .overview .title {
    padding: 0;
  }
  .o-dots2,
  .o-dots1 {
    display: none;
  }
  .moneyback {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    text-align: center;
  }
  .moneyback .moneyback-img {
    max-width: 160px;
    height: auto;
  }
  .moneyback .moneyback-text .moneyback-title {
    font-size: 26px;
    line-height: 32px;
    margin-top: 5px;
  }
  .moneyback .moneyback-text .moneyback-p {
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px;
  }
  .btn-box {
    display: none;
  }
  .s5CompBox {
    border-radius: 10px;
    margin-top: 160px;
  }
  .s5CompBox .s5Col1 {
    width: 46%;
    padding: 10px 0;
  }
  .s5CompBox .s5Col1 ul li {
    font-size: 14px;
    line-height: 18px;
    padding: 13px 0 13px 30px;
    background-position: 10px 14px;
    background-size: 14px;
  }
  .s5Col2 {
    width: 24%;
    margin: -95px 3% -25px 0;
  }
  .s5Col2 .s5Col2Top {
    height: 100px;
  }
  .s5Col2 .s5Col2Top .s5Col2Prod {
    margin: -45px auto 10px;
    width: 70px;
  }
  .s5Col2 .s5Col2Top p {
    font-size: 13px;
  }
  .s5Col2 ul li {
    height: 60px;
  }
  .s5Col2 ul li img {
    width: 24px;
  }
  .hide-mob {
    display: none;
  }
  .hero {
    padding: 25px 0 25px;
  }
  .header-top p {
    font-size: 11px;
    line-height: 11px;
    padding: 0 5px;
  }
  .hero-inner .hero-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .hero-inner .hero-left .hero-list {
    margin-top: 5px;
    float: none;
    width: 90%;
    display: inline-block;
    vertical-align: top;
  }
  .hero-inner .hero-left .hero-list li {
    width: auto;
    font-weight: 600;
    font-size: 17px;
    margin-top: 5px;
    padding-left: 30px;
    background-position: 2px 3px;
    background-size: 19px;
  }
  .hero-right {
    display: none;
  }
  h1 {
    margin-top: 14px;
    font-size: 28px;
    line-height: 34px;
    margin-bottom: -15px;
  }
  .accordion-container {
    margin-bottom: 15px;
  }
  .accordion {
    padding: 18px;
    font-size: 12px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    gap: 10px;
  }
  .accordion img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .panel p {
    font-size: 12px;
    padding: 24px;
  }
  #reviews h2 {
    font-size: 26px !important;
    line-height: 32px !important;
    margin-top: 5px !important;
  }
  .review {
    padding: 0 20px;
  }
  .review .review-img {
    max-width: 370px;
    width: 100%;
    margin: 0 auto;
  }
  .review .stars {
    margin-top: 25px;
  }
  .review p {
    font-size: 15px;
    line-height: 22px;
    margin-top: 10px;
  }
  .mobile-btn-container {
    min-height: 118px;
  }
  .mobile-btn {
    position: relative;
    background-color: white;
    padding: 20px 10px;
    bottom: 0;
    width: 100%;
    z-index: 20;
  }
  .mobile-btn .btn-box {
    display: block !important;
    margin: 0 auto;
  }
  .mobile-btn .btn-box .btn {
    width: 80%;
    margin: 0 auto;
  }
  footer {
    padding: 15px 0;
  }
  footer .footer-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 500px) {
  .logos {
    padding: 0 15px;
    gap: 40px;
    row-gap: 20px;
  }
  .logos img {
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (max-width: 430px) {
  .promo-banner {
    padding: 10px 5px;
  }
  .promo-banner .promo-content .promo-title {
    display: none;
  }
  .promo-banner .promo-content .promo-sale {
    display: none;
  }
  .promo-banner .promo-content .promo-show-tab,
  .promo-banner .promo-content .promo-title-mob,
  .promo-banner .promo-content .promo-mob-sale-box {
    display: none;
  }
  .promo-banner .promo-content .promo-mob-sale-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .promo-banner .promo-content .promo-show-mob {
    display: block;
  }
  .promo-banner .promo-content .promo-discount .promo-up-to {
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 21px;
    color: #ffdf00;
    top: 20px;
  }
  .promo-banner .promo-content .promo-discount .promo-percent {
    font-size: 30px;
  }
  .promo-banner .promo-content .promo-countdown .promo-title-mob {
    font-size: 20px;
    line-height: 27.4px;
  }
  .promo-banner .promo-content .promo-countdown .promo-sale-mob {
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    width: 50px;
    background: -webkit-gradient(linear, left top, right top, color-stop(8.91%, rgb(255, 223, 0)), to(rgb(236, 134, 0)));
    background: linear-gradient(90deg, rgb(255, 223, 0) 8.91%, rgb(236, 134, 0) 100%);
    color: black;
  }
  .promo-banner .promo-content .promo-countdown .promo-limited-time {
    font-size: 12px;
  }
}/*# sourceMappingURL=styles.css.map */