.counter-sec {
    padding: 40px 0px 36px;
    background-color: #f3f3f3;
}

.counter-sec .counter-media {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    max-width: 940px;
    margin: 0 auto;
}

h2 {
    color: #e03103;
    font-size: 40px;
    font-weight: 700;
}

h3 {
    color: #e03103;
    font-family: "Helvetica";
    font-size: 20px;
    font-weight: bold;
}

.counter-sec .counter-box {
    text-align: center;
    padding: 25px;
    cursor: pointer;
    background-color: #f3f3f3;
    border-radius: 10px;
    width: 33.33%;
    transition: all 0.8s ease-in-out;
}

.counter-sec .counter-box.inactive {
    opacity: 0.25;
}

.counter-sec .counter-box.active {
    box-shadow: 0px 4px 4px 0px rgba(34, 34, 34, 0.15);
    transition: all 0.8s ease-in-out;
    transform: translate(0, -5px);
    opacity: 1;
}

.counter-box h2 {
    line-height: 1;
    margin-bottom: 12px;
}

.counter-box h3 {
    line-height: 1;
}

.counter-sec .text-box p {
    margin-top: 10px;
    min-height: 40px;
}

.text-box p {
    color: #333434;
    font-family: "Helvetica";
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}