:root {
    --bipro-blue: #024887;
    --bipro-red: #b61525;
    --bipro-dark-blue: #003C67;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --hover-red: #680404;
    --hover-blue: #001E33;
    --title-grey: #747474
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%
}
body {
    font-family: Arial, sans-serif;
    color: var(--color-black);
    background-color: var(--color-white);
    margin: 0;
    padding: 0;
    max-width: 100vw
}
.centerTitle,
.centerTitleText,
.generationSwitch,
.logo,
.switchLogo,
.title,
header {
    display: flex;
    align-items: center
}
.title {
    width: 30%;
    flex-flow: row
}
.title a {
    text-decoration: none
}
.centerTitleText,
.titleText {
    font-size: 40px;
    line-height: 50px;
    margin: 0;
    font-weight: 700;
    font-style: oblique;
    color: var(--title-grey)
}
.nav-menu {
    background: var(--bipro-dark-blue);
    width: 100%;
    z-index: 1000;
    min-height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
    left: 0
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%
}
.nav-list {
    list-style: none;
    margin: 0;
    display: flex;
    height: 100%
}
.nav-item {
    justify-content: center;
    height: 70px
}
.loginLink,
.nav-item,
.nav-link {
    display: flex;
    align-items: center
}
.loginLink,
.nav-link {
    color: #fff;
    text-decoration: none;
    height: 100%;
    padding: 0 15px;
    transition: background-color .3s
}
.loginLink:hover,
.nav-link.active,
.nav-link:hover {
    background-color: var(--hover-blue);
    color: var(--color-white)
}
.nav-link.active {
    font-weight: 700
}
@media (max-width : 768px) {
    .nav-list,
    .nav-menu {
        flex-direction: column;
        width: 100%;
        height: auto
    }
    .nav-item {
        margin: 5px 0
    }
    .nav-link {
        justify-content: center;
        width: 100%
    }
}
main {
    background: var(--color-white);
    padding: 2rem;
    min-height: 70vh;
    align-items: center
}
.welcome-section,
main {
    flex-direction: column;
    display: flex
}
.welcome-section {
    text-align: left;
    margin-bottom: 2rem;
    width: 90%
}
.welcome-section h1 {
    color: var(--bipro-dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    align-self: start
}
.welcome-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-black)
}
.detailcontent,
.pageContent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 90%
}
@media (max-width : 768px) {
    .detailcontent,
    .pageContent {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0
    }
}
.main-content {
    display: flex;
    flex-flow: column;
    min-height: 65vh;
    align-items: center;
    width: 90%;
    background: rgba(255, 255, 255, .75);
    color: var(--color-black)
}
.info-box-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: clamp(1rem, 2vw, 1.5rem);
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 90%
}
.info-box {
    background-color: var(--color-white);
    padding: 60px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    transition: transform .3s ease, box-shadow .3s ease;
    width: 20%;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly
}
.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .2);
    background-color: var(--bipro-dark-blue);
    color: var(--color-white)
}
.info-box-title {
    margin: 0;
    color: var(--bipro-dark-blue);
    text-align: center
}
.versionTable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    table-layout: fixed
}
.versionTable td,
.versionTable th {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    width: 25%
}
.versionTable th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: 700
}
.versionTable tr:hover {
    background-color: #f1f1f1
}
footer {
    background: var(--bipro-blue);
    padding: 20px;
    display: flex;
    justify-content: space-around;
    margin-top: auto
}
.footer a {
    margin-right: 15px;
    color: #fff;
    text-decoration: none
}
.footer a:hover {
    text-decoration: underline
}
a.navigationLink {
    text-decoration: none;
    color: var(--bipro-dark-blue);
    margin-bottom: 3%
}
a.navigationLink:hover {
    color: var(--bipro-dark-blue)
}
.download-link,
a.navigationLink:hover {
    text-decoration: underline
}
.download-link:hover {
    cursor: pointer
}
.release-package {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 3%;
    background-color: #d3d3d3;
    max-width: 40%
}
iframe {
    width: 100%;
    flex: 1 1;
    border: 0
}
p code {
    background-color: #000;
    color: #fff
}
#__next {
    width: 100%
}
.cr {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important
}
.Footer_footer__zb27A {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bipro-dark-blue);
    color: var(--color-white);
    padding: 1rem 2rem;
    flex-wrap: wrap
}
.Footer_links__Tg6vr {
    display: flex;
    gap: 1rem
}
.Footer_links__Tg6vr a {
    color: var(--color-white);
    text-decoration: none;
    transition: -webkit-text-decoration .3s;
    transition: text-decoration .3s;
    transition: text-decoration .3s, -webkit-text-decoration .3s
}
.Footer_links__Tg6vr a:hover {
    text-decoration: underline
}
.Footer_feedback__mKoS1 {
    flex: 1 1;
    text-align: center;
    margin: .5rem 0
}
.Footer_feedback__mKoS1 a {
    color: var(--color-white);
    text-decoration: underline
}
.Footer_copyright__vVtEv {
    text-align: right;
    flex: 1 1
}
@media (max-width : 768px) {
    .Footer_footer__zb27A {
        flex-direction: column;
        text-align: center;
        gap: .5rem;
        padding: 1rem
    }
    .Footer_copyright__vVtEv,
    .Footer_feedback__mKoS1,
    .Footer_links__Tg6vr {
        width: 100%
    }
    .Footer_links__Tg6vr {
        justify-content: center
    }
    .Footer_copyright__vVtEv {
        text-align: center
    }
}
.Header_header__lMfxW {
    width: 100%;
    padding: 1rem 0
}
.Header_container__qFFoB,
.Header_header__lMfxW {
    display: flex;
    align-items: center;
    justify-content: space-between
}
.Header_container__qFFoB {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto
}
.Header_title__fFk5M {
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 1rem
}
.Header_logo__5okxX {
    width: auto;
    height: 5rem
}
.Header_centerTitle__EeHdf {
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center
}
.Header_centerTitleText__4j9PI {
    color: var(--title-grey);
    font-size: 1rem;
    margin: 0
}
.Header_generationSwitch__dlLSB {
    flex: 1 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none
}
.Header_generationSwitch__dlLSB a {
    text-decoration: none;
    color: var(--color-black)
}
.Header_generationSwitch__dlLSB p {
    margin: 0
}
.Header_switchLogo__pyVVr {
    display: flex;
    align-items: center
}
@media (max-width : 768px) {
    .Header_title__fFk5M {
        padding-right: 0;
        padding-bottom: 1rem;
        margin-bottom: 1rem
    }
    .Header_generationSwitch__dlLSB {
        display: none
    }
    .Header_logo__5okxX {
        height: 2.5rem
    }
    .Header_header__lMfxW {
        flex-direction: column;
        align-items: stretch
    }
    .Header_centerTitle__EeHdf,
    .Header_title__fFk5M {
        width: 100%;
        justify-content: center;
        margin-bottom: .5rem
    }
    .Header_centerTitleText__4j9PI {
        color: var(--title-grey);
        font-size: .75rem;
        margin: 0
    }
}
.Menu_navMenu__Q1Wuh {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bipro-dark-blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    position: relative;
    width: 100%;
    z-index: 1000
}
.Menu_sticky__LmzBH {
    position: fixed;
    top: 0;
    animation: Menu_slideDown__CZbKl .3s ease-in-out
}
.Menu_active__Doz59 {
    background: var(--hover-blue);
    font-weight: 700
}
.Menu_hamburger__7v7fr {
    display: none;
    background: none;
    border: none;
    color: var(--bipro-dark-blue);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: .75rem;
    right: 1rem;
    z-index: 1100
}
.Menu_hamburgerOpen__RHmFO {
    color: var(--color-white)
}
.Menu_navList____zbJ {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center
}
.Menu_navItem__kaByU {
    margin: 0;
    height: 100%;
    padding: .8rem
}
.Menu_navLink__98kVV {
    display: block;
    padding: 0 1rem;
    color: var(--color-white);
    text-decoration: none;
    transition: background-color .3s;
    height: 100%
}
.Menu_navItem__kaByU:hover {
    background: var(--hover-blue);
    font-weight: 700
}
@media (max-width : 768px) {
    .Menu_hamburger__7v7fr {
        display: block
    }
    .Menu_navList____zbJ {
        display: none;
        flex-direction: column;
        background: var(--bipro-dark-blue);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%
    }
    .Menu_open__fSLQ9 .Menu_navList____zbJ {
        display: flex
    }
    .Menu_navItem__kaByU {
        margin: 0
    }
    .Menu_navLink__98kVV {
        padding: 1rem;
        text-align: center
    }
}