@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400..900&family=Jost:ital,wght@0,100..900;1,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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;

}

html {
    overflow-x: hidden;
}

.allBox{
    display: flex;
}

.men_price_bg{
    background: url(images/pricing_back.jpg);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-size: cover;
    height: 100%;
    width: 100%;
    background-position: center;
}

.men_price_box{
    background-color: rgba(255, 255, 255, 0.599);
}

.women_price_bg{
    background: url(images/woman_pricing.jpg);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-size: cover;
    height: 100%;
    width: 100%;
    background-position: center;
}

.women_price_box{
    background-color: rgba(255, 255, 255, 0.444);

}


.men_price_box,.women_price_box {
    color: rgb(0, 0, 0);
    display: grid;
    grid-template-columns: 65% 35%;
    border: 1px solid black;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    font-size: 1.4vmax;
    justify-content: center;
    padding-bottom: 2%;
}

.men_price_box>p,.women_price_box>p {
    margin-top: 13px;
    font-weight: 600;
    font-size: 1.4vmax;
    text-align: center;

}

.men_price_box>h5,.women_price_box>h5 {
    margin-top: 13px;
    font-weight: 600;
    font-size: 1.4vmax;
    margin-left: 10%;
}

.wholebox {
    width: 45%;
    float: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.design_charges {
    width: 80%;
    margin: 0 auto;
    margin-top: 20px;
    font-size: 1.5vmax;
    border: 1px solid rgb(0, 0, 0);
    padding: 3% 1%;
    background-color: rgba(245, 245, 245, 0.161);
    text-align: center;
}

.design_charges span {
    font-size: 2.2vmax;
    font-weight: 700;
    color: rgb(184, 7, 7);
}

.wholebox>p {
    font-size: 3vmax;
    font-family: cinzel;
    background-color: #000000d8;
    color: rgb(255, 255, 255);
    float: right;
    text-align: center;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

#appointment {
    text-decoration: none;
    background-color: #d1a127;
    color: black;
    padding: 1vmin 2vmin;
    border-radius: 40px;
    text-align: center;
    margin-top: 8%;
    font-size: 2vmax;
    border: 1px solid black;
    display: block;
    cursor: pointer;
}



.whatsapp-icon i {
    font-size: 3vmax;
    position: fixed;
    bottom: 6%;
    left: 2%;
    background-color: rgb(42, 164, 42);
    color: white;
    padding: 0.7%;
    border-radius: 50%;
    z-index: 9997;
}

.upperbtn {
    display: none;
}

/* FOR MOBILE DEVICES */

@media (max-width:450px) {

    .allBox{
        flex-direction: column;
    }



    .wholebox {
        width: 95%;
        margin-top: 20px;
        margin-right: auto;
        margin-left: auto;
    }

    .price_sec {
        flex-direction: column-reverse;
        align-items: center;
    }

    .design_charges {
        width: 80%;
        margin: 20px auto;
    }

    .men_price_box>p,.women_price_box>p {
        font-size: 2vmax;

    }

    .men_price_box>h5,.women_price_box>h5 {
        font-size: 2vmax;
    }

    .upperbtn {
        display: block;
    }

    .whatsapp-icon i {
        font-size: 5vmax;
        bottom: 10%;
    }

}