/* @import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('chillax.css');
@font-face {
    font-family: "FridayNight";
    src: url('../fonts/FridayNightRegular-0W9z4.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'Material Symbols Rounded';
    font-style: normal;
    font-weight: 100 700;
    src: url('/assets/fonts/google-material-icons.woff2') format('woff2');
    font-display: swap;
}
.material-symbols-rounded {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
}
:root {
    --secondary-text-color: #5a728e;
    --banner-height: 70px;
}
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.material-symbols-rounded {
    user-select: none;
}
html {
    font-family: 'Chillax-Variable', sans-serif;
    /* font-weight: 400; */
    font-variation-settings: 'wght' 400;
    scroll-behavior: smooth;
}
@media (prefers-reduced-motion) {
    html {
        scroll-behavior: initial;
    }
    .mobile-navigation-menu {
        transition: 0.4s all !important;
    }
}
.hero-image {
    width: 100%;
    height: 350px;
    font-size: 45px;
    text-shadow: black 0 5px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #635a87;
    background-image: url("/assets/images/primary-background-image.svg");
}
.hero-image h1 {
    transition: 0.4s all;
}
.hero-image-text-expanded {
    z-index: 100000;
    font-size: 24px !important;
    position: fixed !important; 
    top: 10px !important;
    left: 60px !important;
}
.secondary-text-color {
    color: #5a728e;
}
.secondary-hero-image {
    background-color: #888f95;
    background-image: url("/assets/images/secondary-background-image.svg");
    height: 250px;
}
.no-link {
    text-decoration: none;
    color: inherit;
}
.align-middle {
    vertical-align: middle;
}
.hidden {
    display: none !important;
}
.hiddenOpac {
    opacity: 0;
}
.link {
    color: #476581
}
.link-secondary {
    color:#E8F4FF ;
}
main[data-background="colored"] {
    background-color: rgb(91, 107, 124);
    color: rgb(234, 244, 254);
}
.hero-image div {
    width: 15ch;
    height: 10px;
    margin-top: 15px;
    background-color: #7ea3c7;
}
header {
    position: fixed;
    z-index: 100000;
    width: 100%;
    height: 50px;
    display: grid;
    grid-template-columns: 25% 75%;
    transition: 0.2s all;
}
header[data-banner-active] {
    top: var(--banner-height);
}
header[data-banner-active] ~ .hero-image {
    margin-top: var(--banner-height)
}
header h1 {
    position: relative;
}
header h1:after {
    content: 'Enhanced';
    font-family: "FridayNight", sans-serif;
    font-size: 20px;
    position: absolute;
    top: 20px;
    right: 25%;
    white-space: nowrap;
    text-shadow: 0px 5px 12px black;
}
header[data-color="black"] * {
    color: black !important;
}
header[data-color="black"] nav a::after {
    background-color: black;
}
.header-image-container {
    height: 100%;
    color: white;
    padding-left: 15px;
    display: flex;
    align-items: center;
    float: left;
    font-size: 0.75em;
}
.header-image-container h1 {
    text-shadow: gray 0 3px 5px;
}
.header-image-container img {
    height: 45px;
    width: 45px;
}
.header-navigation-container {
    float: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
    color: white;
}
.header-navigation-container ul {
    font-weight: 300;
    font-variation-settings: 'wght' 450;
    display: flex;
    gap: 1.5em;
    list-style-type: none;
    text-align: center;
}
.header-navigation-container a {
    padding: 5px;
    font-size: 14px;
}
.header-navigation a:target-within {
    color: red;
}
.header-scrolled {
    background-color: white;
    box-shadow: 0 0 2px 1px black;
}
.header-scrolled * {
    color: black;
}
.header-scrolled nav a::after {
    background-color: black !important;
}
.header-scrolled button {
    color: black;
}
.active-link {
    position: relative;
    font-weight: 700;
    font-variation-settings: 'wght' 700;
}
.active-link::after {
    width: 100%;
    height:5px;
    transform: translate(-50%, 180%);
}

nav a {
    position: relative;
}
nav a:hover::after,
nav a:focus::after {
    width: 90% !important;
}
nav a:active::after {
    width: 100% !important;
}
header a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 350%);
    width: 50%;
    border-radius: 50pt;
    height: 3px;
    background-color: white;
    transition: all 0.2s;
}
nav a::after {
    width: 0;
}
/* .dropdown-nav {
    position: relative;
}
.dropdown-nav:hover .dropdown-nav-menu {
    visibility: visible !important;
}
.dropdown-nav-menu {
    visibility: hidden;
    display: flex;
    padding: 15px;
    position: absolute;
    color: black;
    top: 50px;
    right: 215px;
    width: 25ch;
    height: 75px;
    background-color: white;
}
.dropdown-nav-menu ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;

}
.expand-nav {
    cursor: pointer;
} */
.svg-icon {
    color: white;
    width: 25px;
}
.svg-icon img {
    width: 25px;
    height: 25px;
    filter: invert(100%);
}
.mobile-navigation-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 0px;
    height: 100%;
    background-color: white;
    outline: 2px solid black;
    color: black;
    transition: 0.2s all;
    overflow-y: hidden;
}
.mobile-navigation-menu a::after {
    background-color: black;
}
header[data-banner-active] .mobile-navigation-menu {
    top: var(--banner-height) !important;
    border-top: transparent !important;
}
.mobile-navigation-icon {
    border: none;
    background-color: transparent;
    font-size: 32px !important;
    color: white;
}
.mobile-nav-active {
    overflow-y: scroll;
    width: 320px;
}
.mobile-navigation-container {
    z-index: 1000;
    display: none;
}
.mobile-navigation-container nav {
    width: 100%;
    margin-top: 2rem;
}
.mobile-navigation-container nav ul {
    display: flex;
    flex-direction: column;
}
.mobile-navigation-container nav li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 70px;
    font-size: 20px !important;
}
.mobile-close-button-container {
    display: flex;
    width: 100%;
    height: 25px;
    position: relative;
}
.mobile-close-button-container button {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 32px;
    color: black;
}
@media only screen and (max-width: 1000px) {
    .large-header-text {
        font-size: 60px;
    }
    .dof-image-container img {
        width: 500px !important;
        height: 96.09px !important;
    }
}
@media only screen and (max-width: 800px) {
    .mobile-navigation-container {
        display: flex;
    }
    .header-navigation {
        display: none;
    }
    .hero-image h1 {
        font-size: 48px;
    }
    .hero-image div {
        width: 5ch;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
    .people-container {
        flex-direction: column !important;
        align-items: center;
    }
    .people-about {
        max-width: none !important;
    }
    .people-container h1 {
        text-align: center;
    }
    .people-image img {
        width: 300px;
        height: 150px;
    }
    .reverse-people {
        flex-direction: initial;
    }
    .image-container-bottom img {
        width: 300px !important;
        height: 300px !important;
    }
    img[data-imageLogo="thehigherups"] {
        width: 300px !important;
        height: 150px !important;
    
    }
    img[data-imageLogo="tech"] {
        width: 300px !important;
        height: 168.46px !important;
    }
    img[data-imageLogo="felons"] {
        width: 300px !important;
        height: 155.23px !important;
    }
    .page-title {
        font-size: 20px !important;
    }
    .annoucement-banner {
        flex-direction: column;
    }
    .dof-image-container {
        width: 100%;
        display: grid;
        place-items: center;
    }
    .dof-about-image-container {
        width: 100% !important;
        display: grid !important;
        place-items: center !important;
    }
    .dof-about-image-container img {
        height: 200px !important;
        width: 200px !important;
    }
    .dof-image-container img {
        width: 95% !important;
        height: auto !important;
    }
    .dof-about-container {
        flex-direction: column !important;
        padding: 1rem 0px !important;
    }
}
.black {
    color: black;
}
.scroll-to-top {
    display: grid;
    place-items: center;
    position: fixed;
    border-radius: 50pt;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background-color: rgba(128, 128, 128, 0.50);
    transition: 0.5s all;
}
.scroll-to-top span {
    font-size: 50px;
    cursor: pointer;
    color: rgba(0, 0, 0, 0.7);
}
footer {
    width: 100%;
    height: auto;
    min-height: 100px;
    background-color: rgb(230, 231, 231);
    display: flex;
    place-items: center;
}
footer .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    align-items: center;
    width: 90%;
    height: 100%;
    margin: 0 auto;
}
.footer-content div:nth-child(2) img{
    height: 100px;
    width: 200px;
}
main {
    min-height: 100vh;
}
main[data-banner-active] {
    margin-top: 50px;
}
.main-content {
    max-width: 1320px;
    width: 90%;
    padding-block: 5rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.continue-warning {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
.slogan {
    padding-top: 5rem;
    font-weight: 800;
    font-variation-settings: 'wght' 700;
    font-size: 32px;
    text-align: center;
}
.hr {
    margin-block: 5rem;
}
.our-people {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;

}
.people-container {
    width: 100%;
    display: flex ;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-evenly;
    padding-bottom: 100px;
    border-bottom: 1px solid gray;
}
.reverse-people {
    flex-direction: row-reverse;
}
.people-about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 50%;
    font-size: 18px;
}
img[data-imageLogo="thehigherups"] {
    width: 400px;
    height: 200px;

}
img[data-imageLogo="tech"] {
    width: 500px;
    height: 280.77px;
}
img[data-imageLogo="felons"] {
    width: 500px;
    height: 258.72px;
}
.fof-container {
    display: grid;
    height: 100vh;
    width: 100%;
    place-items: center;
    text-align: center;
}
.fof {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}
.fof span:not(#link) {
    font-size: 100px;
}
.fof p {
    font-size: 25px;
}
.open-animation {
    position: fixed;
    bottom: 0;
    /* z-index: 1000; */
    height: 100vh;
    width: 100vw;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.open-animation p {
    font-size: 32px;
}
.open-animation-loaded {
    animation: slideLeft 1s ease-in-out;
}
@keyframes slideLeft {
    0% {
        bottom: 0;
    }
    100% {
        bottom: -100vh;
    }
}
.image-container-bottom {
    margin: 25px auto;
}
.image-container-bottom img {
    height: 500px;
    width: 500px;
}
.account-loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid;
    border-color: #212121 #212121 transparent transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}
.account-loader::after,
.account-loader::before {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px solid;
    border-color: transparent transparent #1e699f #1e699f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-sizing: border-box;
    animation: rotationBack 0.5s linear infinite;
    transform-origin: center center;
}
.account-loader::before {
    width: 32px;
    height: 32px;
    border-color: #6d6d6d #6d6d6d transparent transparent;
    animation: rotation 1.5s linear infinite;
}
    
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 
@keyframes rotationBack {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}
.banner-consealed {
    max-height: 25px !important;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}
.annoucement-banner {
    width: 100%;
    min-height: 70px;
    padding: 10px;
    height: auto;
    position: fixed;
    top: 0;
    color: black;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.banner-button {
    display: inline-flex;
    text-decoration: none;
    color: inherit;
    border: 1px solid black;
    padding: 5px;
    border-radius: 3pt;
}
.js-banner {
    z-index: 1000000000;
}
.banner-button:empty {
    display: none;
}
.annoucement-banner[data-banner-type="warning"] {
    background-color: #d4d421;
}
.annoucement-banner[data-banner-type="notification"] {
    background-color: #2A54A2;
    color: white;
}
.annoucement-banner[data-banner-type="notification"] .banner-button,
.annoucement-banner[data-banner-type="alert"] .banner-button
 {
    border-color: white;
}
.annoucement-banner[data-banner-type="alert"] {
    background-color: #b92a11;
    color: white;
}
.page-title {
    width: 100%;
    text-align: center;
    padding-block: 25px;
    font-size: 28px;
}
.page-content {
    font-size: 28px;
    line-height: 3ch;
    margin-block: 32px;
    text-align: center;
    padding: 12px 8px;
    font-weight: 500;
    font-variation-settings: 'wght' 500;
}
.dof-image-container {
    margin: 0 auto;
}
.dof-image-container img {
    width: 800px;
    height: 153.75px;
}
.large-header-text {
    text-align: center;
}
.dof-about-container {
    display: flex;
    padding: 5rem;
    flex-direction: row;
    width: 100%;
    gap: 50px;
}
.dof-about-image-container img {
    width: 300px;
    height: 300px;
}
.dof-about-description {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 1rem;
}
.dof-about-description p {
    font-size: 22px;
}
.dof-about-description h2 {
    font-size: 36px;
    color: var(--secondary-text-color)
}
.dof-departments-wrapper {
    padding: 25px 0;
}
.dof-departments-wrapper h2 {
    text-align: center;
    color: var(--secondary-text-color);
    font-size: 32px;
    padding: 24px 0;
}
.dof-departments-container {
    display: flex;
    padding: 25px;
    justify-content: space-around;
    width: 100%;
    align-items: center;
}
.dof-department {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}
.dof-department img {
    width: 400px;
    height: 200px;
}
.dof-department-description {
    margin: 32px 0;
    padding: 25px;
}
.dof-department-description {
    display: flex;
    max-width: 70%;
    flex-direction: column;
    justify-content: space-around;
    gap: 2rem;
    align-items: flex-start;
    color: var(--secondary-text-color);
    font-weight: 600;
    font-variation-settings: 'wght' 600;
}
.dof-department-description h3 {
    font-size: 32px;
    margin-bottom: 32px;
}
.dof-department-description p {
    font-size: 22px;
    line-height: 3ch;
}
.dof-description-right {
    align-items: flex-end;
    float: right;
    text-align: right;
}
.dof-bottom-logo-container {
    display: flex;
    gap: 20px;
}
.dof-bottom-logo-container img {
    width: 150px;
    height: 150px;
}
@media only screen and (max-width: 975px) {
    .dof-departments-container {
        flex-direction: column;
        gap: 32px;
    }
    .dof-department img {
        width: 300px;
        height: 150px;
    }
    .dof-department-description {
        flex-direction: column;
        max-width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0;
    }
    .dof-bottom-logo-container img {
        width: 130px;
        height: 130px;
    }
}


/* Department of Felons Above This Line */

.contact-form-container {
    width: 500px;
    margin: 0 auto;
    text-align: center;
}
.contact-form-container h1 {
    margin-bottom: 1.75rem;
}
.contact-form-container .contact-form {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    width: 100%;
}
.contact-form input {
    width: 100%;
    color: #E8F4FF;
}
/* User Input Fields */
.user-input {
    position: relative;

}
.user-input input {
    padding: 12px 8px;
    font-size: 21px;
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;
}
.user-input label {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.2s;
    pointer-events: none;
}
.user-input input:valid ~ label,
.user-input input:focus ~ label {
    bottom: 50px;
}


.page-updated-footer {
    margin-top: 5rem;
    padding: 5px;
    font-weight: 300;
    font-variation-settings: 'wght' 300;
}
.update {
    padding-block: 2.5rem;
}
.update:not(:last-of-type) {
    border-bottom: 1px solid #eaf4fe;
}
.update:last-of-type {
    border-bottom: none !important;
}
.update-text {
    margin-top: 1rem;
}
/* Login and Account Page */
