/* GENERAL */
body {
  background-color: #f9fafa !important;
  color: #000000 !important;
  font-family: "Inter", sans-serif !important;
}

.header-large {
  font-size: 48px;
  font-weight: 800;
  line-height: 58px;
}

.header-medium {
  font-size: 42px;
  font-weight: 800;
  line-height: 50px;
}

.show-des {
  display: block;
}

.show-tab,
.show-mob {
  display: none;
}

.header-large span {
  position: relative;
}

.header-large span::after {
  background-color: #f7d57d;
  bottom: 0;
  content: "";
  height: 40%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.cta-box {
  font-family: "Poppins", sans-serif;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-item .btn-cta,
.cta-box .btn-cta {
  background-color: #ff6600 !important;
  border: 1px solid #b83324;
  border-radius: 8px;
  box-shadow: 0px 4px 8px 0px #d4d4e0;
  color: #ffffff !important;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  padding: 13px 36px;
}

@media only screen and (max-width: 410px) {
  .btn-cta {
    font-size: 15px !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}

.nav-item .btn-cta {
  font-size: 18px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
}

.cta_fixed_bottom .cta-box {
  align-items: center;
  margin: auto;
}

.cta_fixed_bottom .cta-box .btn-cta {
  box-shadow: none;
  margin: auto;
}

.cta-box .date-div,
.cta-box .stock-div {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 5px;
}

.cta-box .date-div p,
.cta-box .stock-div p {
  font-size: 11px !important;
  line-height: 16px !important;
  margin: 0;
}

.bouncing {
  transform: scale(0.9);
  animation: bouncingAnim 1.5s infinite;
}

@keyframes bouncingAnim {
  50% {
    transform: scale(1);
  }
}

.stock-icon {
  gap: 2px;
}

.date-div .green-circle {
  background-color: #adf4a1;
  border-radius: 50%;
  height: 12px;
  padding: 3px;
  width: 12px;
  animation: fadeGreenCircle 1s ease-in-out infinite;
}

.date-div .green-circle::after {
  background-color: #95df89;
  border-radius: 50%;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}

@keyframes fadeGreenCircle {
  50% {
    opacity: 0.4;
  }
}

.cta-box hr {
  background-color: #b9b9b9;
  border: none;
  height: 15px;
  margin: 0;
  opacity: 1;
  width: 2px;
}

.stock {
  background-color: #d9d9d9;
  border-radius: 1px;
  height: 10px;
  width: 10px;
}

.stock:first-child {
  background-color: #fc2201;
}

.text-red {
  color: #fc2201;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
}

/* TOPBAR */
.topbar {
  font-size: 18px;
  line-height: 32px;
  background-color: #acf4a1;
  color: #010a0b;
  text-align: center;
  padding: 10px 0;
}

.topbar .text-heavy {
  font-weight: 700;
}

.topbar .badge {
  border-radius: 8px;
  background-color: #010a0b;
  color: #ffffff;
  vertical-align: middle;
  margin: 0 5px;
  padding: 0.5rem 1.5rem;
  font-size: 18px;
}

/* NAVBAR */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  max-width: 230px;
}

.nav-item {
  align-items: center;
  display: flex;
  padding: 0 10px;
  position: relative;
}

.nav-item:last-child {
  padding-right: 0;
  padding-left: 65px;
}

.nav-item:first-child::before,
.nav-item:last-child::before {
  border: none;
}

.nav-link {
  color: #000000 !important;
  font-size: 16px !important;
  line-height: 19px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 0px;
  padding-top: 18px;
}

.hero .img-container {
  grid-column: 2 / 3;
  grid-row: 1 / 6;
  position: relative;
  width: 100%;
  height: auto;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .header-large {
  line-height: 58px;
  margin-bottom: 0;
}

.hero-guarantee {
  bottom: 0;
  right: 96px;
}

/* SEALS DIV */
.hero .seals-div {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 11px;
  right: 66px;
  top: 111px;
}

/* STAR TITLE */
.star_title {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding: 38px 55px;
}

.hero .star_title {
  padding-bottom: 10px;
}

.star_title p {
  font-size: 14px;
  line-height: 24px;
}

.star_title h4 {
  font-size: 22px;
  margin: 6px 0 0;
}

/* LIST AND CTA */
.list_cta {
  grid-column: 1 / 2;
  grid-row: 2 / 5;
  padding: 0 55px 32px;
}

.list_cta h4 {
  font-size: 20px;
  line-height: 32px;
  margin-top: 10px;
}

.list_cta ul {
  margin-top: 6px;
  padding-left: 0;
}

.list_cta li {
  display: flex;
  align-items: baseline;
  font-size: 18px;
  font-weight: 700;
  gap: 11px;
  line-height: 39px;
  list-style: none;
}

.list_cta li svg {
  color: #ff6600;
  height: 20px;
  width: 20px;
}

.hero-review {
  padding: 0 55px 59px;
  gap: 12px;
}

.hero-review img {
  border-radius: 50%;
}

.hero-review p {
  margin-bottom: 0;
}

.hero-review span {
  font-size: 14px;
}

@media only screen and (max-width: 990px) {
  .hero-review {
    padding: 25px !important;
    display: flex;
  }
}

/* BRANDS */
.brands {
  align-items: center;
  background-color: #010a0b;
  display: flex;
  gap: 15px;
  grid-area: 6 / 1 / 7 / 3;
  justify-content: center;
  padding: 32px;
}

.brands-wrapper {
  display: flex;
  gap: 33px;
  justify-content: center;
}

/* BULLET LIST */
.bullet-list {
  align-items: center;
  background-color: #f9fcfd;
  display: flex;
  flex-direction: column;
  padding-top: 49px;
}

.bullet-list .desc {
  font-size: 24px;
  line-height: 34px;
}

.bullet-list-wrapper {
  background: url(../../images/lander1/water-bg.webp) 50% 57% no-repeat;
  display: flex;
  justify-content: center;
  max-width: 1420px;
  padding-top: 40px;
}

.bullet-list-wrapper .left-list,
.bullet-list-wrapper .right-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  list-style: none;
  padding-left: 0;
}

.bullet-list-wrapper .left-list,
.bullet-list-wrapper .product-div,
.bullet-list-wrapper .right-list {
  flex: 1;
}

.bullet-list-wrapper .bullet-item {
  align-items: baseline;
  display: flex;
  gap: 15px;
}

.bullet-item svg {
  color: #16b8d7;
  height: 20px;
  min-height: 20px;
  min-width: 20px;
  width: 20px;
}

.bullet-item h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.bullet-item p {
  font-size: 18px;
  line-height: 28px;
}

.product-div {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: -48px;
  position: relative;
}

.product-div .bpa {
  bottom: 80px;
  position: absolute;
  right: -100px;
}

/* SCROLLABLE SECTION */
.scrollable-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.scrollable-item {
  align-items: center;
  display: flex;
  gap: 14px;
}

.scrollable-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 0;
  white-space: nowrap;
}

/* BEST IN CLASS */
.best-in-class {
  align-items: center;
  display: flex;
  gap: 47px;
  padding-top: 61px;
}

.best-in-class .img-div {
  width: 60%;
}

.best-in-class video {
  clip-path: inset(1px 1px);
  display: block;
}

.best-in-class .content-div {
  width: 40%;
}

.best-in-class .content-div .flex {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.best-in-class .content-div p {
  font-size: 18px;
  margin-top: 12px;
  max-width: 240px;
}

/* KEY FEATURES */
.key-features {
  display: flex;
  flex-direction: column;
  gap: 54px;
  margin-top: 70px;
}

.feature-div {
  display: flex;
  gap: 35px;
}

.feature-div:nth-child(2n) {
  flex-direction: row-reverse;
}

.feature-content {
  width: 40%;
}

.feature-content p {
  font-size: 18px;
  line-height: 28px;
  margin-top: 20px;
}

.feature-content ul {
  display: flex;
  flex-direction: column;
  gap: 19px;
  list-style: none;
  margin-top: 18px;
  padding-left: 0;
}

.feature-content ul li {
  align-items: baseline;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  gap: 12px;
}

.feature-content .feature-review p {
  font-size: 16px;
  line-height: 24px;
  margin: 7px 0 0;
}

.feature-content .cta-box {
  margin-top: 32px;
}

.feature-content1 {
  width: 50%;
}

.feature-content1 p {
  font-size: 18px;
  line-height: 28px;
  margin-top: 20px;
}

.add-style {
  display: flex;
  flex-direction: column;
  gap: 19px;
  list-style: none;
  margin-top: 18px;
  padding-left: 0;
}

.add-style li {
  align-items: baseline;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  gap: 12px;
}

.feature-content1 .feature-review p {
  font-size: 16px;
  line-height: 24px;
  margin: 7px 0 0;
}

.feature-content1 .cta-box {
  margin-top: 32px;
}

.feature-img {
  width: 60%;
}

.feature-img .bg {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-img .bg1 {
  height: 447px;
  width: 643px;
}

.feature-img-icon1 {
  align-items: center;
  bottom: 125px;
  color: #ffffff;
  display: flex;
  font-weight: 500;
  gap: 18px;
  left: 26px;
}

.feature-img-icon {
  align-items: center;
  bottom: 26px;
  color: #ffffff;
  display: flex;
  font-weight: 500;
  gap: 18px;
  left: 26px;
}

.feature-img-icon img {
  width: 105px;
  border-radius: 11px;
}

.feature-img .product-view {
  bottom: 33px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 500;
  justify-content: space-between;
  line-height: 21px;
  right: 46px;
  top: 28px;
}

.feature-img1 {
  width: 50%;
}

.feature-img1 .bg {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-img1 .bg1 {
  height: 447px;
  width: 643px;
}

.feature-img-icon1 {
  align-items: center;
  bottom: 125px;
  color: #ffffff;
  display: flex;
  font-weight: 500;
  gap: 18px;
  left: 26px;
}

.feature-img-icon {
  align-items: center;
  bottom: 26px;
  color: #ffffff;
  display: flex;
  font-weight: 500;
  gap: 18px;
  left: 26px;
}

.feature-img-icon img {
  width: 105px;
  border-radius: 11px;
}

.feature-img1 .product-view {
  bottom: 33px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-weight: 500;
  justify-content: space-between;
  line-height: 21px;
  right: 46px;
  top: 28px;
}

.product-view .front-icon,
.product-view .back-icon {
  gap: 6px;
}

/* DUAL BG */
.dual-bg {
  padding-top: 78px;
}

.better-warm {
  background: url("../images/better-warm-bg.webp") center / cover
    no-repeat;
  color: #000000;
  display: flex;
  justify-content: flex-end;
  padding-bottom: 50px;
}

.better-warm .text-content {
  padding: 78px 0 186px;
  width: 50%;
}

.better-warm .text-content .text {
  max-width: 432px;
}

.better-warm .text p {
  font-size: 18px;
  line-height: 28px;
}

.small-and-strong {
  align-items: center;
  background-color: #101010;
  color: #ffffff;
  display: flex;
  justify-content: center;
  padding: 0 50px;
}

.small-and-strong p {
  font-size: 18px;
  line-height: 28px;
}

.icons-div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  row-gap: 30px;
}

.icon-feature {
  align-items: center;
  display: flex;
  gap: 16px;
  width: 50%;
}

.small-and-strong .text-content {
  padding: 83px 0;
}

.small-and-strong .text-content .text {
  max-width: 513px;
}

/* COMPARISON TABLE */
.s4CompBox {
  display: flex;
  vertical-align: middle;
  width: 100%;
  max-width: 1000px;
  margin-top: 170px;
  margin-bottom: 30px;
}

.compCol1 {
  float: left;
  width: 50%;
  padding: 15px 0;
  position: relative;
  padding-top: 120px;
}

.compCol1 ul {
  float: left;
  padding-left: 0;
  width: 100%;
}

.compCol1 ul li {
  float: left;
  width: 100%;
  height: 50px;
  text-align: left;
  padding: 10px 0 10px 8px;
  position: relative;
  border-bottom: 1px dashed #475858;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.compCol1 ul li:first-child {
  border-top: 1px dashed #475858;
}

.compCol1 ul li:last-child {
  border-bottom: none;
}

.compCol1 ul li p {
  float: left;
  width: 100%;
  font-size: 20px;
  line-height: 24px;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.compCol1 ul li p span {
  font-weight: bold;
  float: left;
  width: 100%;
  font-size: 20px;
}

.compCol1 ul li img {
  position: absolute;
  left: 25px;
  top: 50%;
  margin-top: -13px;
}

.compCol2 {
  float: left;
  width: 25%;
  background: #e8eded;
  border-radius: 8px;
  margin: -74px 0 0 0;
  padding-bottom: 15px;
}

.compCol2.one {
  border: 1px dashed #475858;
  padding-top: 30px;
}

.compCol2 svg {
  color: #ffffff;
  height: 30px;
  width: 30px;
}

.compCol2Top {
  display: flex;
  flex-direction: column;
  height: 145px;
  width: 100%;
}

.compCol2.one .compCol2Top {
  gap: 15px;
  margin-bottom: 18px;
}

.compCol2Prod {
  display: block;
  margin: auto;
  /* max-width: 100%; */
  max-width: 50%;
}

.compCol2Prod.stars {
  height: 20px;
  width: 108px;
}

.compCol2Prod.product {
  margin-top: -100px;
}

.compCol3 {
  background-color: transparent;
  margin-top: -30px;
}

.compCol2Top.compCol3Top {
  height: 115px;
  margin-top: 35px;
}

.compCol2Top.compCol3Top p {
  background: none;
  color: #161616;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 0;
}

.compCol3 ul li {
  border-bottom: 1px dashed #475858;
}

.compCol3 ul li:first-child {
  border-top: 1px dashed #475858;
}

.compCol4Prod {
  display: block;
  margin: -160px auto 20px;
  max-width: 100%;
}

.compCol2Top p,
.compCol4top p {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.3px;
  background: #252525;
  padding: 6px 15px;
  border-radius: 50px;
}

.compCol2 ul {
  float: left;
  list-style: none;
  padding-left: 0;
  width: 100%;
}

.compCol2 ul li {
  float: left;
  width: 100%;
  height: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compCol2.one ul li {
  border-bottom: 1px dashed #475858;
}

.compCol2.one ul li:first-child {
  border-top: 1px dashed #475858;
}

.compCol4 ul li {
  border-bottom: 1px solid #c2c2c2;
}

.compCol2 ul li img {
  display: inline-block;
  vertical-align: middle;
}

.compCol3 svg {
  color: #adadad;
}

.compCol4 {
  background: #dbdbdb;
  margin-right: 0;
  margin: -30px 0 0 0;
}

.compCol2 ul li:last-child {
  border-bottom: none;
}

.compCol4 .compCol2Top {
  border-radius: 20px 20px 0 0;
  height: 45px;
}

.comparison {
  align-items: center;
  background-color: #e3e7e936;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
  padding-top: 55px;
}

.guarantee_disclaimer {
  display: flex;
  gap: 24px;
  margin: 43px 0 24px 0;
  max-width: 790px;
}

.guarantee-info {
  display: flex;
  flex-direction: column;
}

.guarantee-info h3 {
  font-size: 36px;
  font-weight: 800;
  line-height: 43px;
}

.guarantee-info > p {
  font-size: 18px;
  line-height: 28px;
}

/* REVIEWS */
#reviews {
  background-color: #e3e7e936;
}

.reviews-stars {
  height: 45px;
  width: 216px;
}

.review-ratings {
  background-color: #e8eded;
  border-radius: 8px;
  min-width: 333px;
  overflow: hidden;
}

.review-ratings h5,
.review-ratings .rating {
  padding: 12px 47px 16px 23px;
}

.review-ratings h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 0;
}

.review-ratings .rating {
  align-items: center;
  border-top: 1px dotted #475858;
  display: flex;
  font-size: 18px;
  gap: 30px;
  justify-content: space-between;
}

.reviews-wrapper {
  align-items: flex-start;
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 40px;
}

.review {
  background-color: #e8eded;
  border-radius: 8px;
  display: flex;
  gap: 27px;
  max-width: 803px;
  overflow: hidden;
  padding: 15px;
}

.review-img img {
  border-radius: 8px;
}

.review-content {
  align-items: baseline;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.reviewr-info {
  align-items: baseline;
  display: flex;
  gap: 6px;
}

.reviewr-info span {
  font-size: 14px;
  line-height: 28px;
}

.review-text {
  font-size: 18px;
  line-height: 28px;
  margin: 5px 0 10px;
}

.verified {
  border-left: 1px solid #000000;
  padding-left: 5px;
}

/* DONT MISS OUT */
.offer-box {
  background-color: #e3e7e936;
  padding-top: 82px;
}

.dont-miss-out {
  display: flex;
  color: #ffffff;
  width: 100%;
}

.dont-miss-out-content-wrapper {
  width: 50%;
  display: flex;
  align-items: center;
  background-color: #111111;
}

.dont-miss-out-content {
  max-width: 510px;
  margin-left: auto;
}

.dont-miss-out .star_title {
  padding: 70px 55px 0 15px;
}

.dont-miss-out .list_cta {
  padding: 0 55px 80px 15px;
}

.dont-miss-out .list_cta h4 {
  color: #ff6600;
  font-size: 36px;
  font-weight: 800;
  margin: 16px 0 20px;
}

.dont-miss-out .seals-div {
  bottom: 70px;
  flex-direction: row;
  top: auto;
}

.dont-miss-out .cta-box .btn-cta {
  box-shadow: none;
}

.dont-miss-out-bg-img {
  background-image: url("../images/dont-miss-out.webp");
  background-position: top center;
  background-size: cover;
  width: 50%;
}

/* FAQ */
#faq {
  margin-bottom: 232px;
  margin-top: 81px;
}

#faq .header-large {
  font-size: 42px;
  line-height: 52px;
}

#faq .wrapper {
  margin: 0 auto 66px auto;
  padding: 0 20px;
  max-width: 960px;
}

#faq .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  display: flex;
  flex-direction: column;
  margin-top: 38px;
}

#faq .accordion-button:focus {
  box-shadow: none;
}

#faq .accordion-item {
  border-bottom: 1px dotted #475858;
  border-radius: 4px;
  padding: 19px 0 22px;
}

#faq .accordion-item:first-child {
  border-top: 1px dotted #475858;
}

#faq .accordion-button {
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
}

#faq .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0
    var(--bs-accordion-border-color);
  color: #000000;
  padding-bottom: 0;
}

#faq .accordion-button:not(.collapsed)::after {
  background-image: url("../images/minus.svg");
  height: 4px;
  margin-bottom: 8px;
}

#faq .accordion-button::after {
  background-image: url("../images/plus.svg");
  background-size: contain;
  height: 30px;
  width: 19px;
}

#faq .accordion-body {
  font-size: 18px;
  line-height: 28px;
}

/* FOOTER */
footer {
  align-items: center;
  background-color: #ffffff;
  border-top: 1px solid #d7d7d7;
  color: #a8a8a8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}

.footer-logo {
  margin-bottom: 18px;
  max-width: 230px;
}

.footer-links .link-item {
  align-items: center;
  color: #a8a8a8;
  display: flex;
  font-size: 14px;
  gap: 5px;
  line-height: 21px;
  margin-bottom: 0;
  padding: 0 10px;
  position: relative;
}

.footer-links .link-item::after {
  border-right: 1px solid #a8a8a8;
  content: "";
  height: 80%;
  left: 0;
  position: absolute;
}

.footer-links .link-item:first-child::after {
  border: none;
}

.footer .copy {
  color: #a8a8a8;
  font-size: 14px;
  line-height: 21px;
}

@media screen and (max-width: 1202px) {
  .feature-img-icon1 {
    align-items: center;
    bottom: 260px !important;
    color: #ffffff;
    display: flex;
    font-weight: 500;
    gap: 18px;
    left: 26px;
  }
}

@media (max-width: 992px) {
  .feature-img-icon1 {
    align-items: center;
    bottom: 25px !important;
    color: #ffffff;
    display: flex;
    font-weight: 500;
    gap: 18px;
    left: 26px;
  }

  .feature-img .bg1 {
    height: auto;
    width: 100%;
  }

  .feature-img1 .bg1 {
    height: auto;
    width: 100%;
  }
  /* GENERAL */
  .header-large {
    font-size: 28px;
    line-height: 38px;
  }

  .header-medium {
    font-size: 28px;
    line-height: 34px;
  }

  .showfxd {
    bottom: -30px;
    left: auto;
    margin: 0 auto;
    position: fixed;
    right: 0;
  }

  .cta_fixed_bottom.showfxd {
    align-items: center;
    background-color: #f9f9fa;
    border: none;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 5px 10px 5px;
    width: 100%;
    z-index: 3;
  }

  .cta_fixed_bottom.showfxd .cta-box .stock:not(:first-child) {
    background-color: #ffffff;
  }

  .cta_fixed_bottom.hidden {
    display: none;
    pointer-events: none;
  }

  /* TOPBAR */
  .topbar {
    font-size: 18px;
    line-height: 28px;
  }

  .topbar strong {
    color: #fed606;
  }

  /* NAVBAR */
  .navbar-brand {
    margin: 6px 0 6px 20px;
    max-width: 107px;
  }

  .navbar {
    padding: 0 !important;
  }

  .navbar > .container-xl {
    align-items: baseline;
    padding: 0;
  }

  .navbar-toggler {
    font-size: 14px !important;
    border: none !important;
    color: #000000 !important;
    outline: none;
  }

  .navbar-toggler-icon {
    background-image: url("../images/menu.svg") !important;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    height: 2em !important;
    width: 2em !important;
  }

  .nav-item {
    padding: 0;
  }

  .nav-link {
    border: 1px solid #d6d6d6 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 46px;
    padding: 0 0 0 15px !important;
    width: 100%;
  }

  .nav-link.active {
    background-color: #ff6600;
    color: #ffffff !important;
    font-weight: 700 !important;
  }

  /* HERO */
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero .seals-div {
    bottom: 30px;
    right: 19px;
    top: auto;
  }

  .img-container {
    order: 1;
  }

  .img-container .seals-div img {
    height: 80px;
    width: 80px;
  }

  .hero .header-large {
    font-size: 32px;
    line-height: 39px;
  }

  .hero-guarantee {
    width: 100px;
    height: 100px;
    right: 25%;
    bottom: 10px;
  }

  .star_title {
    align-items: center;
    order: 0;
    padding: 20px;
    text-align: center;
  }

  .star_title > div {
    align-items: center;
  }

  .star_title h2 {
    text-align: center !important;
  }

  .star_title h4 {
    font-size: 16px;
    line-height: 26px;
  }

  .list_cta {
    order: 3;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .list_cta ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .list_cta li {
    line-height: 21px;
    min-width: 232px;
    width: 50vw;
    overflow: hidden;
  }

  .list_cta h4 {
    font-size: 18px;
    line-height: 26px;
    text-align: center;
  }

  .brands {
    flex-direction: column;
    order: 2;
    padding: 20px;
  }

  .brands-wrapper {
    flex-wrap: wrap;
  }

  .brand-img img {
    max-width: 100px;
  }

  /* BULLET LIST */
  .bullet-list {
    align-items: center;
    background-color: #f9fcfd;
    display: flex;
    flex-direction: column;
  }

  .bullet-list .desc {
    font-size: 18px;
    line-height: 27px;
  }

  .bullet-list-wrapper {
    background: none;
    flex-direction: column;
    padding: 40px 20px;
  }

  .bullet-list-wrapper .left-list,
  .bullet-list-wrapper .right-list {
    gap: 25px;
  }

  .bullet-list-wrapper .left-list,
  .bullet-list-wrapper .product-div,
  .bullet-list-wrapper .right-list {
    flex: 1;
  }

  .bullet-list-wrapper .left-list {
    order: 2;
  }

  .bullet-list-wrapper .right-list {
    order: 3;
  }

  .bullet-list-wrapper .bullet-item {
    align-items: baseline;
    display: flex;
    gap: 15px;
  }

  .bullet-item h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
  }

  .product-div {
    background: url(../../images/lander1/water-bg.webp) center no-repeat;
    margin-bottom: 73px;
    order: 1;
  }

  .product-div .bpa {
    bottom: 100px;
    position: absolute;
    right: -40px;
  }

  /* SCROLLABLE SECTION */
  .scrollable-section {
    overflow: hidden;
  }

  .scrollable-wrapper {
    animation: infinite-scroll 20s linear infinite;
    gap: 60px;
    margin-top: 32px;
    margin-bottom: 30px;
    white-space: nowrap;
  }

  @keyframes infinite-scroll {
    to {
      transform: translate(calc(-50% - 15px));
    }
  }

  /* BEST IN CLASS */
  .best-in-class {
    --bs-gutter-x: 0 !important;
    flex-direction: column;
    padding: 0;
    margin-top: 38px;
    gap: 22px;
  }

  .best-in-class .img-div {
    width: 100%;
  }

  .best-in-class video {
    clip-path: none;
  }

  .best-in-class .content-div {
    padding: 0 21px;
    width: 100%;
  }

  .best-in-class .content-div .flex {
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 9px;
  }

  .best-in-class .content-div p {
    line-height: 28px;
    margin-top: 12px;
    max-width: unset;
  }

  .best-in-class .content-div img {
    width: 105px;
    height: 105px;
  }

  /* KEY FEATURES */
  .key-features {
    --bs-gutter-x: 0 !important;
    margin-top: 15px;
  }

  .feature-div,
  .feature-div:nth-child(2n) {
    flex-direction: column-reverse;
  }

  .feature-img,
  .feature-img1,
  .feature-img img {
    width: 100%;
  }

  .feature-content {
    padding: 0 21px;
    width: 100%;
  }

  .feature-content p {
    margin-top: 10px;
  }

  .feature-content1 {
    padding: 0 21px;
    width: 100%;
  }

  .feature-content1 p {
    margin-top: 10px;
  }

  .feature-img-icon img {
    min-height: 60px;
    min-width: 60px;
    max-height: 105px;
    max-width: 105px;
    width: 15vw;
    height: 15vw;
    box-shadow: 0 0 0px 1px #ffffff;
  }

  .feature-img-icon span {
    font-size: 15px;
    line-height: 18px;
  }

  .feature-img .product-view {
    bottom: 20px;
    flex-direction: row;
    gap: 18px;
    right: 20px;
    top: auto;
  }

  .feature-img .product-view img {
    height: 106px;
    width: 61px;
  }

  .feature-img1 .product-view {
    bottom: 20px;
    flex-direction: row;
    gap: 18px;
    right: 20px;
    top: auto;
  }

  .feature-img1 .product-view img {
    height: 106px;
    width: 61px;
  }

  .better-warm .text-content {
    padding: 44px 30px 90px 0;
    width: 55%;
  }

  /* DUAL BG */
  .small-and-strong {
    flex-direction: column;
    padding: 0 20px;
  }

  .small-and-strong .text-content {
    padding: 34px 0 0;
  }

  /* COMPARISON TABLE */
  .s4CompBox {
    margin-top: 110px;
  }

  .compCol2 {
    margin-bottom: -22px;
    padding: 0 0 15px 0;
  }

  .compCol2.one {
    padding-top: 0;
    margin: -40px 0 -22px 0;
  }

  .compCol2Top img:nth-child(2) {
    max-width: 120px;
    width: 100%;
    padding: 0 8px;
  }

  .compCol2Prod.stars {
    max-width: 120px;
    min-width: 67px;
    padding: 0 10px;
    width: 100%;
  }

  .compCol2.one .compCol2Top {
    margin-bottom: 14px;
  }

  .compCol1 {
    padding-top: 90px;
    padding-bottom: 0;
  }

  .compCol1 ul {
    margin-bottom: 0;
  }

  .compCol1 ul li {
    padding: 10px 4px 10px 8px;
    height: 68px;
  }

  .compCol2 ul li {
    height: 68px;
  }

  .compCol2Top {
    height: 115px;
    margin-top: 0px;
  }

  .compCol2Top .product {
    margin-top: -65px;
    max-height: 90px;
  }

  .compCol2.one .product {
    max-height: unset;
    width: 57px;
  }

  .compCol2.compCol3 .compCol2Prod {
    margin-top: 20px;
  }

  .compCol1 ul li p {
    font-size: 15px;
    line-height: 20px;
  }

  .compCol2 svg {
    height: 26px;
    width: 26px;
  }

  .compCol2Top.compCol3Top {
    gap: 10px;
    height: 115px;
    margin-top: 5px;
  }

  .compCol2Top.compCol3Top .compCol2Prod {
    margin-top: -10px;
  }

  .compCol2Top.compCol3Top .product {
    margin-top: -45px;
  }

  .compCol2Top.compCol3Top p {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .guarantee_disclaimer {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 58px;
    padding: 0 20px;
  }

  .guarantee_disclaimer .guarantee-seal img {
    width: 156px;
    height: 156px;
  }

  .guarantee-info {
    align-items: center;
    text-align: center;
  }

  .guarantee-info h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .guarantee-info .cta-box {
    align-items: center;
  }

  /* REVIEWS */
  .reviews-wrapper {
    flex-direction: column;
    margin-top: 25px;
  }

  .review-ratings {
    width: 100%;
    min-width: 200px;
  }

  .review {
    flex-direction: column;
  }

  .review-ratings h5,
  .review-ratings .rating {
    padding: 9px 47px 9px 23px;
  }

  .reviews .header-large {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 0;
  }

  .review-img img {
    max-width: 172px;
  }

  .reviews .reviews-stars {
    width: 138px;
  }

  .review-content > img {
    width: 85px;
  }

  .reviewr-info {
    font-size: 14px;
  }

  .review-text {
    font-size: 18px;
    line-height: 28px;
  }

  .offer-box {
    padding-top: 0;
  }

  /* DONT MISS OUT */
  .dont-miss-out {
    flex-direction: column;
    background-color: transparent;
    margin-top: 49px;
  }

  .dont-miss-out-content-wrapper {
    width: 100%;
  }

  .dont-miss-out-content {
    margin-left: unset;
    max-width: unset;
    width: 100%;
  }

  .dont-miss-out .star_title {
    padding: 35px 15px 15px 15px;
    max-width: 400px;
    margin: 0 auto;
  }

  .dont-miss-out .header-large {
    font-size: 32px;
    line-height: 39px;
  }

  .dont-miss-out .seals-div {
    bottom: 30px;
    flex-direction: column;
    top: auto;
  }

  .dont-miss-out .list_cta .cta-box {
    align-items: center;
    display: flex;
    align-self: center;
  }

  .dont-miss-out .star_title {
    color: #000000 !important;
  }

  .dont-miss-out .star_title h4 {
    font-weight: 700;
    opacity: 0.7;
    font-size: 22px;
    text-transform: capitalize;
  }

  .dont-miss-out .list_cta {
    background-color: #111111;
    align-items: flex-start;
    padding: 30px 20px 27px 20px;
    max-width: 440px;
    margin: 0 auto;
  }

  .dont-miss-out-bg-img {
    width: 100%;
    order: -1;
    height: 635px;
    background-image: url("../images/dont-miss-out.png");
    background-position: center;
  }

  /* FAQ */
  #faq {
    margin-bottom: 264px;
    margin-top: 31px;
  }

  #faq .header-large {
    font-size: 28px;
    line-height: 34px;
  }

  #faq .wrapper {
    margin-bottom: 39px;
  }

  #faq .accordion {
    margin-top: 0;
  }

  #faq .accordion-item {
    padding: 10px 0;
  }

  #faq .accordion-button {
    font-size: 18px;
    font-weight: bold;
    line-height: 28px;
    padding: 12px 7px 12px 5px;
    gap: 15px;
  }

  #faq .accordion-button::after {
    width: 19px;
    height: 19px;
    align-self: baseline;
    margin-top: 4px;
  }

  #faq .accordion-body {
    font-size: 18px;
    line-height: 32px;
    padding: 7px;
  }

  /* FOOTER */
  footer {
    padding-bottom: 150px;
  }

  .footer-links .link-item {
    font-size: 14px;
    line-height: 21px;
  }

  .footer .copy {
    font-size: 14px;
    line-height: 22px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero .img-container {
    order: 1;
    width: 100%;
    height: auto;
  }

  .star_title {
    order: 0;
    text-align: center;
    padding: 15px;
  }

  .list_cta {
    order: 3;
    padding: 15px;
  }

  .best-in-class .content-div p br {
    display: none;
  }

  .brands {
    order: 2;
    flex-direction: column;
    padding: 10px;
  }

  .brands-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.showMob {
  display: none;
}

@media only screen and (max-width: 767px) {
  .showMob {
    display: block;
  }
}

/* .banner {
	background-color: #000;
	padding: 20px 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	justify-content: center;
} */

.banner-content {
  display: flex;
  align-items: center;
  gap: 25px;
}

.black-friday {
  font-family: "Poppins", sans-serif;
  font-size: 69px;
  font-style: italic;
  font-weight: 900;
  line-height: 82.8px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}

.black-friday-mob,
.sale-mob {
  display: none;
}

.sale {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  width: 150px;
  height: 50px;
  background: linear-gradient(90deg, #e51f1f 8.91%, #940000 100%);
  border-radius: 4px;
}

.discount {
  /* display: flex;
    align-items: flex-start;
    flex-direction: column; */
}

.up-to {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(229, 31, 31, 1);
  position: absolute;
  top: 18px;
}

.percent {
  font-family: "Poppins", sans-serif;
  font-size: 68px;
  font-style: italic;
  font-weight: 900;
  line-height: 81.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(229, 31, 31, 1);
  position: relative;
}

.countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.limited-time {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
}

.timer {
  display: flex;
  gap: 28px;
  margin-top: 2px;
}

.timer div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time {
  font-family: Poppins;
  font-size: 26px;
  font-weight: 700;
  line-height: 39px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: white;
  background: linear-gradient(184.32deg, #e51f1f 3.51%, #940000 104.48%);
  width: 51px;
  padding: 6px 0px;
}

.timer div span:last-child {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin-top: 5px;
  display: none;
}

.deks-time {
  font-family: Poppins;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
  margin-top: 5px;
}

@media only screen and (max-width: 1370px) {
  .black-friday,
  .percent {
    font-size: 50px;
  }

  .sale {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    width: 110px;
    height: 40px;
    background: linear-gradient(90deg, #e51f1f 8.91%, #940000 100%);
    border-radius: 4px;
  }

  .time {
    font-family: Poppins;
    font-size: 22px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: white;
    background: linear-gradient(184.32deg, #e51f1f 3.51%, #940000 104.48%);
    width: 43px;
    padding: 0px 0px;
  }

  .limited-time {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: white;
  }

  .timer div span:last-child {
    font-family: Poppins;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    margin-top: 5px;
  }

  .deks-time {
    font-family: Poppins;
    font-size: 10px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    margin-top: 5px;
  }

  .timer {
    display: flex;
    gap: 20px;
    margin-top: 2px;
  }
}

@media only screen and (max-width: 1080px) {
  .black-friday,
  .percent {
    font-family: Poppins;
    font-size: 35px;
    font-style: italic;
    font-weight: 900;
    line-height: 42px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .sale {
    font-family: "Poppins", sans-serif;
    font-size: 21px;
    font-style: italic;
    font-weight: 700;
    line-height: 31px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    width: 85px;
    height: 30px;
    background: linear-gradient(90deg, #e51f1f 8.91%, #940000 100%);
    border-radius: 4px;
  }

  .up-to {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-style: italic;
    font-weight: 600;
    line-height: 21px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(229, 31, 31, 1);
    position: absolute;
    top: 25px;
  }

  .limited-time {
    font-family: Poppins;
    font-size: 12px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: white;
  }

  .deks-time {
    display: none;
  }

  .timer div span:last-child {
    display: block;
  }

  .time {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: white;
    background: linear-gradient(184.32deg, #e51f1f 3.51%, #940000 104.48%);
    width: 27px;
    padding: 0px 0px;
  }

  .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

@media only screen and (max-width: 790px) {
  .show-mob {
    display: block;
  }

  .show-des {
    display: none;
  }

  .mob-sale-box {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .black-friday {
    display: none;
  }

  .sale {
    display: none;
  }

  .black-friday-mob {
    display: block;
    font-family: Poppins;
    font-size: 27px;
    font-style: italic;
    font-weight: 900;
    line-height: 32.4px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: white;
  }

  .sale-mob {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    line-height: 23px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    width: 50px;
    /* height: 40px; */
    background: linear-gradient(90deg, #e51f1f 8.91%, #940000 100%);
    border-radius: 4px;
  }

  /* .banner {
		background-color: #000;
		padding: 10px 5px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		justify-content: center;
	} */

  .percent {
    font-family: Poppins;
    font-size: 40px;
    font-style: italic;
    font-weight: 900;
    line-height: 32px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }

  .banner-content {
    display: flex;
    align-items: flex-end;
    gap: 15px;
  }

  .up-to {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    line-height: 21px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: rgba(229, 31, 31, 1);
    position: absolute;
    top: 20px;
  }
}

@media only screen and (max-width: 380px) {
  .black-friday-mob {
    display: block;
    font-family: Poppins;
    font-size: 20px;
    font-style: italic;
    font-weight: 900;
    line-height: 27.4px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: white;
  }

  .percent {
    font-family: Poppins;
    font-size: 30px;
    font-style: italic;
    font-weight: 900;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
  }
}

.as-seen-on {
  margin: 40px 0px;
  background: white;
  border: 1px solid black;
  border-radius: 10px;
}

.as-seen-on-p {
  font-family: Inter;
  font-size: 17px;
  font-weight: 700;
  line-height: 20.57px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0px !important;
}

.image-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0px;
}

@media only screen and (max-width: 790px) {
  .as-seen-on {
    margin: 10px 0px 20px 0px;
    background: white;
    border: 1px solid black;
    border-radius: 10px;
  }

  .image {
    width: 10%; /* Svaka slika zauzima 16% širine, sa razmakom od 10px */
    height: auto;
  }

  .as-seen-on-p {
    font-family: Inter;
    font-size: 12px;
    font-weight: 700;
    line-height: 20.57px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0px !important;
  }

  .image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
  }
}
