@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&amp;display=swap");
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

* li a {
    text-decoration: none;
    list-style: none;
}

/*Don't use "display: grid; place-content: center;" for centering the content,
for some reason behaves weirdly and the text takes time to appear */

.marquee {
    white-space: nowrap;
    /* Prevent text from wrapping */
    overflow: hidden;
    /* Hide overflowing content */
    position: relative;
    animation: marquee 50s linear infinite;
    height: 50px;
    display: flex;
    justify-content: center;
    align-content: center;
    overflow-x: hidden;
}

/* Text Marquee Effect */

.marquee {
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto;
    padding: 40px 0px;
    transform: rotate(deg) scale(1.1);
    background: linear-gradient( 90deg, rgba(110, 124, 175, 1) 0%, rgba(52, 123, 163, 1) 35%, rgba(133, 93, 168, 1) 100%);
    /*border-block: 3px solid black;*/
}

.marquee .marquee_text {
    display: inline-block;
    padding-left: 100%;
    font-size: 3.5rem;
    text-transform: uppercase;
    position: absolute;
    top: 10px;
    color: white;
    animation: marquee-right-left 200s linear infinite;
    /* animation: marquee-left-right 36s linear infinite; */
}

@keyframes marquee-right-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* @keyframes marquee-left-right {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
} */

#btn-hover:hover {
    scale: 6px;
}

#menu-company {
    padding-left: 0;
}

.social-circle-style {
    padding-left: 0;
}

#menu-quick-links {
    padding-left: 0;
}