@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat',  sans-serif;
}
img {
    max-width: 100%;
}
.container {
    max-width: 990px;
    padding: 40px 15px 0px;
    margin: 0 auto;
}
ul li {
    list-style: none;
}

/* Text and background */
h3 {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.16;
    text-align: center;
    padding-bottom: 50px;
    color: #322f32;
}
h3 strong {
    background: linear-gradient(to top,transparent 0,transparent 0,#f8eedf 0,#f8eedf 40%,transparent 40%,transparent 100%);
}
h4 {
    font-size: 26px;
    padding-bottom: 30px;

}
p {
    font-size: 25px;
    color: #131313;
    padding-bottom: 30px;
    line-height: 1.4;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-white {
    color: #fff;
}
.text-red {
    color: #9f193d;
}
strong {
    color: #9f193d;
}
.bg-red {
    background-color: #9f193d;
}
.bg-white {
    background-color: #fff;
}
.bg-gray {
    background-color: #f8f7f6;
}
.bg-linear {
    background: linear-gradient(to top,transparent 0,transparent 0,#f8eedf 0,#f8eedf 40%,transparent 40%,transparent 100%);
}
.bg-none {
    background-image: none ;
}


/* Shadow, before and after */
.box-wide {
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
}
.arrow-b {
    position: relative;
}
.arrow-b::before {
    content: "";
    background: url(../images/arrow-down-circle.jpg) no-repeat center/cover;;
    position: absolute;
    position: absolute;
    width: 64px;
    height: 64px;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    border-radius: 50%;
}
.exclamation {
    position: relative;
}
.exclamation::before {
    position: absolute;
    content: "";
    top: -32.5px;
    width: 65px;
    height: 65px;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/exclamation.png) no-repeat center/cover;
}
.long-arrow {
    position: relative;
}
.long-arrow::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 78px;
    background: url(../images/long-arrow-down.png) no-repeat center/cover;
    bottom: -20px;
    right: 25px;
}
.check {
    position: relative;
    padding-left: 35px;
    padding-top: 20px;
    font-size: 20px;
    line-height: 1.4;
}
.check::before {
    content: "";
    position: absolute;
    background-image: url(https://fvblueprint.com/assets/images/female-vitality/check-red.svg);
    background-repeat: no-repeat;
    top: 22px;
    width: 22px;
    height: 17px;
    left: 0;
    display: block;
}
.bage {
    position: relative;
}
.bage::before {
    position: absolute;
    content: "";
    top: -30px;
    right: -30px;
    width: 110px;
    height: 110px;
    background: url(../images/badge21.png) no-repeat center/cover; 
}
.bage2::before {
    position: absolute;
    content: "";
    top: -30px;
    right: -30px;
    width: 110px;
    height: 110px;
    background: url(../images/badge11.png) no-repeat center/cover; 
}

/* Width  and Flex */
.d-f {
    display: flex;
    padding-bottom: 10px;
}
.jb {
    justify-content: space-between;
}
.w-1 {
    width: 10%;
}
.w-2 {
    width: 20%;
}
.w-3 {
    width: 30%;
}
.w-4 {
    width: 40%;
}
.w-45 {
    width: 49%;
}
.w-5 {
    width: 50%;
}
.w-6 {
    width: 60%;
}
.w-7 {
    width: 70%;
}
.w-8 {
    width: 80%;
}
.w-9 {
    width: 90%;
}

/* pading and margin */
.p-2 {
    padding: 20px;
}
.p-4 {
    padding: 40px;
}
.pt-1 {
    padding-top: 10px;
}
.pt-3 {
    padding-top: 30px;
}
.pt-7 {
    padding-top: 70px;
}
.pt-4 {
    padding-top: 40px;
}
.pb-1 {
    padding-bottom: 10px;
}
.pb-3 {
    padding-bottom: 30px;
}
.pb-6 {
    padding-bottom: 60px;
}
.pr-3 {
    padding-right: 30px;
}
.pr-5 {
    padding-right: 50px;
}
.pl-3 {
    padding-left: 30px;
}
.pl-5 {
    padding-left: 50px;
}
.pb-0 {
    padding-bottom: 0;
}
.mt-2 {
    padding-top: 20px;
}
.mt-3 {
    margin-top: 30px;
}
.mt-6 {
    margin-top: 60px;
}
.mb-3 {
    margin-bottom: 30px;
}
.mb-6 {
    margin-bottom: 60px;
}
.my-3 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.mx-5 {
    margin-left: 50px;
    margin-right: 50px;
}

/* 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 {
    background: url(../images/bg1.jpg) no-repeat center right/cover;
    background-position: 70%;
    padding: 40px 0 60px;
    position: relative;
}
.sec1 .bg1-mobi {
    display: none;
}
.sec1::after {
    content: "";
    background: url(../images/arrow-down-circle.jpg) no-repeat center/cover;
    position: absolute;
    width: 64px;
    height: 64px;
    top: calc(100% - 37px);
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 30px 0 rgb(0 0 0 / 10%);
    border-radius: 50%;
}
.sec1 h2 {
    font-size: 57px;
    margin-bottom: 10px;
    line-height: 1.15;
    font-weight: 400;
}
.sec1 h3 {
    font-size: 57px;
    margin-bottom: 10px;
}
.sec1 h3 i {
    font-weight: 700;
    color: #fff;
}

.sec6 h3 {
    position: relative;
}
.sec8 {
    background: url(../images/bg2.jpg)  no-repeat center right/cover;
    background-position: 80%;
}

.sec12 {
    position: relative;
}
.sec13 {
    background: url(../images/bg3.jpg) no-repeat center right/cover;
    background-position: 80%;
}
.sec23 {
    background: url(../images/bg4.jpg) no-repeat center right/cover;
    background-position: 70%;
}
.sec25 {
    background: url(../images/bg5.jpg) no-repeat center right/cover;
    background-position: 70%;
}
.sec31 p {
    font-size: 21px;
}
.sec32 {
    background: url(../images/bg6.jpg) no-repeat center right/cover;
    background-position: 70%;
}
.sec40 {
    background: url(../images/bg7_new.jpg) no-repeat center right/cover;
    background-position: 70%;
}
.sec44 {
    background: url(../images/bg8.jpg) no-repeat center right/cover;
    background-position: 70%;
}
.footer p {
    font-size: 12px;
}
/* Buy */
.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;
}
/* accordion */
.accordion {
    float: left;
    width: 100%;
    margin-top: 10px;
    border: 1px solid #c7dce3;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.accordion .contentBx .question {
    float: left;
    width: 100%;
    text-align: left;
    background: url(../images/close-btn.png) #9f193d no-repeat 98% center;
    padding: 20px;
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    border-radius: 0px;
}
.accordion .contentBx.active .question {
    background: url(../images/open-btn.png) #9f193d no-repeat 98% center;
}
.accordion .contentBx .anwser {
    float: left;
    width: 100%;
    background: #fff;
    height: 0;
}
.accordion .contentBx.active .anwser {  
    padding: 0px 0 20px 0;
    height: 100%;
    height: auto;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
}