@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-color: #9a6c66;
    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: #9a6c66;
}
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-left {
    text-align: left;
}
.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;
}
.pr-1 {
    padding-right: 10px;
}
.pl-2 {
    padding-left: 20px;
}
.pr-2 {
    padding-right: 20px;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Section */
/* sec1 */
#pelvic {
    background-image: url('../images/bg2.jpg') ;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    color: #9a6c66;
}

#pelvic .text-center p {
    font-size: 19px;
}
#pelvic .container li {
    position: relative;
    padding-left: 40px;
}
#pelvic .container li::before {
    content: "";
    background-image: url(../images/check2.png);
    background-size: cover;
    position: absolute;
    width: 30px;
    height: 30px;
    left: 0;
    top: 0;
}
#pelvic .video {
    border: 2px solid #9a6c66;
    border-radius: 0.25rem;
}
#pelvic .w-6 p {
    color: #fff;
    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;
}
.drawer-menu h2 a {
    text-decoration: none;
    color: #F9741A;
}
.drawer-menu li {
  text-align: left;
  padding-left: 20px;
  padding-bottom: 0;
}

.drawer-menu li a {
  display: block;
  font-size: 16px;
  color: rgba(153,153,153);
  -webkit-transition: all .8s;
  transition: all .8s;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.2;
  padding-top: 20px;
}

.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: #f9741a;
  -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 */
/* sec2 */
#what-is ul li {
    position: relative;
    padding-left: 25px;
    font-size: 19px;
}
#what-is ul li::before {
    content: "";
    background-image: url(../images/check1.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 3px;
}
/*  sec3 */
#how-does .container > h3 {
    padding-bottom: 10px;
    font-size: 24px;
    
}
#how-does .card {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    border-radius: 0.5rem;
    position: relative;
    margin-top: 50px;
}
#how-does .card1::after {
    position: absolute;
    content: "";
    width: 133px;
    height: 133px;
    right: -50px;
    top: -40px;
    background: url(../images/badge1.png) no-repeat center/cover;
}
#how-does .card2::after {
    position: absolute;
    content: "";
    width: 133px;
    height: 133px;
    right: -50px;
    top: -40px;
    background: url(../images/badge2.png) no-repeat center/cover;
}
#how-does .card3::after {
    position: absolute;
    content: "";
    width: 133px;
    height: 133px;
    right: -50px;
    top: -40px;
    background: url(../images/badge3.png) no-repeat center/cover;
}
#how-does .card .h-card {
    background-color: #9a6c66;
    color: #fff;
    padding: 10px;
}
#how-does .card .h-card h3 {
    font-size: 32px;
}
#how-does .card .d-f {
    padding: 10px;
    align-items: center;
}
/* sec4 */
#ingredient ul li {
    position: relative;
    padding-left: 25px;
}
#ingredient ul li::before {
    content: "";
    background-image: url(../images/check4.png);
    background-size: cover;
    height: 20px;
    width: 20px;
    position: absolute;
    left: 0;
    top: 3px;
}

/* sec5 */
#benefits li {
    position: relative;
    padding-left: 25px;
}
#benefits li::before {
    content: "";
    background-image: url(../images/check3.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  */
.offer .text {
    background-color: #9a6c66;
    color: #fff;
}
.offer .text h3 {
    font-family: 'Permanent Marker', cursive;
    font-size: 3rem;
}
.offer .w-5 {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    border-radius: 6px;
    padding-bottom: 20px;
}
.offer .w-5 .h-offer {
    position: relative;
    padding: 25px 90px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    
}
.offer .w-5 .h-offer1 {
    background-color: #9c9c9c;
}
.offer .w-5 .h-offer2 {
    background-color: #9a6c66;
    position: relative;
    overflow: hidden;
}
.offer .w-5 .h-offer2::before {
    content: "BEST VALUE";
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    position: absolute;
    top: 25px;
    right: -35px;
    height: 30px;
    width: 150px;
    background-color: #d5200b;
    transform: rotate(45deg);
}
.offer .w-5 .h-offer h3 {
    color: #fff;
    font-size: 36px;
}
.offer .w-5 .img-mh {
    max-height: 229px;
}
.offer .w-5 .c-offer p {
    padding-top: 20px;
    height: 100px;
    color: #322f32;
    font-size: 24px;
}
.offer .w-5 .c-offer h4 del {
    color: #322f32;
    font-size: 40px;
    font-weight: 400;
}
.offer .w-5 .c-offer h4 span {
    color: #d5200b;
    font-weight: 700;
    font-size: 60px;
}
.offer .w-5 .c-offer h4 span:last-child {
    font-size: 20px;
    font-weight: 600;
}
.offer a {
    border: none;
    background: linear-gradient( 270deg ,#fec139 0,#ffd64b 100%);
    display: inline-block;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    border-radius: 33px;
    padding: 15px;
    font-family: Montserrat,'DejaVu Sans',Verdana,sans-serif;
    min-width: 320px;
    color: #fff;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
    margin-bottom: 15px;
}
.offer a:hover {
    background: linear-gradient( 270deg ,#ffd64b 0,#fec139 100%);
}
.offer .credit-card {
    max-width: 460px;
    margin: 0 auto;
    border-top: 2px solid #D71920;
    border-bottom: 2px solid #D71920;
    margin-top: 10px;
}
.offer .credit-card .d-f {
    align-items: center;
}
.offer .credit-card p {
    padding-bottom: 0;
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
}

/* sec8 */
#money-back {
    padding-bottom: 20px;
}
#money-back .container {
    padding: 5px;
}
#money-back .container .border {
    border: 20px solid #cea397;
    border-radius: 6px;
    margin: 50px auto 0;
    padding: 25px 40px;
}
#money-back .w-3 {
    position: relative;
}
#money-back .w-3::after {
    position: absolute;
    content: "";
    background: url(../images/bagde-guarantee.png) no-repeat center/cover;
    width: 125px;
    height: 125px;
    right: -35px;
    top: -30px;
}
#money-back h2 {
    color: #9a6c66;
    padding-bottom: 20px;
}
#money-back h2 span {
    color: #322f32;
    font-weight: 500;
}
/* 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: #F9741A;
}
#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 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;
}
