:root {
    --argo-blue: #2a3f54;
    --argo-blue-2: #2A3F54;
    --argo-green: #1abb9c;
}

#logo {
    max-width: 100px;
}

#logo_footer {
    max-width: 200px;
}

.logo_producto {
    max-width: 250px;
}

.btn-hover {
    transition: .2s;
}

.btn-hover:hover {
    transform: scale(1.1);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: var(--argo-green);
}

.contenido a {
    color: var(--argo-green);
}

.contenido a:hover {
    color: #000;
}

.bg-header {
    background-image: url(/assets/img/bg.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}

.bg-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(42, 63, 84);
    background: linear-gradient(0deg, rgba(42, 63, 84, 0.7512254901960784) 0%, rgba(42, 63, 84, 1) 50%);
}

.footer a:hover {
    color: var(--argo-green);
}

.btn.btn-sm {
    border-radius: 20px;
}

.font-bebas {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 4px;
}

.navbar-dark .navbar-nav .nav-link {
    letter-spacing: 2px;
}

#form_contact .form-control {
    border-radius: 10px;
    padding: 15px;
}

#form_contact .form-control:focus {
    border-color: var(--argo-green);
}



.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}