input {
    border: 1px solid black;
    border-radius: 0.5em;
    padding: 0.25em 0.5em;
    color: var(--darker-gray);
}

.hero__content {
    margin: 0;
    padding: 5em 0 2em;
}

.before-header-text {
    color: #ED880E;
    text-align: center;
    font-size: 1.5rem;
    padding-bottom: 1em;
}

.header-text {
    text-transform: uppercase !important;
    color: #003951 !important;
}

.booking-holder {
    background-color: white;
    border-radius: 0.5em;
}

.presentation-video {
    padding: 0.5em 0;
    margin-bottom: 1em;
}

.questions-holder {
    font-size: 1.8rem;
    background-color: rgb(135, 206, 235, 0.15);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 0.5em;
}

.questions-holder div > div {
    align-items: center;
    gap: 0.5em;
}

.questions-holder div div > ul {
    display: flex;
    justify-content: center;
    gap: 2em;
    padding-top: 0.5em;
}

.questions-holder div div ul li > div {
    font-size: 2rem;
    padding: 0.5em 1.5em !important;
}

.questions-div {
    padding: 1em 0;
}

.global__btn {
    margin-top: 0.5em;
    padding: 0.5em;
}

.global__btn:hover {
    cursor: pointer;
}

.implementation-process-holder {
    width: 50%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 1em;
    padding-top: 3em;
    margin: auto;
}

.implementation-process div > div {
    display: flex;
    align-items: center;
    gap: 0.25em;
}

.dot {
    height: 0.5em;
    width: 0.5em;
    background-color: black;
    border-radius: 50%;
}

.yellow-black-stripe {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 5%;
    background: repeating-linear-gradient(
        45deg, /* Diagonal angle */
        #FFC133 0em,
        #FFC133 2em,
        #494949 2em,
        #494949 4em
    );
}

.yellow-black-stripe-left {
    left: 0;
    /* justify-content: end; */
}

.yellow-black-stripe-right {
    right: 0;
    /* justify-content: start; */
}

/* .yellow-black-stripe > img {
    width: 100% !important;
} */

.read-more:hover {
    color: #003951;
}

.book-a-meeting-holder {
    text-align: center;
}

.questionnaire-holder {
    display: flex;
    justify-content: center;
}

@media (max-width: 500px) {
    .before-header-text {
        font-size: 1.2rem;
    }

    .header-text {
        font-size: 2rem !important;
    }

    .company-name-holder {
        flex-flow: column;
    }

    .employee-count-holder {
        flex-flow: column;
    }

    .questions-div {
        display: flex;
        flex-flow: column;
        align-items: center;
    }

    .global__btn {
        margin-top: 1em;
        padding: 1em;
    }

    .implementation-process-holder {
        padding-top: 1em;
    }

    .implementation-process-holder > h5 {
        margin-bottom: 1em;
    }
}

@media (max-width: 768px) {
    .questionnaire-holder {
        display: block;
    }

    .hero__area {
        padding: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
}

@media (max-width: 991px) {
    .yellow-black-stripe {
        display: none;
    }

    .implementation-process-holder {
        width: 100%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* .yellow-black-stripe > img {
        width: 10%;
    } */
}

@media (min-width: 1200px) and (max-width: 1449px) {
}

@media (min-width: 1450px) {
}