@keyframes slideInFromLeft {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-slideInFromLeft {
    animation: slideInFromLeft 1s ease-out forwards;
}

.animate-slideInFromRight {
    animation: slideInFromRight 1s ease-out forwards;
}

#mobile-dropdown-menu.open {
    max-height: 10rem;
    opacity: 1;
    transform: translateY(0);
}

.headimg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(37, 37, 37, 0) 75%, #011d2f 100%);
    z-index: 1;
}

#content {
    background-image: linear-gradient(to bottom, #011d2f, #003a63);
    color: white;
}

/* Visually hidden utility */
.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  