.ninja-team .footer-connect-us-title {
    font-size: 28px;
    font-weight: 700;
    line-height: .96;
    color: #223771;
    margin-top: 22px;
}

.section-footer-content h4 {
    font-size: 16px;
    margin-top: 6px;
}

.footer-logo {
    width: 30px;
}

.ninja-team .footer .section-copy-right {
    padding: 20px 0 25px;
}

.ninja-team .footer.mainblue .section-footer-content {
    margin-top: -7px;
}

.menu-logos {
    display: flex;
}

.ninja-team .header-area .slogan {
    height: 100%;
    margin-left: 15px;
    text-align: center;
    width: fit-content;
    padding-top: 15px;
    max-width: 100%;
    display: block;
    min-width: 650px;
}

.slogan h2 {
    font-size: 40px;
    color: #00a8eb;
    text-shadow: 2px 2px white,
				 -2px -2px white,
				 2px -2px white,
				 -2px 2px white;
}

.slogan h3 {
    font-size: 33px;
    font-style: italic;
    color: #00a8eb;
    font-weight: normal;
    text-shadow: 2px 2px white,
				 -2px -2px white,
				 2px -2px white,
				 -2px 2px white;
}

.ninja-team .header-area .logo {
    margin-bottom: 20px;
}

.ninja-team .footer.mainblue .section-footer-content h5 {
    display: block;

}

.ninja-team .footer.mainblue .section-footer-content h5 span {
    color: #fff;
}

@media (max-width: 767px) {
    .ninja-team .header-area .main-menu .navbar-toggler {
        top: -63px;
        right: -22px;
    }

    .ninja-team .header-area .main-menu .btn-menu-search {
        top: -61px;
        right: 16px;
    }

    .ninja-team .header-area .slogan {
        margin-left: 5px;
        font-size: 12px;
        text-align: left;
        padding-top: 0;
    }

    .ninja-team .header-area .logo {
        margin-bottom: -8px;
    }

}
.navigation .container{position: relative;}
.marquee {
    height: 25px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    position: absolute;
    top: -29px;
}

/* nested div inside the container */
.marquee div {
    display: block;
    width: 200%;
    position: absolute; 
    overflow: hidden;
    animation: marquee 12s linear infinite;
}
/* span with text */
.marquee span {
    float: left;
    width: 50%;
    color: #f90000;
    font-weight: bold;
     text-shadow: 1px 1px white,
				 -1px -1px white,
				 1px -1px white,
				 -1px 1px white;
}

@keyframes marquee {
    0% { left: 0; }
    100% { left: -100%; }
}