* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(0, 0, 0);
    /* background: rgb(193, 201, 211); */
    background: rgb(255, 255, 255);
}

/* Float four columns side by side */
.column {
    float: left;
    width: 20%;
    padding: 0 10px;
    margin-bottom: 20px;
}
/* .column a{
    text-decoration: none;
    color: white;
    background: rgba(6, 2, 255, 0.432);
    border: 1px solid rgba(131, 123, 123, 0.582);
    border-radius: 10px;
    padding: 10px;
    width: auto;
} */
.column a{
    text-decoration: none;
    /* color: white; */
    /* background: rgba(6, 2, 255, 0.432); */
    /* border: 1px solid rgba(131, 123, 123, 0.582); */
    /* border-radius: 10px; */
    /* padding: 10px; */
    width: auto;
}

/* Remove extra left and right margins, due to padding */
.row {
    margin: 20px 50px;
    margin-left: 3%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive columns */
@media screen and (max-width: 800px) {
    .column {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
    .row{
        margin-left: -1%;
    }
}


/* Style the counter cards */
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 110, 255, 0.562);
    padding: 16px;
    text-align: center;
    background-color: #ffffff60;
}
.card{
    padding-bottom: 30px;
}
.web-service h2{
    margin-left: 10%;
}
.web-applications h2{
    margin-left: 10%;
}

/* Product Images style */
.card:hover{
    /* border: 5px solid gray; */
    box-shadow: 0px 4px 8px 0 rgba(0,0,0,0.45);

}
.img-fluid:hover{
    transform: scale(1.1);
    /* transform: rotate(360deg); */
    /* transition: transform 0.1s ease; */
}
