body {
    width: 100%;
    margin: 0;
    font-family: 'Roboto';
    overflow-x: hidden;
}

.navigation {
    top: 0;
    z-index: 10;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: row;
    margin-left: 0;
    margin-right: 0;
    position: relative;
}

.content__right {
    width: 83%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    flex-wrap: nowrap;
}

nav {
    background: #11286a;
    font-family: 'Roboto';
    display: flex;
    justify-content: space-between;
    padding-left: 27px;
    padding-right: 27px;
    padding-top: 70px;
    padding-bottom: 70px;
    margin: 0;
    height: 78px;
    box-sizing: border-box;
    align-items: center;
}

.navbar__navbarLeft {
    display: flex;
    gap: 9px;
    color: white;
    font-size: 17.1px;
    /* 5% smaller than 18px */
    align-content: center;
    align-items: center;
    text-align: left;
    /* Ensure text is aligned left */
}

.navbarLeft__icon {
    padding: 8px 0px;
    width: 25%;
    text-align: left;
    /* Ensure text is aligned left */
    text-decoration: none;
    /* Ensure text decoration is none */
}

.navbarLeft__text {
    display: inline;
    /* gap: 19px; */
    color: white;
    font-size: 70px;
    align-content: center;
    text-align: left;
    text-decoration: none;
}

.navbar__navbarLeft img {
    width: 80%;
}

.navbar__extraImages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.navbar__extraImages img {
    /* object-fit: contain; */
    width: 150px;
    height: 80px;
    border: 1px solid white;
    background-color: black;
    border-radius: 8px;
}

.navbar__navbarRight {
    display: flex;
    justify-content: end;
    align-items: center;
}

.navbarRight__button {
    color: white;
    border-radius: 12px;
    /* padding: 3px 0px; */
    text-decoration: none;
    align-content: flex-start;
    font-size: 18px;
    transition: all .3s ease;
}

.navbarRight__button:hover {
    transform: scale(1.05);
    /* 5% smaller than 1.1 */
}

.navbar__hamburger {
    display: none;
}

.hamburger {
    display: none;
    text-align: right;
}

.hamburger a {
    color: white;
    text-decoration: none;
}

.hamburger__nav {
    display: none;
    transition: all 0.3s ease-out;
}

.hamburger__nav a {
    display: block;
    text-indent: 9px;
    font-size: 14.25px;
    /* 5% smaller than 15px */
    margin: 9px 0px;
}

.subnavbar {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: right;
    gap: 27px;
    background-color: #000000;
    font-family: 'Roboto';
    padding: 0.9% 27px;
    height: 42px;
    align-items: center;
}

.subnavbar a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    /* 5% smaller than 94.5% */
    transition: all .3s ease;
}

.subnavbar a:hover {
    transform: scale(1.05);
    /* 5% smaller than 1.1 */
    color: #a8a8a8;
}

.subnavbartesting {
    display: flex;
    gap: 20px;
}

.sidenav__itemsStick {
    position: sticky;
    top: 0px;
    overflow: 1;
    padding: 10px 0px 27px 0px;
}

.sidenav {
    font-family: 'Roboto';
    display: flex;
    flex-direction: column;
    width: 17%;
    border-right: #898989 solid 1px;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}

.sidenav h2 {
    font-size: 21px;
    /* 5% smaller than 27px */
    margin: 0;
    padding: 0px 27px;
}

.items__line {
    background-color: black;
    margin: 10px 0px;
}

hr.item__line {
    margin: 10px 0px;
}

.sidenav__items a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    /* 5% smaller than 20px */
    padding: 0px 27px;
}

.sidenav__items p {
    font-size: 17px;
}

.item__subitem {
    display: none;
    transition: all 0.3s ease-out;
}

.item__subitem a {
    display: block;
    text-indent: 9px;
    font-size: 14.25px;
    /* 5% smaller than 15px */
    margin: 9px 0px;
    transition: all .3s ease;
}

.item__subitem a:hover {
    font-size: 15.2px;
    /* 5% smaller than 16px */
    color: #0045CB;
}

.item__subitem a:hover i {
    transform: rotate(180deg);
    /* No change needed here */
}

.subnavbar p {
    font-size: 18px;
}

.subnavbar p:hover {
    color: #a8a8a8;
}


@media (max-width: 1560px) {
    nav {
        padding-left: 21.6px;
        /* 20% smaller than 27px */
        padding-right: 21.6px;
        /* 20% smaller than 27px */
        padding-top: 60px;
        /* 20% smaller than 9px */
        padding-bottom: 60px;
        /* 20% smaller than 9px */
    }

    .navbarLeft__icon {
        width: 25%;
    }

    .navbarLeft__text {
        font-size: 30px;
    }

    .navbarRight__button {
        font-size: 24px !important;
        /* 20% smaller than 17.1px */
        padding: 4px 8.8px;
        /* Adjusted padding to match font size */
    }

    .sidenav__itemsStick {
        top: 0px;
    }

    .hamburger__nav a {
        font-size: 11.4px;
    }

    .sidenav {
        border-right: black solid .5px;
    }

    .items__line {
        height: .5px;
    }

    .sidenav h2 {
        font-size: 1.3em;
        padding: 0px 15px;
    }

    .sidenav__items p {
        font-size: 0.9rem;
    }

    .sidenav__items a {
        font-size: 0.9rem;
        /* 20% smaller than 19px */
        padding: 0px 15px;
    }

    .item__subitem a {
        font-size: 11.4px;
        /* 20% smaller than 14.25px */
    }

    .item__subitem a:hover {
        font-size: 12.96px;
        /* 20% smaller than 15.2px */
    }
}

@media (max-width: 760px) {
    .subnavbar p {
        font-size: 16px;
    }

    .navbar__extraImages img {
        display: none !important;
    }

    .navbarLeft__icon {
        width: 25%;
    }
}

@media (max-width:520px) {
    .navbarLeft__icon {
        width: 25%;
    }

    .navbarLeft__text {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .mobileHamburger {
        position: relative;
        z-index: 1;
    }
    .hamDropdown {
        position: relative;
        z-index: 1;
    }
}