
 
    .site {
        padding-bottom: 0;
    }
     
 .menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px; /* Increased horizontal padding */
  gap: 40px; /* space between logo and menu if you want them tighter */
}

.logo-container {
  flex-shrink: 0; /* prevents logo from shrinking */
  margin-right: 60px; /* adds spacing between logo and nav */
}

.logo-container img {
  max-height: 50px;
  display: block;
}

.main-menu {
  display: flex;
  gap: 35px; /* spacing between menu items */
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu-item.parent {
  position: relative;
}

.menu-item.parent .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  list-style: none;
  padding: 10px 15px;
  background: #002D62;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  z-index: 999;
  min-width: 160px;
}

.menu-item.parent:hover .submenu {
  display: block;
}

.login-link {
  font-weight: bold;
  color: #b00;
}




    #main-footer {
        position: inherit;
        bottom: inherit;
        overflow: inherit;
        padding: 50px 0 0;
        text-align: inherit;
    }
    #main-footer >.container {
        height: auto;
    }
    #main-footer .col * {
        color: #FFFFFF;
    }
    #main-footer .col {
        background: url(images/vertical-line.svg) scroll no-repeat transparent;
        background-position: right 12px;
    }
    #main-footer .col:last-child {
        background-image: none !important;
    }
    #main-footer p {
        color: #FFF;
        font-family: "Open Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 26px;
        max-width: 340px;
        margin-top: 28px;
        padding-bottom: 0;
    }
    #main-footer h3 {
        color: #FFF;
        font-family: "Open Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px;
    }
    #main-footer ul {
        padding: 0;
        margin-bottom: 0;
    }
    #main-footer ul li {
        list-style-type: none;
    }
    #main-footer .col:nth-child(2), #main-footer .col:nth-child(3) {
        padding-left: 90px;
    }
    #main-footer ul li a {
        text-decoration: none;
        display: block;

        color: #FFF;

        font-family: "Open Sans";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
    }

    .bottom-footer {
        border-top: 1px solid #1a5190;
        padding: 21px 0;
        margin-top: 55px;
        background: #003D83;
    }

    .bottom-footer .copyright {
        color: #99B1CD;
        font-family: "Open Sans";
        font-size: 13px;
        font-style: normal;
        font-weight: 300;
        line-height: 23px;
    }
    .bottom-footer a {
        color: #99B1CD;
        margin-left: 20px;
        display: inline-block;
        text-decoration: none;
    }
    .social a:last-child {
        border-right: none;
    }
    .social a {
        border-right: 1px solid #1a5190;
        display: inline-block;
        padding-right: 20px;
        margin-right: 20px;
        margin-left: 0;
    }
    .social a:nth-child(2) {
        margin-right: 27px;
    }
    .social a:first-child {
        padding-right: 26px;
    }
    .bottom-footer .copyright.desktop {
        margin-left: 110px;
    }
    .bottom-footer .copyright.mobile {
        display: none;
    }
    .social img {
        width: 19px;
    }
    @media(max-width: 768px){
        footer#main-footer .container {
    width: 100% !important;
    padding-right: var(--bs-gutter-x, .75rem) !important;
    padding-left: var(--bs-gutter-x, .75rem) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}
        .bottom-footer .copyright.desktop {
            display: none;
        }
        .bottom-footer .copyright.mobile {
            display: block;
            white-space: nowrap;
        }
        #main-footer {
            padding: 22px 0 0;
        }
        #main-footer .col:first-child {
            width: 100%;
            flex: inherit;
            margin-bottom: 15px;
            border-bottom: 1px solid #1a5190;
        }
        #main-footer .col {
            background-image: none !important;
            margin: 0 15px;
        }
        #main-footer .col:nth-child(2), #main-footer .col:nth-child(3) {
            padding-left: calc(var(--bs-gutter-x) * .5);
        }
        #main-footer p {
            margin: 17px 0 17px 0;
        }
        #main-footer h3 {
            margin-bottom: 7px;
        }
        .bottom-footer {
            margin-top: 16px;
            padding-top: 32px;
            padding-bottom: 18px;
        }
        .social {
            margin-bottom: 20.5px;
        }

        .social a {
            border-right: none;
            padding: 0 !important;
            margin: 0 27px 0 0 !important;
        }
        .social a:first-child {
            margin-left: 10px !important;
        }
        .bottom-footer .copyright.mobile div {
            color: #CADCF2;
            font-family: "Open Sans";
            font-size: 13px;
            font-style: normal;
            font-weight: 300;
            margin-left: 10px;
            line-height: 24px;
        }
        .bottom-footer .copyright.mobile a {
            color: #CADCF2;
            font-family: "Open Sans";
            font-size: 13px;
            font-style: normal;
            font-weight: 300;
            line-height: 24px; /* 184.615% */
            margin-left: 10px;
            margin-top: 11px;

            display: flex;
            width: 344px;
            height: 24px;
            flex-direction: column;
            justify-content: center;
            flex-shrink: 0;
        }
    }
    

    
@media (min-width: 576px) {
    footer#main-footer .container,
    footer#main-footer .container-sm {
        max-width: 540px !important;
    }
}

@media (min-width: 768px) {
    footer#main-footer .container,
    footer#main-footer .container-md,
    footer#main-footer .container-sm {
        max-width: 720px !important;
    }
}

@media (min-width: 992px) {
    footer#main-footer .container, 
    footer#main-footer .container-lg, 
    footer#main-footer .container-md, 
    footer#main-footer .container-sm {
        max-width: 960px !important;
    }
}
    
@media (min-width: 1200px) {
    footer#main-footer .container, 
    footer#main-footer .container-lg, 
    footer#main-footer .container-md, 
    footer#main-footer .container-sm, 
    footer#main-footer .container-xl {
        max-width: 1140px !important;
    }
}

@media (min-width: 1400px) {
   footer#main-footer .container,
   footer#main-footer .container-lg, 
   footer#main-footer .container-md, 
   footer#main-footer .container-sm, 
   footer#main-footer .container-xl, 
   footer#main-footer .container-xxl {
        max-width: 1320px !important;
    }
}

    #cookie-message {
        display: flex;
        align-items: center;
    }
    #cookie-message a.btn {
        position: inherit;
        margin-right: 15px;
    }
    #cookie-message p {
        padding: 0;
    }
    div#cookie-message .lft-container {
        display: inline-block;
        max-width: 70%;
        margin-right: 40px;
    }
    div#cookie-message .rgt-container {
        display: inline-block;
        vertical-align: top;
    }
    #deny-cookies {
        position: absolute;
        right: 0;
        margin-right: 30px;
        height: 100%;
        display: flex;
        align-items: center;
    }
    div#deny-cookies a {
        font-size: 24px;
    }
    @media(max-width: 767px){
        div#cookie-message .lft-container {
            max-width: 100%;
            margin-right: 0;
        }
        div#deny-cookies {
            align-items: flex-end;
            margin-bottom: 20px;
        }
    }

   
    .alert-content a:hover {
        color: #ffffff;
    }
    div#alert-container {
        background-color: #FDBF57;
        padding: 20px;
        /*position: fixed;*/
        /*top: 0;*/
        /*left: 0;*/
        z-index: 100000;
        width: 100%;
        height: auto;
        display: none;
    }
    .alert-visible div#alert-container {
        display: block;
    }

    .alert-inner {
        margin: 0 auto;
        max-width: 1240px;
        width: 100%;
    }
    h4.alert-title {
        margin: 0 0 5px 0;
        color: #003d83
    }
    .alert-content {
        max-width: 80%;
    }
    .alert-content * {
        clear: both;
        color: #003d83;
        padding-bottom: 0;
        line-height: 20px;
        font-weight: 600;
    }
    .alert-close {
        position: relative;
        width: 20px;
        float: right;
        height: 20px;
        cursor: pointer;

        &:before, &:after {
            content: "";
            display: block;
            position: absolute;
            left: 50%;
            top: 50%;
            background-color: #003d83 !important;
            width: 100%;
            height: 2px;
            transition: height .2s ease-out;
            border-radius: 3px;
        }
        &:before {
            transform: translate(-50%, -50%) rotate(45deg);
        }
        &:after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }
    }

    @media(min-width: 1200px){

    }


    body.alert-visible {
        padding-top: 0 !important;
    }
    .alert-visible div#alert-container ~ div#header-container {
        position: relative !important;
        top: inherit !important;
        right: inherit !important;
    }
    .alert-visible div#alert-container ~ div#main-header:before {
        position: absolute !important;
    }
    .alert-visible div#alert-container ~ div#main-header ul.navbar-nav {
        position: absolute !important;
    }


    @media(max-width: 1024px){
        body.alert-visible button#btn-nav.active {
            top: -121px;
            right: -5px;
        }
        .alert-content * {
            font-size: 12px;
            line-height: 18px;
        }
        h4.alert-title {
            font-size: 14px;
        }
    }
    @media(max-width: 1024px){
        body.alert-visible button#btn-nav.active {
            top: -103px;
            right: -5px;
        }
    }
    @media(max-width: 1023px){
        body.alert-visible button#btn-nav.active {
            top: -121px;
            right: -5px;
        }
    }
    @media(max-width: 767px){
        body.alert-visible button#btn-nav.active {
            top: -180px;
            right: -5px;
        }
    }
 
        
        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

        body {
        font-family: Arial, sans-serif;
        }

        nav#main-menu {
        background-color: #002d62;
        padding: 0.5rem 1rem;
        color: #fff;
        }
    
        .main-menu {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 1.5rem;
        }

        .main-menu > li {
        position: relative;
        }

        .main-menu a {
        color: #fff;
        text-decoration: none;
        padding: 0.5rem 0;
        display: block;
        transition: color 0.3s;
        }

        .main-menu a:hover {
        color: #f9c846;
        }
    
        .submenu {
        list-style: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #003b8e;
        padding: 0.5rem 0;
        display: none;
        min-width: 220px;
        z-index: 1000;
        }

        .submenu li a {
        padding: 0.5rem 1rem;
        white-space: nowrap;
        }

        .main-menu li:hover > .submenu {
        display: block;
        }
    
        .top-nav {
        list-style: none;
        display: flex;
        gap: 1rem;
        margin-left: auto;
        }
    
        #main-menu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        }
    
        .search-bar {
        margin-left: auto;
        }

        .search-form {
        display: flex;
        align-items: center;
        }

        .search-form input[type="text"] {
        padding: 0.4rem;
        border: none;
        border-radius: 3px 0 0 3px;
        outline: none;
        }

        .search-form button {
        background: #f9c846;
        color: #000;
        border: none;
        padding: 0.4rem 0.6rem;
        border-radius: 0 3px 3px 0;
        cursor: pointer;
        }
    
        @media (max-width: 768px) {
        .main-menu, .top-nav {
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }

        .submenu {
            position: static;
        }

        .search-bar {
            width: 100%;
            margin-top: 1rem;
        }

        #main-menu {
            flex-direction: column;
            align-items: flex-start;
        }
        }
 
    body div#carousel-container figure .bottom-bg  {
        content: '';
        width: 100%;
        background: transparent url(images/home-one-banner-image-2Sc2Rzvq.png) no-repeat bottom center;
        height: 0;
        display: block;
        bottom: -11px;
        position: absolute;
        padding-top: 20%;
    }
    @media(max-width: 991px){
                    body div#carousel-container{
                min-height: 550px;
            }
        }
        body div#carousel-container figure .bottom-bg  {
            left: 0;
            right: 0;
            bottom: 0;
            height: 30px;
            margin-top: 0px;
            background-size: 100% 30px;
        }
    .menu-item.parent .submenu {
            display: none;
            position: absolute;
            background: #002D62;
            list-style: none;
            padding: 0;
            }

            .menu-item.parent:hover .submenu {
            display: block;
            }
         .hero-wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust as needed */
  overflow: hidden;
}

.background-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('images/bg-1.png') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.foreground-layer {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('images/hreo-img-2.png') no-repeat center center;
  background-size: contain;
  z-index: 2;
}

 