@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins: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');

* {
    text-transform: capitalize;
    font-family: inter, serif;

}

:root {
    --mainColor: #351f5b;
    --secondary: #986ee4;
}

.bg-main {
    background-color: #69addf;
}

.navsticky{
    position: sticky;
    top: 0px;
    background-color: whitesmoke;
    z-index: 999;
}

nav{
    background-color: whitesmoke;
}

.nav-link {
    font-weight: 550;
    color: var(--mainColor);
    display: inline;
    position: relative;
}

.nav-link::before {
    content: "";
    height: 0.2rem;
    width: 0%;
    background-color: var(--secondary);
    position: absolute;
    bottom: -2px;
    left: 0;
    transition: all 0.3s linear;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary);
}

.homeImage {
    position: relative;
}

.homeImage a {
    position: absolute;
    left: 37%;
    top: 36%;
    font-size: 2vmax;
    text-transform: uppercase;
    background-color: #351f5b;
}

.mainBanner {
    width: 100%;
}

.mobileBanner {
    display: none;
    width: 100%;
}

.realbottle2{
    display: none;
}

.rounded-circle{
    box-shadow: 2px 6px 10px 3px #102b01;
}

.buy-btn {
    background-color: var(--secondary);
    color: #fff;
}

.buy-btn:hover {
    background-color: var(--secondary);
    box-shadow: var(--mainColor) 0px 20px 30px -10px;

}

.productBox ul li{
    list-style: none;
    position: relative;

    &::before{
        content: "✔";
        position: absolute;
        left: -20px;
    }
}

    .productBox img{
        width: 30%;
    }
    
    
    /* pop up on load */

.popUp {
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.707);
    z-index: 998;
}

.mainPopUp {
    margin-top: 8rem;
    width: 60%;
    display: flex;
    height: calc(100vh - 200px);
}

.popUpImage {
    width: 50%;
    overflow: hidden;
    position: relative;
}

.popUpImage img{
    height: 100%;
}

.popUpImage i{
    position: absolute;
    left: 15px;
    top: 10px;
    font-size: 26px;
    cursor: pointer;
}

.popUpForm {
    background-color: #b58eca;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    
}

.form-control {
    width: auto !important;

}

/* popup ended */



.increment {
background-image: url(../images/bg.png);
background-size: contain;
background-attachment: fixed;
width: 100%;
min-height: 16rem;
display: grid;
grid-template-columns: repeat(4,1fr);
align-items: center;
justify-content: space-around;
font-weight: 600;
text-align: center;

    & span{
        font-size: 3.7rem;
        color: var(--mainColor);
    }

    & p{
        font-size: 2rem;
    }

}

.ingredientsHeading span,
.testimonialsHeading span,
.faqsHeading span,
.getInTouch span {
    color: var(--mainColor);
    position: relative;

    &::before {
        content: "";
        background: linear-gradient(to right, #a987e7, #4c3377);
        height: 0.3rem;
        width: 20%;
        bottom: -4px;
        left: 0;
        position: absolute;
        border-radius: 12px;
    }

    ;
}

.carousel-item img{
    width: 45%;
}

.accordion-button:focus {
    z-index: 3;
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--secondary);
}

.faqs{
    background-color: rgb(230, 229, 229);
}

.getInForm{
    width: 40%;
}
.form-control:focus {
    box-shadow: 0px 0px 20px 0rem var(--secondary) !important;
}

.middleFooter a , .rightFooter a{
    text-decoration: none;
    color: black;
}

.middleFooter a:hover{
    color: var(--mainColor);
}

.rightFooter a{
    font-size: 22px;
}

.rightFooter a i:hover{
    color: var(--mainColor);
}