.career {
  padding: 0px 20px;
  padding-top: 20px;
  margin-bottom: 5rem;
}
.career-title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.career-title h4 {
  font-size: 335px;
  font-weight: 400;
  font-family: var(--font-changa);
  color: var(--base-color);
  text-transform: uppercase;
  line-height: 50px;
  pointer-events: none;
}
.career-bg {
  position: relative;
}
.career-bg img {
  width: 400px;
  height: 220px;
  object-fit: cover;
}
.career-bg .label {
  position: absolute;
  top: 17%;
  width: 100%;
}
.letter {
  background-color: #fff;
  color: var(--base-color);
  font-family: var(--font-changa);
  font-size: 20px;
  text-transform: uppercase;
  line-height: 35px;
  text-align: center;
}
.career-para p {
  font-family: var(--font-roboto);
  font-size: 16px;
  font-weight: 500;
  color: var(--base-color);
  line-height: 30px;
  margin-top: 20px;
  width: 30%;
  margin: auto;
  text-align: center;
  line-height: 22px;
  margin-top: 10px;
}
@media only screen and (max-width: 1506px) {
    .career-title h4{
        font-size:285px;
    }
}
    @media only screen and (max-width: 991px) {
        .career {
            padding: 0px 15px;
            margin-bottom: 3rem;
        }

        .career-title {
            margin-top: 1.5rem;
        }

            .career-title h4 {
                font-size: 80px;
                line-height: 25px;
            }

        .career-bg {
            display: none;
        }

        .career-para p {
            width: 100%;
            margin-top: 35px;
        }

        .accordion {
            grid-template-columns: 1fr 2fr;
        }

            .accordion h4 {
                font-size: 16px;
            }

        .panel {
            grid-template-columns: 1fr;
        }

            .panel.show {
                display: flex;
                flex-direction: column;
                opacity: 1;
                padding: 20px;
                max-height: 100%;
            }

        .job-desc {
            order: -1;
            margin-bottom: 20px;
        }

        .job-location-info {
            width: 100%;
        }

            .job-location-info iframe {
                height: 300px;
            }

        .career-form input, .career-form select {
            width: 80%;
        }

        .listing-flex,
        .listing-red-title,
        .listing-title-third {
            padding: 0 15px;
        }
    }

    @media only screen and (max-width: 768px) {
        .career-title h4 {
            font-size: 60px;
        }

        .job-listing {
            padding: 0 15px;
            padding-top: 30px;
        }

        .accordion {
            grid-template-columns: 1fr;
            padding: 10px;
        }

            .accordion:after {
                right: 3%;
            }

        .panel.show {
            padding: 15px 0;
        }

        .job-desc {
            margin-bottom: 25px;
        }

        .description p {
            width: 100%;
        }

        .pointers ul {
            width: 100%;
        }

            .pointers ul li {
                margin-bottom: 10px;
            }

        .career-form input, .career-form select {
            width: 90%;
        }

        .info-title {
            font-size: 24px;
        }

        .info-para {
            font-size: 16px;
        }
    }

    @media only screen and (max-width: 480px) {
        .career{
            margin-top:6rem;
        }
        .career-title h4 {
            font-size: 80px;
        }

        .accordion {
            padding: 10px 5px;
        }

            .accordion h4 {
                font-size: 15px;
            }

        .panel.show {
            padding: 10px 0;
        }

        .job-title {
            font-size: 13px;
        }

        .description p {
            font-size: 13px;
        }

        .pointers ul li {
            font-size: 13px;
        }

        .career .info-para {
            font-size: 15px;
        }

        .career-form input, .career-form select {
            width: 100%;
        }

        .listing-title {
            font-size: 32px;
            line-height: 35px;
        }

        .listing-red {
            font-size: 30px;
            line-height: 33px;
        }
    }

    /* listing styling started  */
    .job-listing {
        padding: 0px 20px;
        padding-top: 50px;
        margin-bottom: 5rem;
    }

    .accordion {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 2fr;
        border-top: 1px solid var(--light-gray);
        padding: 15px 20px;
        font-family: var(--font-roboto);
        width: 100%;
    }

        .accordion p {
            color: var(--gray-color);
            font-size: 13px;
            font-weight: 500;
        }

        .accordion h4 {
            color: var(--black-color);
            font-size: 23px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .accordion:after {
            position: absolute;
            top: 50%;
            right: 1%;
            transform: translateY(-50%);
            content: "\2795";
            font-size: 13px;
            color: #777;
            float: right;
            margin-left: 5px;
        }

        .accordion.active:after {
            content: "\2796";
        }

    .panel {
        display: grid;
        grid-template-columns: 1fr 2fr;
        font-family: var(--font-roboto);
        color: var(--black-color);
        overflow: hidden;
        transition: 0.4s ease-in-out;
        opacity: 0;
        max-height: 0;
    }

        .panel.show {
            opacity: 1;
            padding: 20px;
            max-height: 850px;
        }

    .job-location-info {
        width: 80%;
    }

        .job-location-info iframe {
            width: 100%;
            height: 60%;
        }

        .job-location-info .address {
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            margin-top: 1rem;
        }

            .job-location-info .address i {
                margin-top: 0.2rem;
                color: var(--base-color);
                margin-right: 0.7rem;
            }

            .job-location-info .address p {
                font-weight: 500;
                font-size: 14px;
                color: var(--black-color);
                line-height: 1.3;
            }

    .description {
        margin-bottom: 1.5rem;
    }

    .job-title {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 0.7rem;
    }

    .description p {
        width: 75%;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.4;
    }

    .pointers ul {
        list-style: disc;
        margin-left: 1.5rem;
        width: 75%;
        margin-bottom: 1rem;
    }

        .pointers ul li {
            margin-bottom: 0.5rem;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
        }

    .contact-info {
        margin-top: 2rem;
    }

        .contact-info p {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
            color: var(--black-color);
        }

            .contact-info p i {
                color: var(--base-color);
                margin-right: 0.4rem;
            }

    @media only screen and (max-width: 991px) {
        .accordion h4 {
            font-size: 16px;
        }

        .panel {
            grid-template-columns: 1fr;
        }

            .panel.show {
                display: flex;
                flex-direction: column;
                opacity: 1;
                padding: 20px;
                max-height: 100%;
            }

        .job-desc {
            order: -1;
            margin-bottom: 20px;
        }

        .job-location-info {
            width: 100%;
        }

            .job-location-info iframe {
                height: 300px;
            }
    }

    .career-form {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 2rem;
    }

        .career-form input, .career-form select {
            outline: none;
            border: none;
            border-bottom: 1px solid var(--light-gray);
            padding: 13px 8px;
            padding-bottom: 4px;
            margin-bottom: 1rem;
            width: 30%;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1.2px;
            color: var(--gray-color);
        }

            .career-form input::placeholder, .career-form select::placeholder {
                color: var(--gray-color);
                font-weight: 500;
                font-size: 14px;
            }

    @media only screen and (max-width: 991px) {
        .career-form input, .career-form select {
            width: 100%;
        }
    }

    @media only screen and (max-width: 768px) {
        .panel.show {
            padding: 15px 0;
        }

        .job-desc {
            margin-bottom: 25px;
        }

        .description p {
            width: 100%;
        }

        .pointers ul {
            width: 100%;
        }

            .pointers ul li {
                margin-bottom: 10px;
            }
    }

