

.section-counter{
    padding: 0 !important;
}

.row-counter {
    width: 100%;
    max-width: 75%;
    min-height: 75%;
    padding-top: 0px;
    padding-bottom: 0px;
}


.prj-container {
    background-color: white; /* Full color for boxes */
    color: #333; /* Text color */
    height: 100%;
    position: relative;
    border-radius: 8px;
    padding: 10%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s; /* Smooth transform on hover */
    border-bottom: 6px solid #b80718;
}

.prj-container:hover {
    transform: translateY(-5px); /* Lift-up effect on hover */
}

.fa-solid {
    background-color: #b80718;
    color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 25px;
    font-size: 45px;
    box-sizing: border-box;
}

.dataCounter {
    font-size:calc(1.6em + 0.9vw);
    font-weight: bold; /* Make number bold */
    margin: 0; /* Space above and below the number */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15%;
    margin-top: 23%;
}

.prj-container label {
    font-size: medium; /* Title font size */
    margin: 0; /* Remove default margins */
    font-weight: 600;
    text-transform: uppercase;
    text-align: center !important;
    overflow-wrap: break-word;
    display: flex;
    flex-direction: column;

}

.column-counter {
    display: flex;
    justify-content: center;
    height: 41vh;
    width:20%;
    margin: 0;
  }

.et_pb_code_inner {
    position: relative;
    padding: 0 10% 0 10%;
    height: 100%;
}

.module-counter {
   margin-bottom: 2.75% !important;
   width:20%;
}



/* Media Queries for responsiveness */

/* Mobile portrait & landscape (up to 768px) */
@media (max-width: 768px) {
    .column-counter {
        display: inline !important;
        width: 100% !important;
        height: auto;
        margin: 1%;
    }

  .module-counter {
      width:100%;
      margin-bottom:7% !important;
}

    .prj-container {
        padding: 5%; /* Less padding on small screens */
    }

    .fa-solid {
        width: 60px;
        height: 60px;
        padding: 15px;
        font-size: 30px;
    }


}

/* Tablet portrait & landscape (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .column-counter {
        display: block !important;
        width: 100% !important;
        height: auto;

    }
          .module-counter {
        display: inline-block !important;
        width:50% !important;
        margin-bottom:2.75% !important;
}

    .fa-solid {
        width: 70px;
        height: 70px;
        padding: 20px;
        font-size: 40px;
    }


   }

/* Large screens (above 1024px) */
@media (min-width: 1025px) {
    .column-counter {
        width: 20%;
    }

    .fa-solid {
        width: 80px;
        height: 80px;
        padding: 25px;
        font-size: 45px;
    }

   }


