@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;
}


.contact {
    display: flex;
    justify-content: center;
    margin: 70px 0;
}


.phonebox {
    width: 23%;
    height: 200px;
    border: 1px solid lightgrey;
    text-align: center;
    font-size: 1.5vmax;
    flex-direction: column;
    display: flex;
    justify-content: space-evenly;
    margin: 0 10px;
    transition: all 0.1s ease-in;
}

.phonebox:hover {
    box-shadow: -12px 10px 20px 7px #dad8d8;
    transform: scale(1.002);
}

.phonebox i {
    font-size: 2vmax;
    color: goldenrod;
}

.phonebox h6 {
    font-size: 1.5vmax;
    font-weight: 500;
}

/* FOR MOBILE DEVICES */

@media (max-width:450px) {

    .whatsapp-icon i {
        font-size: 5vmax;
    }


    .contact {
        flex-direction: column;
        align-items: center;

    }

    .phonebox {
        height: 100px;
        margin: 5px 0;
        width: 80%;
    }


}