html,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}


@media (prefers-color-scheme: dark) {
    html {
        color-scheme: dark;
    }
}

#navbarNav {
    justify-content: right;
}

.navbar-nav {
    align-items: center;
    padding: 0;
}

.navbar-nav li {
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 700;
    font-style: italic;
}

.navbar-nav li a {
    color: #999;
}

a.nav-link {
    padding: 15px !important;
}

.navbar-nav .nav-link.active {
    color: #999;
}

.underline-animated {
    position: relative;
}

.underline-animated:hover {
    color: red;
}

.underline-animated::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 70%;
    height: 2px;
    background-color: currentColor;
    color: #2a3990;
    transition: transform 0.4s ease;
}

.underline-animated:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.active.underline-animated:after {
    transform: translateX(-50%) scaleX(1);
}

.bgFootbar {
    background-color: #020a31;
}

.bgFooter {
    background-color: #28499b;
}

.footer-action {
    background-color: #ed1c24 !important;
}

.footer-action a {
    font-size: 18px !important;
}

.contact-btn {
    background-color: #283891 !important;
    border-color: #283891 !important;
}

.quote-btn {
    background-color: rgb(255, 255, 255) !important;
}

@media (max-width: 768px) {
    /* Styles for small devices (Tablets) */
    .bgFootbar {
        text-align: center;
    }
}

.main-header {
    display: flex;
    flex-direction: column;
}

.main-header-image {
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 400px; /* Fixed height */
}