body {

    font-family: "Archivo", sans-serif !important;
    font-optical-sizing: auto !important;
} .navbar {
    background-color: #2d2482 !important;
} footer {
    background-color: #2d2482 !important;
    color: #dedede;
} .footer {
    background-color:#2d2482 !important;
    width: 100%;
} .socials {
    color: #dedede !important;
    font-size: 1.50rem;
    transition: transform .2s;
} .socials:hover{
    font-size: 1.75rem;
    color: #bebfc1 !important;

} .footer-secondary {
    color: #bebfc1 !important;
} .navbar {
    font-size: 1.2rem;
} .navbar-link {
    color: #9c9ea1 !important;
} .navbar-link.active {
    color: #dedede !important;
} .hero-section{
    margin-top:60px;
    background-color: #2d2482 !important;
    color: #dedede;
} .waves {
    position:relative;
    width: 100%;
    height:15vh;

    min-height:100px;
    max-height:150px;
} .cta-btn {
    transition: transform .2s;
} .cta-btn:hover {
    transform: scale(1.3) !important;
} .img-carousel {
    filter: drop-shadow(2px 2px 10px rgb(57, 28, 90));
} .constant-tilt-shake {
    animation: tilt-shaking 2s infinite;

} /* Counter */
@property --num {
    syntax: '<integer>';
    initial-value: 1000;
    inherits: false;
} @keyframes counter {
    from {
        --num: 0;
    } to {
        --num: 1000;
    }
} .counter {
    animation: counter 3s alternate ease-in-out;
    counter-reset: num var(--num);
} .counter::after {
    content: counter(num);
}


/* Animation */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
} [data-inviewport="fade-in"] {
    transition: 1s;
    opacity: 0;
    transform: translateY(-30px) scale(0.9);
} [data-inviewport="fade-in"].is-inViewport {
    transform: none;
    opacity: 1;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% {
        transform: translate3d(85px,0,0);
    }
}
@keyframes fade-down {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    } 100% {
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
}
@keyframes tilt-shaking {
    0% { transform: scale(1);}
    25% { transform: scale(1.2);}
    50% { transform: scale(1); }
    75% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }