.main-footer {
   background: linear-gradient(
        180deg,
        #EAE9EE 0%,
        #DDDDDB 100%
    );;
    color: #1e293b;
    padding: 70px 0 30px;
    font-size: 14px;
}

.main-footer h5 {
    color: #1e293b;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.main-footer p {
    line-height: 1.6;
}

.main-footer .small {
    font-size: 13px;
    color: #1e293b;
}

/* list */
.main-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-footer ul li {
    margin-bottom: 8px;
}

.main-footer ul li a {
    color: #1e293b;
    text-decoration: none;
}

.main-footer ul li a:hover {
    color: #1C1F26;
}

/* statistik */
.visitor-stats li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed rgba(255,255,255,.1);
}

.visitor-stats li:last-child {
    border-bottom: none;
}

.visitor-stats strong {
    color: #1C1F26;
    font-weight: 700;
}

/* divider */
.main-footer hr {
    border-color: rgba(255,255,255,.1);
    margin: 40px 0 20px;
}

/* disclaimer */
.footer-disclaimer p {
    font-size: 13px;
    color: #1C1F26;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* bottom */
.footer-bottom {
    text-align: center;
    font-size: 13px;
    color: #1C1F26;
}

.main-footer ul li {
    position: relative;
}

.main-footer ul li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #91A1B1;
    border-radius: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform .25s ease;
}

.main-footer ul li:hover::before {
    transform: translateY(-50%) scale(1);
}