#diC{
    background-color: rgba(23,60,82,0.3);
    min-height: 97vh;
}
#diP{
    background-color: rgba(23,60,82,1);
    color: #FFF;
    font-size: smaller;
    font-weight: bold;
    min-height: 3vh;
}
#diA{
    background-color: rgba(23,60,82,1);
    color: #FFF;
    font-weight: bold;
}
#diB{
    padding-top: 5vh;
}
.diD{
    padding: 2vh;
}
.logo{
    background-color: #3F6DB3;
}
.marquee-container {
    background-color: #173C52;
    overflow: hidden; /* Hides content outside the container */
	white-space: nowrap; /* Prevents text from wrapping */
	box-sizing: border-box;
}
.marquee-content {
    color: white;
    display: inline-block; /* Allows content to be treated as a single line */
	padding-left: 100%; /* Starts content off-screen to the right */
	animation: marquee 15s linear infinite; /* Adjust duration and timing as needed */
}
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(-100%, 0, 0); } /* Scrolls content to the left */
}
/* Optional: Pause on hover for better user experience */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}
::-moz-selection{background:#49B96B;background:rgba(73,185,107,.8);text-shadow:none}
::selection{background:#49B96B;background:rgba(73,184,107,.8);text-shadow:none}
.form-control:focus{
    background-color: rgba(73,185,107,1) !important;
}