section.why-new-job {
    text-align: center;
    padding-top: 91px;
}

section.why-new-job .c {
    position: relative;
}

section.why-new-job .shape {
    position: absolute;
    left: -470px;
    top: 283px;
    z-index: -99;
}

section.why-new-job .outer {
    border-radius: 35px;
    padding: 90px 62px;
    /*border: 1px solid hsl(209, 100%, 16%);*/
    /*box-shadow: 10px -11px 85px 0 rgba(0, 133, 255, 0.2);*/
    /*background: linear-gradient(126deg, #0053a0 0%, #0068c8 22.12%, #001427 100%), radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0) 0%, #000 100%);*/
    background: #f7f8fae3;
    backdrop-filter: blur(35px);
}

section.why-new-job h2 {
    margin-bottom: 55px;
}


section.why-new-job h2 span {
    color: var(--color2);
}

section.why-new-job .boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

section.why-new-job .boxes2 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

section.why-new-job .box {
    padding: 0 38px;
}

section.why-new-job .box img {
    height: 74px;
    object-fit: contain;
    width: 83px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    transform: scale(1);
}

section.why-new-job .box:hover img {
    transform: scale(1.1);
}

section.why-new-job .box h3 {
    display: block;
    font-size: 26px;
    font-weight: 400;
    line-height: 26px;
}

section.why-new-job .boxes2 .box h3 {
    display: block;
    padding-top: 50px;
    font-size: 26px;
    font-weight: 400;
    line-height: 26px;
}

section.why-new-job .box h4 {
    display: block;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
}

section.why-new-job .box h3 span {
    color: var(--color2);
    /*color: white;*/
    font-weight: 400;
}


@media all and (max-width: 1200px) {
    section.why-new-job {
        padding-top: 0;
    }

    section.why-new-job .outer {
        padding: 76px 62px;
    }

    section.why-new-job h2 {
        margin-bottom: 50px;
    }

    section.why-new-job .box {
        padding: 0 10px;;
    }

    section.why-new-job .box h3 {
        padding-top: 10px;
    }

    section.why-new-job .box h3 {
        font-size: 24px;
        line-height: 22px;
    }

}


@media all and (max-width: 992px) {

    section.why-new-job .boxes {
        grid-template-columns: 1fr;
        grid-gap: 35px;
    }

    section.why-new-job .boxes2 {
        grid-template-columns: 1fr;
        grid-gap: 35px;
    }

    section.why-new-job .shape {
        display: none;
    }

    section.why-new-job .outer {
        padding: 45px 20px;
    }

    section.why-new-job h2 {
        font-size: 40px;
        line-height: 44px;
    }

}