html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/*to give space*/
.spacer {
    height: 4rem;
}

.client-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.client-slider-inner {
    display: flex;
    align-items: center;
    animation: slideClients 25s linear infinite;
}

.client-item {
    flex: 0 0 auto;
    padding: 0 0.9rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-item img {
    display: block;
    max-height: 100%;
    max-width: 7rem;
    object-fit: contain;
    margin: 0;
}

@keyframes slideClients {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.client-slider:hover .client-slider-inner {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .client-slider-inner {
        animation-duration: 15s;
    }

    .client-item {
        padding: 0 0.5rem;
        height: 2.2rem;
    }

    .client-item img {
        max-width: 5rem;
    }
}
