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

.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: 9px;
    padding-bottom: 9px;
    margin: 0;
    height:78px;
    box-sizing: border-box;
}

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

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

.navbarLeft__text{
    display: inline; /* Changed from flex to inline */
    gap: 16px;
    color: white;
    font-size: 16px; /* 5% smaller than 18px */
    align-content: center;
    text-align: left;
    text-decoration: none; /* This should now work */
}
.navbar__navbarLeft img {
    width: 98%;
}

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

.navbarRight__button {
    color: white;
    border-radius: 12px;
    padding: 5px 11px;
    text-decoration: none;
    align-content: center;
    font-size: 19px; /* 5% smaller than 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: 89.775%; /* 5% smaller than 94.5% */
    transition: all .3s ease;
}

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

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

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

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

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

.items__line {
    height: 1px;
    background-color: black;
}


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

.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 */
}


@media (max-width: 1560px) {
    nav {
        padding-left: 21.6px; /* 20% smaller than 27px */
        padding-right: 21.6px; /* 20% smaller than 27px */
        padding-top: 7.2px; /* 20% smaller than 9px */
        padding-bottom: 7.2px; /* 20% smaller than 9px */
    }
    .navbarLeft__icon{
        width:11%;
    }
    .navbarLeft__text{
        font-size:18px;
    }
    
    .navbarRight__button {
        font-size: 13.68px; /* 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; /* 20% smaller than 14.25px */
    }

    .subnavbar a {
        font-size: 12px;
    }

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

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

    .items__line{
        height:.5px;
    }
    .sidenav h2 {
        font-size: 1.3em;
        padding:0px 15px; /* 20% smaller than 25.65px */
    }

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

    .sidenav__items a {
        font-size: .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 */
    }
}