.single-careers-page {
    .wpcf7-response-output {
        display: none;
    }
}

section.careers-single-banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100vh;
    max-height: 650px;
    min-height: 350px;

    @media (min-width: 1200px) {
        padding: 100px 60px;
    }

    .careers-single-banner-contents {
        h1 {
            color: #fff;
        }
    }
}

section.careers-single-info {
    display: flex;
    flex-direction: column;
    width: 100%;

    @media (min-width: 1200px) {
        padding: 100px 60px;
    }

    .careers-single-info-contents {
        display: flex;
        width: 100%;
        max-width: 1530px;
        margin: auto;
        gap: 85px;

        @media (max-width: 991px) {
            gap: 0;
            flex-direction: column;
            max-width: 100%;
        }

        .job-description {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 692px;

            @media (max-width: 991px) {
                margin: auto;
            }

            h2 {
                color: #010d3f;
                margin-bottom: 20px;

                @media (max-width: 991px) {
                    text-align: center;
                }
            }

            h3 {
                color: #010d3f;
                margin-bottom: 20px;
            }

            p {
                margin-bottom: 50px;
                line-height: 25px;

                &.last-of-type {
                    margin-bottom: 0;
                }
            }

            ul {
                margin-bottom: 50px;

                &.last-of-type {
                    margin-bottom: 0;
                }

                li {
                    color: #212121;
                    font-family: "Open Sans", sans-serif;
                }
            }

            .job-status {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 20px;

                @media (max-width: 991px) {
                    justify-content: center;
                }

                @media (max-width: 575px) {
                    flex-direction: column;
                    gap: 0;
                }

                br {
                    @media (max-width: 575px) {
                        display: none;
                    }
                }

                span {
                    &.status {
                        color: #010d3f;
                        font-family: "Hind-Bold", sans-serif;
                        font-size: 20px;
                    }
                }

                img {
                    width: 100%;
                    max-width: 8px;
                    height: 100%;
                    max-height: 8px;
                }
            }

            .sub-details {
                display: flex;
                gap: 30px;
                margin-bottom: 20px;

                @media (max-width: 575px) {
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                }

                .sub-detail {
                    display: flex;
                    align-items: center;
                    gap: 15px;

                    img {
                        width: 100%;
                        max-width: fit-content;
                    }

                    p {
                        margin-bottom: 0;

                        &:first-of-type {
                            display: none; /*empty p*/
                        }
                    }

                    span {
                        color: #212121;
                        font-family: "Open Sans", sans-serif;
                    }
                }
            }
        }

        .job-contact-form {
            background: #010d3f;
            padding: 30px;
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 750px;

            @media (max-width: 991px) {
                margin: auto;
            }

            .careers-form {
                display: flex;
                flex-direction: column;
                width: 100%;

                h3 {
                    color: #fff;
                    margin-bottom: 20px;
                }

                p {
                    color: #fff;
                    margin-bottom: 30px;
                }

                .form-row {
                    display: flex;
                    width: 100%;
                    margin-bottom: 20px;

                    &.two-col {
                        gap: 20px;

                        @media (max-width: 767px) {
                            flex-direction: column;
                        }
                    }

                    &.last-of-type {
                        margin-bottom: 0;
                    }

                    &.upload {
                        flex-direction: column;
                        gap: 10px;

                        .upload-field {
                            display: flex;
                            position: relative;

                            .upload-icon {
                                display: flex;
                                width: 100%;
                                height: 100%;
                                position: absolute;
                                justify-content: flex-end;
                                align-items: center;
                                z-index: 1;
                                right: 0;
                                padding-right: 20px;
                                pointer-events: none;
                            }
                        }

                        label {
                            color: #fff;
                            font-family: "Lato", sans-serif;
                        }

                        input {
                            display: flex;
                            position: relative;
                            background: #fff;
                            &::file-selector-button {
                                /* Choose File Button */
                                display: none;
                            }
                        }
                    }

                    &.submit-row {
                        span {
                            display: none;
                        }

                        input {
                            margin: 0;
                        }
                    }

                    span {
                        width: 100%;
                    }

                    input {
                        padding: 10px 20px;
                        display: flex;
                        width: 100%;
                    }

                    textarea {
                        padding: 10px 20px;
                        width: 100%;
                    }
                }
            }
        }
    }
}
