@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;
}

body {
    overflow-x: hidden;
}

.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;
}

.bulk {
    display: flex;
    justify-content: space-evenly;
}

.bulk_box {
    width: 23%;
    border: 1px solid black;
    border-radius: 3%;
}

.bulk_box img {
    border-top-left-radius: 3%;
    border-top-right-radius: 3%;
    width: 100%;
}

.bulk_box h6 {
    font-size: 1.5vmax;
    font-weight: 500;
    text-align: center;
}

.message {
    text-align: center;
    margin-top: 3%;
}

.message a {
    font-size: 1.5vmax;
    background-color: #d1a127;
    padding: .5%;
    color: black;
    text-decoration: none;
}

.feature {
    margin-top: 4%;
    text-align: center;
}

.feature>span {
    font-size: 2.5vmax;
    font-weight: 500;
    border-bottom: 2px solid black;
}

.big_para {
    display: flex;
    margin-top: 4%;
    justify-content: space-evenly;
}

.para {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.para p {
    font-size: 1.5vmax;
    margin-top: 2%;
}

.para i {
    font-size: 4vmax;
    color: goldenrod;
}

/* FOR MOBILE DEVICES */

@media (max-width:450px) {

    .whatsapp-icon i {
        font-size: 5vmax;
    }


    .bulk {
        flex-direction: column;
        align-items: center;
    }

    .bulk_box {
        width: 80%;
        margin-bottom: 20px;
    }

    .bulk_box h6 {
        font-size: 2.5vmax;
    }

    .message a {
    font-size: 2.5vmax;
    background-color: #d1a127;
    padding: .5%;
    color: black;
    text-decoration: none;
}

}