

    /* CSS HEX
    --cultured: #f3f3f3;
    --old-lace: #f5f1e3;
    --light-sky-blue: #83d3ff;
    --blue-green: #4291b4;
    --lapis-lazuli: #366489;
    --ruby: #d81159;
    --spanish-orange: #ec6a00;

     CSS HSL
    --cultured: hsla(0, 0%, 95%, 1);
    --old-lace: hsla(47, 47%, 93%, 1);
    --light-sky-blue: hsla(201, 100%, 76%, 1);
    --blue-green: hsla(198, 46%, 48%, 1);
    --lapis-lazuli: hsla(207, 43%, 37%, 1);
    --ruby: hsla(338, 85%, 46%, 1);
    --spanish-orange: hsla(27, 100%, 46%, 1);

    SCSS RGB
    $cultured: rgba(243, 243, 243, 1);
    $old-lace: rgba(245, 241, 227, 1);
    $light-sky-blue: rgba(131, 211, 255, 1);
    $blue-green: rgba(66, 145, 180, 1);
    $lapis-lazuli: rgba(54, 100, 137, 1);
    $ruby: rgba(216, 17, 89, 1);
    $spanish-orange: rgba(236, 106, 0, 1);

    */
    .contatori {
        z-index: 2;
        background-color: rgba(243, 243, 243, 1);
    }



    .sectionClass {
      position: relative;
      display: block;
    }
    .fullWidth {
      width: 100% !important;
      display: table;
      float: none;
      padding: 0;
      min-height: 1px;
      height: 100%;
      position: relative;
    }
    .projectFactsWrap{
        display: flex;
      flex-direction: row;
      flex-wrap: wrap;
    }
    #projectFacts .fullWidth{
      padding: 0;
    }
    .projectFactsWrap .item{
      width: 25%;
      height: 100%;
      margin: 3rem 0;
      text-align: center;
      background-color: transparent;
      border: 2px solid #4291b4;
      border-bottom: none;
      border-top: none;
    }
    .projectFactsWrap .item-divider {
       display: none;
    }

    .projectFactsWrap .item:nth-child(1) {
        border-left: none;
    }
    .projectFactsWrap .item:nth-child(4) {
        border-right: none;
    }
    .projectFactsWrap .item p.number{
      font-size: 40px;
      padding: 0;
      font-weight: bold;
    }
    .projectFactsWrap .item img{
        height:70px;
    }
    .projectFactsWrap .item p{
      color: rgba(54, 100, 137, 1);
      font-size: 16px;
      margin: 0;
      padding: 10px;
    }
