﻿body {
    font-family: "Poppins";
}

.headerrow a {
    text-decoration: none;
}

    .headerrow a:hover {
        text-decoration: underline;
    }

.topmenucontent a {
    text-decoration: none;
}

    .topmenucontent a:hover {
        text-decoration: underline;
    }

.mainmenucontainer_in a {
    text-decoration: none;
}

    .mainmenucontainer_in a:hover {
        text-decoration: underline;
    }

.contentpage {
    margin: 0;
    background-color: #fff;
    padding: 20px 20px 0 20px;
}

    /*.contentpage .headerrowwrapper {
    background: linear-gradient(to bottom, #e0caa3, rgba(224, 202, 163, 0));
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    height: 220px;
    padding: 20px 20px 0 20px;
}*/

    .contentpage .headerrow {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

        .contentpage .headerrow .logocontainer {
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
        }

            .contentpage .headerrow .logocontainer .logobox {
                margin-right: 12px;
            }

            .contentpage .headerrow .logocontainer .logoboxtxt {
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: start;
            }

                .contentpage .headerrow .logocontainer .logoboxtxt h1 {
                    font-size: 30px;
                    font-weight: 700;
                    color: #0a1c44;
                    margin: 0;
                    padding: 0;
                    margin-top: 12px;
                }

                .contentpage .headerrow .logocontainer .logoboxtxt h4 {
                    font-size: 22px;
                    font-weight: 500;
                    letter-spacing: -1.5px;
                    color: #0a1c44;
                    margin: 0;
                    padding: 0;
                    margin-top: -1px;
                }

            .contentpage .headerrow .logocontainer:hover {
                text-decoration: none !important;
            }

        .contentpage .headerrow .topmenucontainer {
            margin-top: 30px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            grid-gap: 10px;
        }

            .contentpage .headerrow .topmenucontainer .topmenucontent {
                display: flex;
                flex-direction: row;
                justify-content: flex-start;
                align-items: baseline;
                gap: 10px;
                margin-top: 5px;
                margin-right: 10px;
            }

                .contentpage .headerrow .topmenucontainer .topmenucontent a {
                    font-weight: 700;
                    text-transform: uppercase;
                    color: #0a1c44;
                    font-size: 14px;
                }

            .contentpage .headerrow .topmenucontainer .searchbox {
                margin-top: 1px;
            }

                .contentpage .headerrow .topmenucontainer .searchbox input {
                    font-family: "Helvetica", FontAwesome, sans-serif;
                    border: solid 1px #091d42;
                    border-radius: 6px;
                    background-color: transparent;
                }

                    .contentpage .headerrow .topmenucontainer .searchbox input::placeholder {
                        color: #0a1c44;
                        opacity: 1;
                    }

    .contentpage .mainmenucontainer {
        margin: 20px 0 0 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .contentpage .mainmenucontainer .mainmenucontainer_in {
            width: 1300px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }

            .contentpage .mainmenucontainer .mainmenucontainer_in a {
                text-transform: uppercase;
                color: #0a1b46;
                font-weight: 900;
                letter-spacing: 3px;
                font-size: 20px;
            }

    .contentpage .mainstripcontainer {
        position: absolute;
        top: 70%;
        right: 0;
    }

        .contentpage .mainstripcontainer .mainstripbadge {
            background-color: #0a1c44;
            text-transform: uppercase;
            color: #e2cba2;
            font-size: 46px;
            font-weight: 700;
            padding: 0px 0px;
            cursor: pointer;
        }

@media (max-width: 768px) {

    .contentpage {
        padding: 5px;
        height: auto !important;
        overflow: visible !important;
    }

        .contentpage .headerrow {
            flex-direction: column;
            align-items: center;
        }

            .contentpage .headerrow .logocontainer {
                margin-left: 0;
                margin-bottom: 10px;
                justify-content: center;
            }

            .contentpage .headerrow .topmenucontainer {
                margin-top: 10px;
                flex-wrap: wrap;
                justify-content: center;
            }

                .contentpage .headerrow .topmenucontainer .topmenucontent {
                    flex-wrap: wrap;
                    justify-content: center;
                    margin-top: 5px;
                    gap: 6px;
                }

                    .contentpage .headerrow .topmenucontainer .topmenucontent a {
                        font-size: 14px;
                    }

                .contentpage .headerrow .topmenucontainer .searchbox {
                    margin-top: 5px;
                }

                .contentpage .headerrow .topmenucontainer .burightlogo {
                    display: none;
                    position: static;
                    top: auto;
                    left: auto;
                }

        /* Main menu container: relative for hamburger */
        .contentpage .mainmenucontainer {
            display: flex;
            flex-direction: column;
            position: relative; /* Make sure it's not absolute */
        }

            /* Hamburger button styles */
            .contentpage .mainmenucontainer .hamburger-main {
                display: block;
                font-size: 26px;
                background: none;
                border: none;
                color: #0a1b46;
                cursor: pointer;
                padding: 5px 15px;
                user-select: none;
            }

            /* Hide main menu links by default on mobile */
            .contentpage .mainmenucontainer .mainmenucontainer_in {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #f8f8f8;
                padding: 10px 0;
                border-radius: 4px;
            }

            /* Show menu when active */
            .contentpage .mainmenucontainer.active .mainmenucontainer_in {
                display: flex;
            }

            .contentpage .mainmenucontainer .mainmenucontainer_in a {
                font-size: 16px;
                padding: 8px 20px;
                border-bottom: 1px solid #ccc;
                width: 100%;
                box-sizing: border-box;
            }

                .contentpage .mainmenucontainer .mainmenucontainer_in a:last-child {
                    border-bottom: none;
                }

            /* Remove underline from menu links, underline only on hover */
            .contentpage .headerrow .topmenucontainer .topmenucontent a,
            .contentpage .mainmenucontainer .mainmenucontainer_in a {
                text-decoration: none;
                transition: text-decoration 0.3s ease;
            }

                .contentpage .headerrow .topmenucontainer .topmenucontent a:hover,
                .contentpage .mainmenucontainer .mainmenucontainer_in a:hover {
                    text-decoration: underline;
                }

        /* Adjust mainstripcontainer position on mobile */
        .contentpage .mainstripcontainer {
            position: static;
            margin-top: 20px;
            width: 100%;
            line-height: 50px;
        }

            .contentpage .mainstripcontainer .mainstripbadge {
                background-color: #0a1c44;
                text-transform: uppercase;
                color: #e2cba2;
                font-size: 38px;
                font-weight: 700;
                padding: 0px 0px;
                cursor: pointer;
            }
}

@media (min-width: 769px) {
    /* Hide hamburger on desktop */
    .contentpage .mainmenucontainer .hamburger-main {
        display: none;
    }
}


/*body {
  font-family: "Poppins";
}

.contentpage {
  margin: 0;
  background-color: #fff;
  padding: 20px 20px 0 20px;
}
.contentpage .headerrow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.contentpage .headerrow .logocontainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
.contentpage .headerrow .logocontainer .logobox {
  margin-right: 8px;
}
.contentpage .headerrow .logocontainer .logoboxtxt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: start;
}
.contentpage .headerrow .logocontainer .logoboxtxt h1 {
  font-size: 26px;
  font-weight: 900;
  color: #0a1c44;
  margin: 0;
  padding: 0;
  margin-top: 18px;
}
.contentpage .headerrow .logocontainer .logoboxtxt h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0a1c44;
  margin: 0;
  padding: 0;
  margin-top: 3px;
}
.contentpage .headerrow .logocontainer:hover {
  text-decoration: none;
}
.contentpage .headerrow .topmenucontainer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  grid-gap: 10px;
}
.contentpage .headerrow .topmenucontainer .topmenucontent {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
  margin-top: 5px;
}
.contentpage .headerrow .topmenucontainer .topmenucontent a {
  font-weight: 600;
  text-transform: uppercase;
  color: #0a1c44;
}
.contentpage .headerrow .topmenucontainer .searchbox {
  margin-top: 1px;
}
.contentpage .headerrow .topmenucontainer .searchbox input {
  font-family: "Helvetica", FontAwesome, sans-serif;
  border: solid 1px #091d42;
  border-radius: 6px;
  background-color: transparent;
}
.contentpage .headerrow .topmenucontainer .searchbox input::placeholder {
  color: #0a1c44;
  opacity: 1;
}
.contentpage .mainmenucontainer {
  margin: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contentpage .mainmenucontainer .mainmenucontainer_in {
  width: 1300px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.contentpage .mainmenucontainer .mainmenucontainer_in a {
  text-transform: uppercase;
  color: #0a1b46;
  font-weight: 800;
  font-size: 20px;
}
.contentpage .pageTemplate1Container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.contentpage .pageTemplate1Container .pageTemplateContainerin {
  width: 1300px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.contentpage .pageTemplate1Container .pageTemplateContainerin .contentcolumn1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.contentpage .pageTemplate1Container .pageTemplateContainerin .contentcolumn1 h1 {
  color: #0a1c44;
  font-weight: 700;
  font-size: 38px;
}
.contentpage .pageTemplate1Container .pageTemplateContainerin .contentcolumn1 p {
  color: #0a1c44;
}
.contentpage .pageTemplate1Container .pageTemplateContainerin .contentcolumn2 {
  width: 600px;
}
.contentpage .pageTemplate2Container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.contentpage .pageTemplate2Container .pageTemplateContainerin {
  width: 1300px;
}
.contentpage .pageTemplate2Container .pageTemplateContainerin .contentSection1 {
  border-bottom: dashed 1px #0a1c44;
}
.contentpage .pageTemplate2Container .pageTemplateContainerin .contentSection1 h1 {
  color: #0a1c44;
  font-weight: 700;
  font-size: 38px;
}
.contentpage .pageTemplate2Container .pageTemplateContainerin .contentSection1 p {
  color: #0a1c44;
}
.contentpage .pageTemplate2Container .pageTemplateContainerin .contentSection2 h2 {
  color: #0a1c44;
  font-weight: 700;
  font-size: 28px;
}
.contentpage .pageTemplate2Container .pageTemplateContainerin .contentSection2 p {
  color: #0a1c44;
}
.contentpage .dgMessageContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.contentpage .dgMessageContainer .dgMessageContainerin {
  width: 1300px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
.contentpage .dgMessageContainer .dgMessageContainerin .dgMessageColumn {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.contentpage .dgMessageContainer .dgMessageContainerin .dgMessageColumn h1 {
  color: #0a1c44;
  font-weight: 700;
  font-size: 38px;
}
.contentpage .dgMessageContainer .dgMessageContainerin .dgMessageColumn p {
  color: #0a1c44;
}
.contentpage .jobsContainer .jobContainerin h1 {
  color: #0a1c44;
  font-weight: 700;
  font-size: 38px;
}
.contentpage .jobsContainer .jobContainerin p {
  color: #0a1c44;
}
.contentpage .tendersContainer .tenderContainerin h1 {
  color: #0a1c44;
  font-weight: 700;
  font-size: 38px;
}
.contentpage .tendersContainer .tenderContainerin p {
  color: #0a1c44;
}
.contentpage .downloadsContainer .downloadContainerin h1 {
  color: #0a1c44;
  font-weight: 700;
  font-size: 38px;
}
.contentpage .downloadsContainer .downloadContainerin p {
  color: #0a1c44;
}
*/