.nav-item {
    font-weight: 250;
    font-size: 18px;
    display: block;
    padding: 5px 25px;
}
.main-nav-item {
    font-weight: 250;
    font-size: 18px;
    display: block;
    padding: 5px 25px;
}
@media (max-width: 767px) {
    .main-nav-item {
        font-weight: 250;
        font-size: 18px;
        display: block;
        padding: 10px 15px;
    }
    .nav-item {
        font-weight: 250;
        font-size: 18px;
        display: block;
        padding: 10px 15px;
        border-bottom: solid 2px #305497;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .nav-item {
        font-weight: 250;
        font-size: 15px;
        display: block;
        padding: 5px 15px;
    }
}

.small-hidden {
    position: fixed;
    visibility: hidden;
}
.custom-transition {
    transition: all 0.5s ease;
}
#mainSVG {
    width: 40%; /* Ensure the SVG scales to the full width of its container */
    height: auto; /* Allow the height to adjust proportionally to the width */
    display: block; /* Ensures the SVG is treated as a block element */
  }
  .features-list li {
    position: relative;
    padding-left: 26px;
  }
  .features-list li::before {
    content: '';
    width: 8px; /* Size of the dot */
    height: 8px; /* Size of the dot */
    background-color: #58A2D3;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
body {
    color: #253447;
}
.overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #6DACDB;
    opacity: 0.8; /* Adjust the opacity as needed */
    z-index: 1; /* Ensure the overlay is above the background but below the content */
    pointer-events: none; /* Allow clicks to pass through to the content */
}

/* Ensure the content is above the overlay */
.overlay > * {
    position: relative;
    z-index: 2;
}
.navy-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #003882;
    opacity: 0.8; /* Adjust the opacity as needed */
    z-index: 1; /* Ensure the overlay is above the background but below the content */
    pointer-events: none; /* Allow clicks to pass through to the content */
}

/* Ensure the content is above the overlay */
.navy-overlay > * {
    position: relative;
    z-index: 2;
}
.workload-sect {
    position: relative;
}
.workload-sect::before {
    content: "";
    width: 100%;
    height: 90%;
    position: absolute;
    top: -1rem;
    background-color: #ebebeb;
    transform: skewY(-8deg);
    z-index: -1;
    opacity: 0.8;
}
.end-section {
    position: relative;
    background-image: url(/assets/images/bg.png);
}
.end-section::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-image: url(/assets/images/background.svg);
    z-index: -1;
}
.end-section::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient(to right, #305497, #000205);
    z-index: -1;
    opacity: 0.8;
}
.benefits-sect::before {
    content: '';
    width: 100%;
    height: 90%;
    position: absolute;
    top: 25px;
    background-color: #F3F4F6;
    z-index: -1;
}
.why-section::before {
    content: '';
    width: 100%;
    height: 28rem;
    position: absolute;
    transform: skewY(-4deg);
    top: 3rem;
    background-color: #F3F4F6;
    z-index: -1;
}
@media (max-width: 768px) {
    .why-section::before {
        top: -3rem;
    }
}
.light-404-parent {
    background-image: url('/assets/images/background.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -5;
}
.light-404-parent::before {
    content: "";
    background-color: rgb(255, 255, 255);
    opacity: 0.95;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -2;
}
.light-404 {
    background-color: rgb(255, 255, 255);
    transform: rotate(45deg);
    aspect-ratio: 1;
    border-radius: 5rem;
}
.light-404-inside {
    transform: rotate(-45deg);
    z-index: 2;
}
.dark-404-parent {
    background-image: url('/assets/images/background.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -5;
}
.dark-404-parent::before {
    content: "";
    background: linear-gradient(to bottom, #305497, #9dc1ff);
    opacity: 0.8;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: -2;
}
.bottom-bg {
    background-image: url('/assets/images/background-1.svg');
    background-repeat: no-repeat;
    background-position: bottom center;

}