@import url('https://fonts.googleapis.com/css2?family=MuseoModerno:wght@300;600&display=swap');

.counter_area {
    background: #285262;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.counter_box_item {
    text-align: center;
    color: #ffffff;
    margin-bottom: 50px;
    padding: 30px 20px;
    border-radius: 12px;
    /*background: rgba(255, 255, 255, 0.05);*/
    /*box-shadow: 0 8px 20px rgba(0,0,0,0.2);*/
    transition: all 0.3s ease;
}

.counter_box_item:hover {
    transform: translateY(-8px);
    /*box-shadow: 0 12px 25px rgba(0,0,0,0.3);*/
}

.counter_box_item span.counter-number {
    font-size: 36px;
    font-weight: 300;
    font-family: 'museo_slab300';
    display: block;
}

.counter_box_item h4 {
    font-size: 30px;
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 0;
    padding-bottom: 15px;
    font-family: 'museo_slab300';
}

.counter_bottom_link {
    text-align: center;
    margin-top: 60px;
}

.counter_bottom_link h4 {
    color: #fff;
    width: 60%;
    margin: 0 auto;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 0;
    padding-bottom: 30px;
}
.counter_bottom_link .donat_link {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #81933C;
    text-decoration: none;
    transition: all 0.3s ease;
}

.counter_bottom_link .donat_link:hover {
    background-color: #65762F; 
}

@media only screen and (max-width: 767px) {

    .counter_box_item span.counter-number {
        font-size: 28px;

    }

    .counter_bottom_link h4 {
        width: 100%;
        font-size: 20px;
    }
    .counter_box_item span {
        font-size: 50px;
    }
    .counter_box_item h4 {
        font-size: 22px;
    }
}
