.sureshot-header {
    background-color: #0057FF;
    border-bottom: solid white 2px;
    position: fixed;
    z-index: 1000;
    width: 100%;
}

nav a {
    flex-grow: 0.1;
}

nav a img {
    height: 2.5rem;
    margin: 0.25rem;
}

.custom-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    margin: 0;
    padding: 0;
}

.custom-nav .nav-item {
    position: relative;
    text-align: center;
    flex: 1;
}

.custom-nav .nav-item:hover .nav-link {
    font-weight: 800;
}

.custom-nav .nav-link {
    width: 100%;
    font-family: 'Jakarta Sans', sans-serif;
}

.currently-visiting-nav {
    font-weight: 800;
}

.sureshot-footer {
    display: flex;
    flex-direction: column;
    background-color: black;
    font-family: 'Jakarta Sans', sans-serif;
}

.footer-container {
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
    align-self: center;
    gap: 1rem;
}

.footer-intro {
    display: flex;
    align-self: center;
    margin: 2rem;
    font-family: 'Graphik', sans-serif;
    font-weight: bold;
    color: white;
}

.footer-information p {
    font-style: italic;
    align-items: flex-end;
    margin: 0;
}

.footer-forms {
    display: flex;
    flex-direction: column;
    color: white;
}

.footer-forms form input, .footer-forms form textarea, .footer-forms form span {
    margin-bottom: 0.625rem;
    display: block;
}

.footer-forms .fields-disclaimer {
    font-style: italic;
    font-weight: lighter;
}

.footer-forms input, .footer-forms textarea {
    width: 32rem;
}

.footer-form-success {
    display: none;
    min-height: 2rem;
    color: white;
    font-family: 'Jakarta Sans', sans-serif;
    margin-top: 0.625rem;
    background-color: #32CD32;
    border: solid 0.125rem #228B22;
    border-radius: 0.313rem;
    animation: slide-in 0.5s forwards;
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.footer-form-success.fade-out {
    animation: fade-out 1s forwards;
}

.error-message {
    font-style: italic;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0px);
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
        transform: translateX(-50%);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .custom-nav {
        flex-direction: column;
    }

    .custom-nav, .nav-item + .nav-item {
        border-left: none;
    }

    .footer-intro {
        text-align: center;
        margin: 1rem;
    }

    .footer-container {
        flex-direction: column;
    }

    .footer-information {
        justify-content: center;
        text-align: center;
        order: 2;
    }

    .footer-forms {
        order: 1;
        align-items: center;
    }

    .footer-button-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 0.625rem;
    }

    .footer-form-success {
        max-width: 50%;
    }

    .footer-forms button {
        margin-bottom: 1rem;
    }

    .footer-forms input, .footer-forms textarea {
        width: 100%;
    }
}