.counter {
    /* background-color: #f5f5f5; */
    padding: 35px;
    border-radius: 5px;
}

.counter .icon {
    color: #fff;
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    /*margin-top: 10px;*/
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 20px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #4ad1e5;
}

.text-center {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.count-number {
    color: #fff;
}

.front-page-section {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    /* height: 45vh; */
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}