.page {
    padding: 12px 0px;
}

.banner {
    background-image: url('../images/pages/about_us.png');
    align-items: flex-start;
    background-size: cover;
    background-position: 3% 0;
    flex-wrap: wrap;
    justify-content: unset;
    background-color: var(--color-gray);
}

.banner__title {
    width: 100%;
    text-align: center;
    padding: 45px 0px 0px 0;
}

.counters {
    width: 70%;
    margin: 0 5% 0 auto;
    font-size: 24px;
    display: flex;
    justify-content: space-between;
    font-family: "Ubuntu", sans-serif;

}

.counter {}

.counter__title {
    font-weight: 500;
    z-index: 1;

}

.counter__value {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.counter__value:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 63px;
    height: 63px;
    border-radius: 50%;
    background-color: var(--main-color);
    z-index: -1;
}

.counter__value:after {
    content: '';
    position: absolute;
    left: -11%;
    top: -100%;
    opacity: .3;
    width: 93px;
    height: 93px;
    border-radius: 50%;
    background-color: var(--main-color);
    z-index: -1;
}

.counter__value_bg-top-right:after {
    left: -10%;
    top: 50%;
    transform: translate(0, -50%);
}

.counter__value_bg-bottom-left:after {
    right: -16%;
    left: unset;
    top: -78%;
}

@media(max-width: 1440px) {
    .counters {
        font-size: 18px;
    }

    .counter__value:before {
        width: 53px;
        height: 53px;
    }

    .counter__value:after {
        width: 73px;
        height: 73px;
    }
}

@media(max-width: 1200px) {
    .counter__value:after {
        display: none;
    }

    .counters {
        font-size: 16px;
    }

    .banner__title {
        padding: 30px 0px 0px 0;
    }
}

@media(max-width: 990px) {
    .counters {
        font-size: 14px;
    }

    .counter__value:before {
        width: 43px;
        height: 43px;
    }

    .counters {
        margin: 0 0 0 auto;
        flex-direction: column;
        align-items: center;
        width: 80%;
    }

    .counter {
        margin: 20px 10px;
    }

    .counter__title {
        margin-right: 10px;
    }
}

@media(max-width: 580px) {
    .banner {
        background-image: unset;
    }

    .counters {
        width: 100%;
        margin: 0 auto;
        padding-bottom: 30px;
    }




}
