﻿body {
    position: relative;
    padding-bottom: 3em;
    min-height: 100vh;
    background-color: #555;
    /*background-image:url('../img/slider3.png')*/
}

.img-client {
    width: 175px;
    height: 60px;
}

.divbody {
    background-color: #DDD;
    height: 300px;
    border-radius: 15px;
    opacity: 0.7
}

input {
    height: 50px !important;
    color: black !important;
    font-weight: 900;
    text-align:center;
}

.btn:focus {
    background: #F59A35 !important;
}

.btn:hover {
    color: white;
}

.btnlogin {
    background-color: #F59A35;
    color: white;
    font-size: 18px;
}

.color-client {
    background-color: white;
    height: 60px;
}

.nav-link {
    color: white !important;
}

.marquee {
    margin-top:250px;
    width: 100%;
    height: 90px;
    overflow: hidden;
    filter: grayscale(1);
}

    .marquee li {
        font-size: 50px;
        min-width: 250px;
    }

.marquee__content {
    display: flex;
    list-style: none;
    animation: scrolling 70s linear infinite;
}

.marquee__white {
    background-color: white;
}

.marquee__morado {
    background-color: #8567FF;
}

.marquee__azul {
    background-color: rgb(47, 72, 167);
}

.marquee__negro {
    background-color: #272727;
}

.marquee__item {
    flex-shrink: 0;
}

    .marquee__item img {
        height:40px;
    }

    @keyframes scrolling {
        0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-100%)
    }
}