* {
    font-family: "League Spartan", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    color: #1A414E;
}

html, body {
    margin: 0;
}

hr {
    width: 17.5%;
    margin-bottom: 60px;
}

footer {
    background-color: #FED78B;
    z-index: 1000;
    padding: 10px;
    position: fixed;
    align-items: center;
    bottom: 0;
    display: flex;
    width: 100%;
}

nav {
    background-color: #FED78B;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.navcontent{
    margin-left:10px;
}

.navlogo {
    height: calc(100% - 20px);
    width: auto;
    cursor: pointer;
    padding-left: 10px;
}

.links{
    width: 100%;
    text-align: right;
    padding-right: 10px;
    display: flex;
    align-items: center;
    justify-content: right;
}

.pfp{
    width: 3%;
}

.dot{
    display: inline;
}

.links > a {
    color: #1A414E;
    text-decoration: none;
    cursor: pointer;
    font-size: 18px;

}

@media screen and (max-width: 480px) {
    .links > a{
        display: none;
    }
    .dot{
        display: none;
    }
  }

.custom-button {
    background-color: #1A414E;
    color: white;
    border: none;
    padding: 18px 80px;
    font-size: 24px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    width: auto;
    padding-right: calc(80px + 30px);
    padding-left: calc(80px + 30px);
    align-items: center;
}

.custom-button:hover {
    background-color: #173642;
}

@media screen and (max-width: 480px) {
    .custom-button{
        padding-left: 10px;
        padding-right: 10px;
    }
  }

.page_title {
    text-align: center;
    margin-top: 10px;
}

.page_title > h1 {
    font-size: 70px;
    font-weight: 300;
}

.highlighted-text {
    color: #1E3A47;
    position: relative;
    display: inline-block;
}

.highlighted-text::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1.6em;
    width: 100%;
    height: 0.8em;
    background-color: #FFD98E;
    z-index: -1;
}


#navhigh::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.1em;
    width: 100%;
    height: 0.5em;
    z-index: -1;
}

::selection {
    background-color: #E0BD78;
}

.pfp{
    width: 25px;
    margin: auto none;
    padding-top: 2px;
    align-items: center;
    justify-content: center;
    filter: invert(98%) sepia(29%) saturate(5480%) hue-rotate(304deg) brightness(114%) contrast(99%);
}

.pfp_img{
    background-color: #1A414E;
    padding: 8px;
    width: fit-content;
    border-radius: 6px;
    padding-bottom: -4px;
}

.mobile_menu{
    width: 30px;
    display: none;
}

@media screen and (max-width: 480px) {
    .mobile_menu{
        display:block;
    }
    .men > img{
        filter: invert(18%) sepia(33%) saturate(710%) hue-rotate(154deg) brightness(93%) contrast(92%);
    }
    #excep{
        display: block;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 20px;
    }
    .page_title > h1 {
        font-size: 40px;
    }
    .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 17px;	
    }
    .left_img, .right_img{
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 70px;
        height: auto;
        border-radius: 5px;
    }
    .page_container{
        margin: 40px auto;
        padding: 0 20px;
    }
    .buttons{
        gap: 15px;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
    z-index: 1001;
    border-radius: 6px;
    padding: 8px 0;
    border: 1px solid rgba(26, 65, 78, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    color: #1A414E;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
    font-size: 16px;
    text-align: left;
}

.dropdown-item:hover {
    background-color: #eeeeee;
}

.dropdown-divider {
    height: 1px;
    margin: 8px 16px;
    background-color: rgba(26, 65, 78, 0.1);
    border: none;
    width: auto;
}

@media screen and (max-width: 480px) {
    .dropdown-menu {
        display: none;
    }
    
    .dropdown .navcontent {
        display: none;
    }

    
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .dropdown-menu {
        min-width: 200px;
    }
    
    .dropdown-item {
        font-size: 18px;
        padding: 10px 14px;
    }
}

.links .navcontent {
    margin-left: 10px;
    color: #1A414E;
    text-decoration: none;
    cursor: pointer;
    font-size: 18px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
    z-index: 1001;
    border-radius: 6px;
    padding: 8px 0;
    border: 1px solid rgba(26, 65, 78, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    margin-top: 8px;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent;
    z-index: 1000;
}

.dropdown-menu::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
    z-index: 1002;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
