.counter .col {
    width: calc(100% / 4);
    margin: 0;
}
.counter .counter-item {
    position: relative;
    text-align: center;

}
.counter .counter-item .count {
    font-family: "Cormorant Garamond",sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 110px;
    letter-spacing: -.01em;
    line-height: 1;
    color: #262221;
    position: relative;
}
.counter .counter-title {
    margin: 14px 0 0 0;
    font-family: "Josefin Sans",sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .2em;
    line-height: 2.636em;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #c0bcb7;
}

@media (max-width: 992px) {
    .counter .row {
        display: flex;
    }
    .counter .counter-item .count {
        font-size: 60px;
    }
    .counter .counter-title {
        font-size: 8px;
    }
    }
