@font-face {
    font-family: "Noto Light";
    src: url("../assets/fonts/Noto_Serif_Display/static/NotoSerifDisplay-Light.ttf");
}
@font-face {
    font-family: "Lato Bold";
    src: url("../assets/fonts/Lato/Lato-Bold.ttf");
}

.counter-banner-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    width: 100%;
    height: 60vh;
    max-height: 420px;
    font-family: "Noto Light";
    color: var(--light-color);
    background-image: url("../assets/photos/night-city.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.counter-banner-wrapper::before {
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.counter-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.counter-number,
.counter-plus {
    font-family: "Lato Bold";
    font-size: 7rem;
    text-align: center;
}
.counter-text {
    font-size: 3rem;
}

@media screen and (max-width: 1024px) {
    .counter-number, .counter-plus { font-size: 5rem; }
    .counter-text { font-size: 1.5rem; }
}

@media screen and (max-width: 768px) {
    .counter-number, .counter-plus { font-size: 4rem; }
    .counter-text { font-size: 1rem; }
}

@media screen and (max-width: 426px) {
    .counter-banner-wrapper { flex-direction: column; }
}