@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&family=Permanent+Marker&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto Slab', serif;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
    max-height: 100%;
}
ul {
    list-style-type: none;
}
.container {
    padding: 20px;
    max-width: 1030px;
    margin: 0 auto;

}

/* Background */
.bg-gray {
    background-color: #f3f3f3;
}
.bg-yellow {
    background-color: #d6bb08;
}
.bg-heading {
    background-image: linear-gradient(90deg,#9f193d,#e23b7b 99%);
    color: #fff;
}
.bg-yellow {
    background: #ffe219;
    box-shadow: 5px 0 0 #ffe219, -5px 0 0 #ffe219;
}

/* Text and Color*/
h1 {
    padding-bottom: 20px;
    font-size: 3rem;
    color: #9f193d;
}
h2 {
    text-align: center;
    font-size: 2.5rem;
}
p, li {
    font-size: 20px;
    padding-bottom: 20px;
}
.fs-16 {
    font-size: 16px;
}
.fs-24 {
    font-size: 24px;
}
.text-center {
    text-align: center;
}
.text-black {
    color: #000;
}
.text-white {
    color: #fff;
}
.text-red {
    color: #d71920;
}
.text-orange {
    color: #f9741a;
}

/* Display */
.d-b {
    display: block;
}
.d-n {
    display: none;
}
.d-f {
    display: flex;
}
.f-w {
    flex-wrap: wrap;
}
/* Width */
.w-1 {
    width: 10%;
}
.w-2 {
    width: 20%;
}
.w-33 {
    width: 33.3333%;
}
.w-3 {
    width: 30%;
}
.w-4 {
    width: 40%;
}
.w-5 {
    width: 50%;
}
.w-6 {
    width: 60%;
}
.w-7 {
    width: 70%;
}
.w-8 {
    width: 80%;
}
.w-9 {
    width: 90%;
}

/* Height */
.h-9 {
    height: 90%;
}
.h-100 {
    height: 100%;
}

/* Padding */
.pt-2 {
    padding-top: 20px;
}
.pt-4 {
    padding-top: 40px;
}
.pt-5 {
    padding-top: 50px;
}
.pt-8 {
    padding-top: 80px;
}
.pl-2 {
    padding-left: 20px;
}
.pr-1 {
    padding-right: 10px;
}
.pr-2 {
    padding-right: 20px;
}

/* Section */
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 21%;
    bottom: 15px;
    z-index: 996;
    background: #d8dadb;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.4s;
  }
  .back-to-top .bi-chevron-up {
    color: #fff;
  }
  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }
  
  .back-to-top:hover {
    background: #878b8b;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }


@media screen and (max-width: 1929px) {
        .back-to-top.active {
            right: 14%;
        }
}
@media screen and (max-width: 1500px) {
    .back-to-top.active {
        right: 9%;
    }
}
@media screen and (max-width: 1400px) {
    .back-to-top.active {
        right: 5%;
    }
}
@media screen and (max-width: 1200px) {
    .back-to-top.active {
        right: 15px;
    }
}
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
    [data-aos-delay] {
      transition-delay: 0 !important;
    }
  }
  
/* sec1 */
#fvb {
    background-image: url(../images/bg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
#fvb .container .text-center p {
    color: #9f193d;
    font-size: 18px;
}
#fvb .container li {
    position: relative;
    padding-left: 40px;
    color: #9f193d;
}
#fvb .container li::before {
    content: "";
    background-image: url(../images/check2.png);
    background-size: cover;
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
    top: 0;
}
#fvb .video {
    border: 2px solid #9f193d;
    border-radius: 0.25rem;
}
#fvb .w-4 p {
    color: #9f193d;
}
#fvb .w-6 p {
    color: #9f193d;
    font-size: 14px;
    padding-top: 10px;
}

/* Menu */
.drawer-menu {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  padding: 80px 0;
  background: rgb(252, 246, 246);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: perspective(500px) rotateY(-90deg);
  transform: perspective(500px) rotateY(-90deg);
  opacity: 0;
  box-shadow: 0px 0px 5px #1E1E1E;
}

.drawer-menu h2 {
    font-size: 1.2rem;
    padding-bottom: 20px;
}
.drawer-menu h2 a {
    text-decoration: none;
    color: #9f193d;
}
.drawer-menu li {
  text-align: left;
  padding-left: 20px;
  padding-bottom: 0;
}

.drawer-menu li a {
  display: block;

    padding-bottom: 20px;
  font-size: 16px;
  color: rgba(153,153,153);
  -webkit-transition: all .8s;
  transition: all .8s;
  text-decoration: none;
  font-weight: 500;
}

.drawer-menu li a:hover {
  color: #f9741a;
}


/* checkbox */

.check {
  display: none;
}


/* menu button - label tag */

.menu-btn {
  position: fixed;
  display: block;
  top: 28px;
  right: 20px;
  display: block;
  width: 40px;
  height: 40px;
  font-size: 10px;
  text-align: center;
  cursor: pointer;
  z-index: 3;
}

.bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 1px;
  background: #9f193d;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.bar.middle {
  top: 12px;
  opacity: 1;
}

.bar.bottom {
  top: 24px;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

.menu-btn__text {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
  display: block;
  visibility: visible;
  opacity: 1;
}


/* Hover Effects */

.menu-btn:hover .bar {
  background: rgb(184, 176, 176);
}

.menu-btn:hover .menu-btn__text {
  color: #999;
}

.close-menu {
  position: fixed;
  top: 0;
  right: 300px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}


/* checked */

.check:checked ~ .drawer-menu {
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  z-index: 2;
}

.check:checked ~ .contents {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateX(-300px);
  -ms-transform: translateX(-300px);
  transform: translateX(-300px);
}

.check:checked ~ .menu-btn .menu-btn__text {
  visibility: hidden;
  opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
  width: 36px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
  width: 36px;
  top: 25px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: .3s;
  transition-delay: .3s;
  background: rgba(0, 0, 0, .5);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}
/* End Menu */
/* sec3 */
#how-does li {
    position: relative;
    padding-left: 25px;
}
#how-does li::before {
    content: "";
    background-image: url(../images/tick-icon.png);
    background-size: cover;
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
}
/* sec4 */
#ingredient .d-f {
    border: 1px solid #c2c2c2;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}
#ingredient .d-f h3 {
    font-size: 1.7rem;
}
#ingredient li {
    position: relative;
    padding-left: 25px;
}
#ingredient li::before {
    content: "";
    background-image: url(../images/tick-icon.png);
    background-size: cover;
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
}

/* sec5 */
#benefits li {
    position: relative;
    padding-left: 25px;
}
#benefits li::before {
    content: "";
    background-image: url(../images/tick-icon.png);
    background-size: cover;
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
}
/* sec6 */
#yes-just p {
    font-size: 2rem;
}
#yes-just span {
   font-size: 3rem;
   font-weight: 700;
   font-style: italic;
   background-color: #FFE219;
   padding: 10px;
}
/* sec7  */
.buy {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 5px 20px;
    border: 3px solid #e1e1e1;
    border-radius: 6px;
}
.buy:hover {
    box-shadow: 1px 4px 16px rgb(0 0 0 / 20%);
}
.buy h3 {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #572b33;
    font-size: 33px;
    margin-top: 0;
    padding-bottom: 10px;
}
.buy h3 strong {
    color: #572b33;
}
.buy .w-5 p {
    font-size: 25px;
    padding-bottom: 0;
}
.buy .w-5 p del {
    font-size: 56px;
    text-decoration: line-through;
    text-decoration-color: #322f32;
    text-decoration-thickness: 2px;
}
.buy h5 {
    color: #ea4b36;
    font-size: 22px;
}
.buy h5 span {
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -4px;
}
.buy a {
    text-decoration: none;
    background: linear-gradient(270deg,#fec139 0,#ffd64b 100%);
    font-size: 26px;
    position: relative;
    z-index: 1;
    min-width: 80%;
    line-height: 1.4;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 33px;
    padding: 15px;
    color: #fff;
    text-transform: capitalize;
    transition: all .3s ease-in-out;

}
.buy a:hover {
    background: linear-gradient(270deg,#ffd64b 100%,#fec139 0);
    transition: all .3s ease-in-out;
}
.buy > p {
    font-size: 12px;
    padding-top: 10px;
    padding-bottom: 0;
}



/* sec8 */
#money-back {
    padding-top: 80px;
    padding-bottom: 40px;
}
#money-back  h3 {
    padding-bottom: 20px;
}
#money-back .container {
    background: url(../images/s27-bx-bg.png) repeat left top;
    padding: 35px;
    
}
#money-back .border-white {
    border: 7px solid #fff;
    width: 100%;

}
#money-back .container .content{
    background-color: #fff;
    position: relative;
    padding: 7px;
    border: 5px solid #9f193d;
    width: 100%;


}
#money-back .mbg-seal {
    -webkit-transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -118px;
    z-index: 1;
}
#money-back .content h3 {
    padding-top: 20px;
    font-size: 36px;
    line-height: 38px;
    color: #9f193d;
    font-weight: 700;
}
#money-back .content-sub {
    border: 5px solid #e1dfd0;
    background: #f8f7ee;
    position: relative;
    padding: 170px 25px 30px
}

/* sec9 */
#faq .accordion {
    width: 100%;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    position: relative;
    font-weight: 700;
    margin: 9px 0;
    text-align: left;
    border-radius: 10px 10px;
    padding-left: 35px;
    color: #9f193d;
}
#faq .accordion-close::before {
    content: "";
    background-image: url(../images/down.png);
    background-size: 100%;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 6px;

}
#faq .accordion-open::before {
    content: "";
    background-image: url(../images/up.png);
    background-size: cover;
    width: 25px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 6px;
}
.acdn-content {
    width: 100%;
    padding: 0px 30px 0px;
}
.acdn-content p {
    font-size: 16px;
}
/* sec12 */
#you-will {
    padding-bottom: 40px;
}
#you-will li {
    position: relative;
    padding-left: 25px;
}
#you-will li::before {
    content: "";
    background-image: url(../images/tick-icon.png);
    background-size: cover;
    position: absolute;
    top: 1px;
    left: 0;
    width: 20px;
    height: 20px;
}
#you-will li b {
    display: block;
    padding-bottom: 10px;
}
#you-will li span {
    display: block;
    padding-bottom: 10px;
    font-size: 90%;
}
#you-will a {
    font-size: 2rem;
    color: #fff;
    padding: 10px 20px;
    border-radius: .25rem;
    font-weight: 400;
    color: #d71920;
    font-family: 'Permanent Marker', cursive;
    border: 1px solid #d71920;
}
#you-will a:hover {
    border: none;
    background-color: #f8aa02;
    color: #fff;
}
.show {
    display: block !important;
}
.hide {
    display: none;
}
/* fixed */
#ads-fixed {
    width: 160px;
    height: 230px;
    overflow: hidden;
    position: fixed;
    bottom: 40%;
    left: 2px;
}
#ads-fixed .banner {
    display: inline;
    
}
#ads-fixed .banner img {
    width: 160px;
    height: 230px;
}

#ads-hide2 {
    position: fixed;
    bottom: 5px;
    left: 5px;
    width: 302px;
    border-radius: 50px;
    align-items: center;
    box-sizing: border-box;
    border: 1px solid rgba(216,217,226,.5);
    box-shadow: 10px 20px 40px 0 rgb(36 35 40 / 10%);
    padding: 5px;
    height: 78px;
    pointer-events: auto;
    overflow: hidden;
    background-color: #fff;
    line-height: 1em;
    
}
#ads-hide2 .banner {
    height: 78px;
    padding: 5px;
    display: inline;
}
#ads-hide2 .image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}
#ads-hide2 .div {
    padding-left: 15px;
}
#ads-hide2 .div p:nth-child(1) {
    font-size: 14px;
    padding-bottom: 5px;
}
#ads-hide2 .div p:nth-child(2) {
    font-size: 12px;
}
#ads-hide2 .div em {
    font-size: 10px;
}
#ads-hide2 p {
    padding-bottom: 0px;
}
/* discount */
#discount {
    position: fixed;
    bottom: 5px;
    right: 2px;
    z-index: 100;

}
#discount img {
    width: 140px;
}
.header-timer {
    justify-content: space-evenly;
    text-align: center;
    margin: 0px auto;
    background: #EE232A;
    border-top-left-radius:  0.75rem;
    border-top-right-radius:  0.75rem;
    width: 300px;
    display: flex;
    padding: 14px 0 0;
    width: 140px;
}
 .header-timer h2 {
    color: #fff;
    padding-bottom: 0;
    font-size: 20px;
}
 .header-timer p {
    color: #fff;
    padding-bottom: 0;
    font-size: 10px;
}
#discount3 {
    position: fixed;
    bottom: 40%;
    right: 5px;
    z-index: 100;
    padding: 10px;
    border-radius: 0.75rem;
    width: 190px;
    text-align: center;
    box-shadow:  0 25px 50px -12px rgba(0,0,0,0.25);

}
#discount3 .d-f {
    align-items: center;
    padding-bottom: 10px;


}

#discount3 a > p {
    padding-bottom: 0;
    font-size: 14px;
    color: #000;
}
#discount3.white a > p {
    color: #fff;
}
#discount3 .d-f p {
    padding-bottom: 0;
    padding-right: 3px;
    font-size: 16px;
    color: #d71920;
    font-family: 'Permanent Marker', cursive;
    
}

/* footer */
.footer {
    background-color: rgb(243, 237, 237);
    border-top: 1px solid #ccc;
    padding-top: 20px;
}
.footer p {
    font-size: 14px;
    padding-bottom: 10px;
}
