/*-------------------------------------------------------------------------*/
/* Copyright (c) DELTA X MULTIMEDIA                                        */
/* Tutti i diritti sono riservati - All rights reserved                    */
/* https://www.deltaxmultimedia.it - info@deltaxmultimeida.it              */
/* CSS Document                                                            */
/*-------------------------------------------------------------------------*/
/* Counters  - v.1.0 June  2021                                            */
/*-------------------------------------------------------------------------*/

/* Float four columns side by side */
/** {
  box-sizing: border-box;
}*/

.counter_column {
  float: left;
  width: 25%; /* change this for more counter columns */

  padding: 0 10px;  

  box-sizing: border-box;
}

.counter_row {margin: 0 -10px;}

/* Clear floats after the column0s */
.counter_row:after {
  content: "";
  display: table;
  clear: both;
  /*padding-right: 0px;
  margin-bottom: 0px;*/
}

.counter_value {
    font-size: 2.4em;
    color:#fff;
    font-weight: 600;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  
  .counter_column {
    width: 100%;

    display: inline-block;

    margin-bottom: 20px;
    padding:0px;
    
    float: none;
  
  }

}

/* Style the counter cards */
.counter_card {
	padding: 30px;
	text-align: center;
}

.counter_card .fa {font-size:60px;}