.counters.banner-with-counters__counters {
    margin: -65px auto 45px;
}

.counters {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.counters__wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px;
    border-radius: 4px;
    background-color: #ffffff;
    filter: drop-shadow(0px 2.25014px 7.50046px rgba(57, 106, 191, 0.161));
}

.counter-item {
    position: relative;
    width: 50%;
}

.counter-item:nth-child(1),
.counter-item:nth-child(2) {
    border-bottom: 1px solid rgba(56, 54, 54, 0.1);
}

.counter-item:nth-child(1),
.counter-item:nth-child(3) {
    padding: 20px 20px 20px 0;
    border-right: 1px solid rgba(56, 54, 54, 0.1);
}

.counter-item:nth-child(2),
.counter-item:nth-child(4) {
    padding: 20px 0 20px 20px;
}

.counter-item__inner {
    width: 100%;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.counter-item__title {
    margin-bottom: 10px;
    font: 400 48px/1 'Pluto Sans DPD', sans-serif;
}

.counter-item__description {
    font: 400 14px/1.2 'Pluto Sans DPD', sans-serif;
}


@media screen and (min-width: 768px) {
    .counters {
        margin-bottom: 55px;
    }

    .counters__wrapper {
        padding: 4px 0;
    }

    .counter-item {
        width: 25%;
        padding: 30px 0 !important;
        border: none !important;
    }

    .counter-item:not(:last-child) .counter-item__inner {
        border-right: 1px solid rgba(56, 54, 54, 0.1);
    }

    .counter-item__inner {
        align-items: center;
    }

    .counter-item__title {
        margin-bottom: 20px;
    }
}