﻿.mainNav {
    background-color: #003254 !important;
    color: #fff !important;
}

.logo {
    width: 155px;
    height: 40px;
    display: flex;
    align-items: center;
}

.f-s-10 {
    font-size: 10px
}
.f-s-12 {
    font-size: 12px
}

.m-t-30 {
    margin-top: 30px;
}

.boxes {
    padding: 20px 45px;
    box-shadow: 3px 12px 8px 1px rgba(2, 2, 2, 0.4);
}
 
/*.boxes:hover {
    padding: 20px 45px;
    box-shadow: 7px 7px 10px 1px rgba(0, 0, 0, .4);
}*/

.boxes2 {
    padding: 10px 0px;
    box-shadow: 2px 1px 5px 1px rgba(0, 0, 0, .4);
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 20px; 
}

.runningboxes {
    padding: 0px 0px;
    box-shadow: 2px 1px 5px 1px rgba(0, 0, 0, .4);
    justify-content: center;
    align-items: center;
    display: flex;
    font-size: 15px;
    margin-top: 5px;
}

.f-b {
    font-weight: bold;
}
.m-r-30{
    margin-right:30px;
}
.color1 {
    color: #ffcb05;
}
.color2 {
    color: #f26522;
}
.color3 {
    color: #ea3924;
}
.color4 {
    color: #ffcb05;
}
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
}
.marquee-text {
    display: inline-block;
    padding-left: 100%; /* Start off-screen */
    animation: marquee-animation 10s linear infinite; /* 10s duration for speed */
}

@keyframes marquee-animation {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0); /* End off-screen to the left */
    }
}