@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;
}

.allservices {
    margin-top: 2%;
    display: flex;
    justify-content: space-around;
}

.mainbox {
    width: 18%;
}

.imgbox img {
    width: 100%;
    border: 2px solid goldenrod;
    padding: 2%;
    border-radius: 5%;

}

.title_service h2 {
    font-weight: 450;
    text-align: center;
    font-size: 2vmax;
}

.title_service a{
    text-decoration: none;
}

.bulk_click{
    text-decoration: none;
    padding: 1% 3%;
    border-radius: 30px;
    background-color: goldenrod;
    color: black;
}

.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;
}


/* FOR MOBILE DEVICES */

@media (max-width:450px) {

    .whatsapp-icon i {
        font-size: 5vmax;
    }


    .title_service h2 {
        font-size: 2.5vmax;
    }


    .allservices {
        flex-direction: column;
        align-items: center;
        margin-top: 40px;
    }

    .mainbox {
        width: 90%;
        margin-bottom: 30px;
    }

}

@media (max-width:768px)and (min-width:451px) {
    .mainbox {
        width: 30%;
    }
}