.content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 2;
}

html {
    scroll-behavior: smooth;
  }

.position-relative {
    position: relative !important;
}

.container-wrapper {
    width: 90%;
    display: flex;
    justify-content: space-between;
    margin: auto;
    margin-top: 20px;
}

.mtb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.features-headings {
    font-size: 30px;
    font-weight: 800;
}

.features-subheading {
    margin-top: 15px;
}

.features-listing {
    display: flex;
    align-items: flex-start;
    margin: 10px;
}

.feature-thumb-image {
    width: 25px;
    height: 25px;
    margin-right: 0.5rem;
}


#canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    z-index: 3;
}


.content-container {
    margin-top: 100px;
}


body {
    padding-top: 100px;
}

.list-row {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;
    display: flex;
}

.content-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.career-box {
    border: 1px solid #999999;
    border-radius: 6px;
    width: 100%;
    padding: 30px;
}

.career-box:hover {
    border: 1px solid #5A4FCF;
}

.input-box {
    background-color: transparent;
    padding: 15px;
    border: 1px solid #999999;
    border-radius: 5px;
    font-size: 17px;
    color: #ffffff;
    width: 90%;
    transition: 0.5s ease;
}

.input-box:focus {
    border: 1px solid #5A4FCF;
}

.key-features-box {
    padding: 20px;
    border: 1px solid #999999;
    border-radius: 6px;
    transition: 0.5s ease-in-out;
}

.key-features-box:hover {
    border: 1px solid #5A4FCF;
}

/* FAQ CSS */
.faq-container {
    width: 600px;
    /* background-color: #fff; */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
    padding: 20px;
    border: none;
    /* border-bottom: 1px solid #e0e0e0; */
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 3px;
    padding-top: 3px;
}

.faq-answer {
    font-size: 16px;
    max-height: max-content !important;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.faq-answer.active {
    /* border-bottom: 1px solid #e0e0e0; */
}

.icon-container .arrow {
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.icon-container .arrow.active {
    transform: rotate(90deg);
}

.center-image {
    display: flex;
    align-items: center;
    justify-content: center;
  }

/* .fade-in-section {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.fade-in-section-reverse {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(+100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0px);
} */

.feature-border {
    border: 1px solid #999999;
}

.feature-border:hover {
    box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}


.loader {
    --c: no-repeat linear-gradient(#5A4FCF 0 0);
    background: var(--c),var(--c),var(--c), var(--c),var(--c),var(--c), var(--c),var(--c),var(--c);
    background-size: 16px 16px;
    animation: l32-1 1s infinite, l32-2 1s infinite;
}

@keyframes l32-1 {
    0%,100% {
        width: 45px;
        height: 45px
    }

    35%,65% {
        width: 65px;
        height: 65px
    }
}

@keyframes l32-2 {
    0%,40% {
        background-position: 0 0,0 50%, 0 100%,50% 100%,100% 100%,100% 50%,100% 0,50% 0, 50% 50%
    }

    60%,100% {
        background-position: 0 50%, 0 100%,50% 100%,100% 100%,100% 50%,100% 0,50% 0,0 0, 50% 50%
    }
}

  